From 205a00d9fabb036168fce936731458d20d5f029f Mon Sep 17 00:00:00 2001 From: Pawel Wodkowski Date: Thu, 12 Oct 2017 21:29:32 +0200 Subject: [PATCH] vhost: disable indirect descriptors Some problems with indirect descriptors shown. Disable it for now to have time to investigate it. Change-Id: I8c6cfff94dc2159ab01f72986a8ae7d42c353e8b Signed-off-by: Pawel Wodkowski Reviewed-on: https://review.gerrithub.io/382301 Reviewed-by: Dariusz Stojaczyk Tested-by: SPDK Automated Test System Reviewed-by: Daniel Verkamp Reviewed-by: Jim Harris --- lib/vhost/vhost_internal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/vhost/vhost_internal.h b/lib/vhost/vhost_internal.h index 74e64e90a..3e198082d 100644 --- a/lib/vhost/vhost_internal.h +++ b/lib/vhost/vhost_internal.h @@ -74,7 +74,8 @@ (1ULL << VIRTIO_RING_F_INDIRECT_DESC)) #define SPDK_VHOST_DISABLED_FEATURES ((1ULL << VHOST_F_LOG_ALL) | \ - (1ULL << VIRTIO_RING_F_EVENT_IDX)) + (1ULL << VIRTIO_RING_F_EVENT_IDX) | \ + (1ULL << VIRTIO_RING_F_INDIRECT_DESC)) enum spdk_vhost_dev_type { SPDK_VHOST_DEV_T_SCSI,