vDPA/ifcvf: Fix return value check for vdpa_alloc_device()
authorXie Yongji <xieyongji@bytedance.com>
Thu, 15 Jul 2021 08:00:25 +0000 (16:00 +0800)
committerSasha Levin <sashal@kernel.org>
Thu, 26 Aug 2021 12:35:05 +0000 (08:35 -0400)
commit29236481a883fcc3435b4a49d763a7bd544cedc2
treecf1e0d49d1d0eb4eed7b9350526517365110f8dd
parent080d65ba644faeaa672906c71fef783ce47ef044
vDPA/ifcvf: Fix return value check for vdpa_alloc_device()

[ Upstream commit 1057afa0121db8bd3ca4718c8e0ca12388ab7759 ]

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: 5a2414bc454e ("virtio: Intel IFC VF driver for VDPA")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
Link: https://lore.kernel.org/r/20210715080026.242-3-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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/vdpa/ifcvf/ifcvf_main.c