[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 15/15] vhost: vhost-kernel: enable vq reset feature
From: |
Kangjie Xu |
Subject: |
[PATCH v3 15/15] vhost: vhost-kernel: enable vq reset feature |
Date: |
Thu, 25 Aug 2022 16:08:58 +0800 |
Add virtqueue reset feature for vhost-kernel.
Signed-off-by: Kangjie Xu <kangjie.xu@linux.alibaba.com>
Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
---
hw/net/vhost_net.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c
index 0716f6cd96..74c5147d6e 100644
--- a/hw/net/vhost_net.c
+++ b/hw/net/vhost_net.c
@@ -46,6 +46,7 @@ static const int kernel_feature_bits[] = {
VIRTIO_NET_F_MTU,
VIRTIO_F_IOMMU_PLATFORM,
VIRTIO_F_RING_PACKED,
+ VIRTIO_F_RING_RESET,
VIRTIO_NET_F_HASH_REPORT,
VHOST_INVALID_FEATURE_BIT
};
--
2.32.0
- [PATCH v3 03/15] virtio: introduce virtio_queue_reset(), (continued)
- [PATCH v3 03/15] virtio: introduce virtio_queue_reset(), Kangjie Xu, 2022/08/25
- [PATCH v3 09/15] vhost: expose vhost_virtqueue_start(), Kangjie Xu, 2022/08/25
- [PATCH v3 04/15] virtio: introduce virtio_queue_enable(), Kangjie Xu, 2022/08/25
- [PATCH v3 08/15] vhost: extract the logic of unmapping the vrings and desc, Kangjie Xu, 2022/08/25
- [PATCH v3 07/15] virtio-pci: support queue enable, Kangjie Xu, 2022/08/25
- [PATCH v3 14/15] virtio-net: support queue_enable, Kangjie Xu, 2022/08/25
- [PATCH v3 06/15] virtio-pci: support queue reset, Kangjie Xu, 2022/08/25
- [PATCH v3 02/15] virtio: introduce __virtio_queue_reset(), Kangjie Xu, 2022/08/25
- [PATCH v3 11/15] vhost-net: vhost-kernel: introduce vhost_net_virtqueue_restart(), Kangjie Xu, 2022/08/25
- [PATCH v3 05/15] virtio: core: vq reset feature negotation support, Kangjie Xu, 2022/08/25
- [PATCH v3 15/15] vhost: vhost-kernel: enable vq reset feature,
Kangjie Xu <=