From: Jason Wang Date: Fri, 3 Sep 2021 09:10:12 +0000 (+0800) Subject: vhost-vdpa: correctly return err in vhost_vdpa_set_backend_cap() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2a83e97ee89d17ba843b6dbabdd139a508e122c5;p=qemu.git vhost-vdpa: correctly return err in vhost_vdpa_set_backend_cap() We should return error code instead of zero, otherwise there's no way for the caller to detect the failure. Signed-off-by: Jason Wang Message-Id: <20210903091031.47303-3-jasowang@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c index ca1227e5dc..7633ea66d1 100644 --- a/hw/virtio/vhost-vdpa.c +++ b/hw/virtio/vhost-vdpa.c @@ -443,13 +443,13 @@ static int vhost_vdpa_set_backend_cap(struct vhost_dev *dev) int r; if (vhost_vdpa_call(dev, VHOST_GET_BACKEND_FEATURES, &features)) { - return 0; + return -EFAULT; } features &= f; r = vhost_vdpa_call(dev, VHOST_SET_BACKEND_FEATURES, &features); if (r) { - return 0; + return -EFAULT; } dev->backend_cap = features;