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

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