Commit e7f0141a authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm/ttm: drop ttm_buffer_object->resv

All users moved to ttm_buffer_object->base.resv
Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20190805140119.7337-18-kraxel@redhat.com
parent 7a4db296
...@@ -1332,11 +1332,9 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev, ...@@ -1332,11 +1332,9 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
bo->acc_size = acc_size; bo->acc_size = acc_size;
bo->sg = sg; bo->sg = sg;
if (resv) { if (resv) {
bo->resv = resv;
bo->base.resv = resv; bo->base.resv = resv;
reservation_object_assert_held(bo->base.resv); reservation_object_assert_held(bo->base.resv);
} else { } else {
bo->resv = &bo->base._resv;
bo->base.resv = &bo->base._resv; bo->base.resv = &bo->base._resv;
} }
if (!ttm_bo_uses_embedded_gem_object(bo)) { if (!ttm_bo_uses_embedded_gem_object(bo)) {
......
...@@ -230,7 +230,6 @@ struct ttm_buffer_object { ...@@ -230,7 +230,6 @@ struct ttm_buffer_object {
struct sg_table *sg; struct sg_table *sg;
struct reservation_object *resv;
struct mutex wu_mutex; struct mutex wu_mutex;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment