Blame SOURCES/kvm-vhost-vdpa-backend-feature-should-set-only-once.patch

719b13
From 975046c44909eef91e8b3cfafe1c0dd55151937b Mon Sep 17 00:00:00 2001
719b13
From: Si-Wei Liu <si-wei.liu@oracle.com>
719b13
Date: Fri, 6 May 2022 19:28:16 -0700
719b13
Subject: [PATCH 5/7] vhost-vdpa: backend feature should set only once
719b13
MIME-Version: 1.0
719b13
Content-Type: text/plain; charset=UTF-8
719b13
Content-Transfer-Encoding: 8bit
719b13
719b13
RH-Author: Cindy Lu <lulu@redhat.com>
719b13
RH-MergeRequest: 203: vdpa :sync the Multiqueue fixes for vhost-vDPA
719b13
RH-Commit: [5/7] 8db716cb0cec794861c7a63c0b33ab7f8367232d
719b13
RH-Bugzilla: 2095794
719b13
RH-Acked-by: MST <mst@redhat.com>
719b13
RH-Acked-by: Eugenio Pérez <eperezma@redhat.com>
719b13
RH-Acked-by: Jason Wang <jasowang@redhat.com>
719b13
719b13
The vhost_vdpa_one_time_request() branch in
719b13
vhost_vdpa_set_backend_cap() incorrectly sends down
719b13
ioctls on vhost_dev with non-zero index. This may
719b13
end up with multiple VHOST_SET_BACKEND_FEATURES
719b13
ioctl calls sent down on the vhost-vdpa fd that is
719b13
shared between all these vhost_dev's.
719b13
719b13
To fix it, send down ioctl only once via the first
719b13
vhost_dev with index 0. Toggle the polarity of the
719b13
vhost_vdpa_one_time_request() test should do the
719b13
trick.
719b13
719b13
Fixes: 4d191cfdc7de ("vhost-vdpa: classify one time request")
719b13
Signed-off-by: Si-Wei Liu <si-wei.liu@oracle.com>
719b13
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
719b13
Acked-by: Jason Wang <jasowang@redhat.com>
719b13
Acked-by: Eugenio Pérez <eperezma@redhat.com>
719b13
Message-Id: <1651890498-24478-6-git-send-email-si-wei.liu@oracle.com>
719b13
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
719b13
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
719b13
(cherry picked from commit 6aee7e4233f6467f69531fcd352adff028f3f5ea)
719b13
Signed-off-by: Cindy Lu <lulu@redhat.com>
719b13
---
719b13
 hw/virtio/vhost-vdpa.c | 2 +-
719b13
 1 file changed, 1 insertion(+), 1 deletion(-)
719b13
719b13
diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
719b13
index 78da48a333..a9be24776a 100644
719b13
--- a/hw/virtio/vhost-vdpa.c
719b13
+++ b/hw/virtio/vhost-vdpa.c
719b13
@@ -525,7 +525,7 @@ static int vhost_vdpa_set_backend_cap(struct vhost_dev *dev)
719b13
 
719b13
     features &= f;
719b13
 
719b13
-    if (vhost_vdpa_one_time_request(dev)) {
719b13
+    if (!vhost_vdpa_one_time_request(dev)) {
719b13
         r = vhost_vdpa_call(dev, VHOST_SET_BACKEND_FEATURES, &features);
719b13
         if (r) {
719b13
             return -EFAULT;
719b13
-- 
719b13
2.31.1
719b13