From: Eugenio Pérez Date: Fri, 15 Sep 2023 17:08:34 +0000 (+0200) Subject: vdpa net: fix error message setting virtio status X-Git-Tag: v8.1.2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=197cc86a1241fcbb1b9e670ab2f94a5fe300d24c;p=thirdparty%2Fqemu.git vdpa net: fix error message setting virtio status It incorrectly prints "error setting features", probably because a copy paste miss. Fixes: 152128d646 ("vdpa: move CVQ isolation check to net_init_vhost_vdpa") Reported-by: Peter Maydell Signed-off-by: Eugenio Pérez Message-Id: <20230915170836.3078172-2-eperezma@redhat.com> Tested-by: Lei Yang Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Reviewed-by: Philippe Mathieu-Daudé (cherry picked from commit cbc9ae87b5f6f81c52a249e0b64100d5011fca53) Signed-off-by: Michael Tokarev --- diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index 977faeb44b3..1c79e331703 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -1295,7 +1295,7 @@ static int vhost_vdpa_probe_cvq_isolation(int device_fd, uint64_t features, r = ioctl(device_fd, VHOST_VDPA_SET_STATUS, &status); if (unlikely(r)) { - error_setg_errno(errp, -r, "Cannot set device features"); + error_setg_errno(errp, -r, "Cannot set status"); goto out; }