]> git.baikalelectronics.ru Git - kernel.git/commit
vp_vdpa: Fix return value check for vdpa_alloc_device()
authorXie Yongji <xieyongji@bytedance.com>
Thu, 15 Jul 2021 08:00:24 +0000 (16:00 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 11 Aug 2021 10:44:23 +0000 (06:44 -0400)
commit9632e78e82648aa98340df78eab9106f63da151e
tree26102263fe65d82d346735a925b6664cea1dea32
parent2b847f21145d84e2e1dde99d3e2c00a5468f02e4
vp_vdpa: Fix return value check for vdpa_alloc_device()

The vdpa_alloc_device() returns an error pointer upon
failure, not NULL. To handle the failure correctly, this
replaces NULL check with IS_ERR() check and propagate the
error upwards.

Fixes: 64b9f64f80a6 ("vdpa: introduce virtio pci driver")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
Link: https://lore.kernel.org/r/20210715080026.242-2-xieyongji@bytedance.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
drivers/vdpa/virtio_pci/vp_vdpa.c