mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
drm/ttm: drop ttm_buffer_object->resv
All users moved to ttm_buffer_object->base.resv Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Christian König <christian.koenig@amd.com> Link: http://patchwork.freedesktop.org/patch/msgid/20190805140119.7337-18-kraxel@redhat.com
This commit is contained in:
parent
7a4db29660
commit
e7f0141a21
@ -1332,11 +1332,9 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
|
||||
bo->acc_size = acc_size;
|
||||
bo->sg = sg;
|
||||
if (resv) {
|
||||
bo->resv = resv;
|
||||
bo->base.resv = resv;
|
||||
reservation_object_assert_held(bo->base.resv);
|
||||
} else {
|
||||
bo->resv = &bo->base._resv;
|
||||
bo->base.resv = &bo->base._resv;
|
||||
}
|
||||
if (!ttm_bo_uses_embedded_gem_object(bo)) {
|
||||
|
@ -230,7 +230,6 @@ struct ttm_buffer_object {
|
||||
|
||||
struct sg_table *sg;
|
||||
|
||||
struct reservation_object *resv;
|
||||
struct mutex wu_mutex;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user