vdpa: return VHOST_F_LOG_ALL in vhost-vdpa devices

vhost-vdpa devices can return this feature now that blockers have been
set in case some features are not met.

Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Message-Id: <20230303172445.1089785-15-eperezma@redhat.com>
Tested-by: Lei Yang <leiyang@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Eugenio Pérez 2023-03-03 18:24:45 +01:00 committed by Michael S. Tsirkin
parent 609ab4c3ed
commit ab7337e3b2

View File

@ -1294,10 +1294,9 @@ static int vhost_vdpa_set_vring_call(struct vhost_dev *dev,
static int vhost_vdpa_get_features(struct vhost_dev *dev, static int vhost_vdpa_get_features(struct vhost_dev *dev,
uint64_t *features) uint64_t *features)
{ {
struct vhost_vdpa *v = dev->opaque;
int ret = vhost_vdpa_get_dev_features(dev, features); int ret = vhost_vdpa_get_dev_features(dev, features);
if (ret == 0 && v->shadow_vqs_enabled) { if (ret == 0) {
/* Add SVQ logging capabilities */ /* Add SVQ logging capabilities */
*features |= BIT_ULL(VHOST_F_LOG_ALL); *features |= BIT_ULL(VHOST_F_LOG_ALL);
} }