mirror of https://gitee.com/openkylin/linux.git
drm/virtio: switch driver from bo->resv to bo->base.resv
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Christian König <christian.koenig@amd.com> Link: http://patchwork.freedesktop.org/patch/msgid/20190805140119.7337-17-kraxel@redhat.com
This commit is contained in:
parent
5c69f132a2
commit
7a4db29660
|
@ -396,7 +396,7 @@ static int virtio_gpu_transfer_from_host_ioctl(struct drm_device *dev,
|
||||||
(vgdev, qobj->hw_res_handle,
|
(vgdev, qobj->hw_res_handle,
|
||||||
vfpriv->ctx_id, offset, args->level,
|
vfpriv->ctx_id, offset, args->level,
|
||||||
&box, fence);
|
&box, fence);
|
||||||
reservation_object_add_excl_fence(qobj->tbo.resv,
|
reservation_object_add_excl_fence(qobj->tbo.base.resv,
|
||||||
&fence->f);
|
&fence->f);
|
||||||
|
|
||||||
dma_fence_put(&fence->f);
|
dma_fence_put(&fence->f);
|
||||||
|
@ -450,7 +450,7 @@ static int virtio_gpu_transfer_to_host_ioctl(struct drm_device *dev, void *data,
|
||||||
(vgdev, qobj,
|
(vgdev, qobj,
|
||||||
vfpriv ? vfpriv->ctx_id : 0, offset,
|
vfpriv ? vfpriv->ctx_id : 0, offset,
|
||||||
args->level, &box, fence);
|
args->level, &box, fence);
|
||||||
reservation_object_add_excl_fence(qobj->tbo.resv,
|
reservation_object_add_excl_fence(qobj->tbo.base.resv,
|
||||||
&fence->f);
|
&fence->f);
|
||||||
dma_fence_put(&fence->f);
|
dma_fence_put(&fence->f);
|
||||||
}
|
}
|
||||||
|
|
|
@ -212,7 +212,7 @@ static void virtio_gpu_cursor_plane_update(struct drm_plane *plane,
|
||||||
0, 0, vgfb->fence);
|
0, 0, vgfb->fence);
|
||||||
ret = virtio_gpu_object_reserve(bo, false);
|
ret = virtio_gpu_object_reserve(bo, false);
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
reservation_object_add_excl_fence(bo->tbo.resv,
|
reservation_object_add_excl_fence(bo->tbo.base.resv,
|
||||||
&vgfb->fence->f);
|
&vgfb->fence->f);
|
||||||
dma_fence_put(&vgfb->fence->f);
|
dma_fence_put(&vgfb->fence->f);
|
||||||
vgfb->fence = NULL;
|
vgfb->fence = NULL;
|
||||||
|
|
Loading…
Reference in New Issue