Patch "drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init" has been added to the 5.19-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init

to the 5.19-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-virtio-fix-null-vs-is_err-checking-in-virtio_gpu.patch
and it can be found in the queue-5.19 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 67f200a82eb03bb3ea66e285ece5eb0ffce9d3f4
Author: Miaoqian Lin <linmq006@xxxxxxxxx>
Date:   Thu Jun 2 14:42:22 2022 +0400

    drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init
    
    [ Upstream commit c24968734abfed81c8f93dc5f44a7b7a9aecadfa ]
    
    Since drm_prime_pages_to_sg() function return error pointers.
    The drm_gem_shmem_get_sg_table() function returns error pointers too.
    Using IS_ERR() to check the return value to fix this.
    
    Fixes: 2f2aa13724d5 ("drm/virtio: move virtio_gpu_mem_entry initialization to new function")
    Signed-off-by: Miaoqian Lin <linmq006@xxxxxxxxx>
    Link: http://patchwork.freedesktop.org/patch/msgid/20220602104223.54527-1-linmq006@xxxxxxxxx
    Signed-off-by: Gerd Hoffmann <kraxel@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/gpu/drm/virtio/virtgpu_object.c b/drivers/gpu/drm/virtio/virtgpu_object.c
index f293e6ad52da..1cc8f3fc8e4b 100644
--- a/drivers/gpu/drm/virtio/virtgpu_object.c
+++ b/drivers/gpu/drm/virtio/virtgpu_object.c
@@ -168,9 +168,9 @@ static int virtio_gpu_object_shmem_init(struct virtio_gpu_device *vgdev,
 	 * since virtio_gpu doesn't support dma-buf import from other devices.
 	 */
 	shmem->pages = drm_gem_shmem_get_sg_table(&bo->base);
-	if (!shmem->pages) {
+	if (IS_ERR(shmem->pages)) {
 		drm_gem_shmem_unpin(&bo->base);
-		return -EINVAL;
+		return PTR_ERR(shmem->pages);
 	}
 
 	if (use_dma_api) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux