From: Eugenio Pérez Date: Fri, 15 Sep 2023 17:08:35 +0000 (+0200) Subject: vdpa net: stop probing if cannot set features X-Git-Tag: v8.1.2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6d9dd102dc57e9043265f9d44aec02e3774a86a;p=thirdparty%2Fqemu.git vdpa net: stop probing if cannot set features Otherwise it continues the CVQ isolation probing. 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-3-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 f1085882d028e5a1b227443cd6e96bbb63d66f43) Signed-off-by: Michael Tokarev --- diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c index 1c79e331703..cda6099cebd 100644 --- a/net/vhost-vdpa.c +++ b/net/vhost-vdpa.c @@ -1291,6 +1291,7 @@ static int vhost_vdpa_probe_cvq_isolation(int device_fd, uint64_t features, r = ioctl(device_fd, VHOST_SET_FEATURES, &features); if (unlikely(r)) { error_setg_errno(errp, errno, "Cannot set features"); + goto out; } r = ioctl(device_fd, VHOST_VDPA_SET_STATUS, &status);