summaryrefslogtreecommitdiff
path: root/hw/scsi
diff options
context:
space:
mode:
authorChangpeng Liu <changpeng.liu@intel.com>2022-05-25 20:55:40 +0800
committerMichael S. Tsirkin <mst@redhat.com>2022-06-09 19:32:49 -0400
commit06cb5c82ebf5fd0f7b3c3de24d650e1259ca6ce4 (patch)
tree8a7830173df6b35a650033a462c3866022b1343d /hw/scsi
parentfb38d0c97dd665f7e0c1cb8176090500ce2275e1 (diff)
hw/vhost-user-scsi|blk: set `supports_config` flag correctly
Currently vhost-user-scsi driver doesn't allow to change the configuration space of virtio_scsi, while vhost-user-blk support that, so here we set the flag in vhost-user-blk driver and unset it in vhost-user-scsi. Signed-off-by: Changpeng Liu <changpeng.liu@intel.com> Message-Id: <20220525125540.50979-2-changpeng.liu@intel.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Changpeng Liu <changpeng.liu@intel.com> Signed-off-by: Changpeng Liu <changpeng.liu@intel.com>
Diffstat (limited to 'hw/scsi')
-rw-r--r--hw/scsi/vhost-user-scsi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/scsi/vhost-user-scsi.c b/hw/scsi/vhost-user-scsi.c
index 9be21d07ee..1b2f7eed98 100644
--- a/hw/scsi/vhost-user-scsi.c
+++ b/hw/scsi/vhost-user-scsi.c
@@ -121,7 +121,6 @@ static void vhost_user_scsi_realize(DeviceState *dev, Error **errp)
vsc->dev.backend_features = 0;
vqs = vsc->dev.vqs;
- s->vhost_user.supports_config = true;
ret = vhost_dev_init(&vsc->dev, &s->vhost_user,
VHOST_BACKEND_TYPE_USER, 0, errp);
if (ret < 0) {