Commit 2e3c9ec4 authored by Gerd Hoffmann's avatar Gerd Hoffmann

drm/ttm: set both resv and base.resv pointers

Initialize both ttm_buffer_object->resv and ttm_buffer_object->base.resv
pointers.  This allows to move users from the former to the latter.  When
all users are moved we can drop ttm_buffer_object->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-10-kraxel@redhat.com
parent b96f3e7c
...@@ -1333,9 +1333,11 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev, ...@@ -1333,9 +1333,11 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
bo->sg = sg; bo->sg = sg;
if (resv) { if (resv) {
bo->resv = resv; bo->resv = resv;
bo->base.resv = resv;
reservation_object_assert_held(bo->resv); reservation_object_assert_held(bo->resv);
} else { } else {
bo->resv = &bo->base._resv; bo->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)) {
/* /*
......
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