|
|
a83cc2 |
From 28ab6c187224be79fe02fb1b5037d1c0b300a778 Mon Sep 17 00:00:00 2001
|
|
|
a83cc2 |
From: Kevin Wolf <kwolf@redhat.com>
|
|
|
a83cc2 |
Date: Mon, 12 Jul 2021 10:22:29 -0400
|
|
|
a83cc2 |
Subject: [PATCH 09/43] vhost-user-blk: Get more feature flags from vhost
|
|
|
a83cc2 |
device
|
|
|
a83cc2 |
|
|
|
a83cc2 |
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
RH-Bugzilla: 1957194
|
|
|
a83cc2 |
|
|
|
a83cc2 |
VIRTIO_F_RING_PACKED and VIRTIO_F_IOMMU_PLATFORM need to be supported by
|
|
|
a83cc2 |
the vhost device, otherwise advertising it to the guest doesn't result
|
|
|
a83cc2 |
in a working configuration. They are currently not supported by the
|
|
|
a83cc2 |
vhost-user-blk export in QEMU.
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1935020
|
|
|
a83cc2 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
a83cc2 |
Acked-by: Raphael Norwitz <raphael.norwitz@nutanix.com>
|
|
|
a83cc2 |
Message-Id: <20210429171316.162022-5-kwolf@redhat.com>
|
|
|
a83cc2 |
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
a83cc2 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
a83cc2 |
(cherry picked from commit 7556a320c98812ca6648b707393f4513387faf73)
|
|
|
a83cc2 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
a83cc2 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
a83cc2 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
---
|
|
|
a83cc2 |
hw/block/vhost-user-blk.c | 2 ++
|
|
|
a83cc2 |
1 file changed, 2 insertions(+)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c
|
|
|
a83cc2 |
index f3a45af97c..c7e502f4c7 100644
|
|
|
a83cc2 |
--- a/hw/block/vhost-user-blk.c
|
|
|
a83cc2 |
+++ b/hw/block/vhost-user-blk.c
|
|
|
a83cc2 |
@@ -47,6 +47,8 @@ static const int user_feature_bits[] = {
|
|
|
a83cc2 |
VIRTIO_RING_F_INDIRECT_DESC,
|
|
|
a83cc2 |
VIRTIO_RING_F_EVENT_IDX,
|
|
|
a83cc2 |
VIRTIO_F_NOTIFY_ON_EMPTY,
|
|
|
a83cc2 |
+ VIRTIO_F_RING_PACKED,
|
|
|
a83cc2 |
+ VIRTIO_F_IOMMU_PLATFORM,
|
|
|
a83cc2 |
VHOST_INVALID_FEATURE_BIT
|
|
|
a83cc2 |
};
|
|
|
a83cc2 |
|
|
|
a83cc2 |
--
|
|
|
a83cc2 |
2.27.0
|
|
|
a83cc2 |
|