From: "Eugenio Pérez" <eperezma@redhat.com>
To: Maxime Coquelin <maxime.coquelin@redhat.com>
Cc: jasowang@redhat.com, david.marchand@redhat.com, mst@redhat.com,
dev@dpdk.org, Yongji Xie <xieyongji@bytedance.com>,
chenbox@nvidia.com
Subject: [RFC 07/10] vhost: add net status feature to VDUSE
Date: Wed, 11 Feb 2026 17:14:54 +0100 [thread overview]
Message-ID: <20260211161457.2703686-8-eperezma@redhat.com> (raw)
In-Reply-To: <20260211161457.2703686-1-eperezma@redhat.com>
From: Maxime Coquelin <maxime.coquelin@redhat.com>
Enable the VIRTIO_NET_F_STATUS feature for VDUSE devices.
This allows the device to report link status (e.g.,
VIRTIO_NET_S_LINK_UP). It also allows the device to signal the driver
that it needs to send gratuitous ARP with VIRTIO_NET_S_ANNOUNCE.
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
---
lib/vhost/vduse.c | 32 ++++++++++++++++----------------
lib/vhost/vduse.h | 3 ++-
2 files changed, 18 insertions(+), 17 deletions(-)
diff --git a/lib/vhost/vduse.c b/lib/vhost/vduse.c
index 80020d3d5413..04f397bac8b5 100644
--- a/lib/vhost/vduse.c
+++ b/lib/vhost/vduse.c
@@ -460,24 +460,23 @@ vduse_events_handler(int fd, void *arg, int *close __rte_unused)
resp.result = VDUSE_REQ_RESULT_OK;
break;
case VDUSE_UPDATE_IOTLB:
- {
- uint64_t start, last;
- uint32_t asid;
-
- if (dev->vduse_api_ver < 1) {
- start = req.iova.start;
- last = req.iova.last;
- asid = 0;
- } else {
- start = req.iova_v2.start;
- last = req.iova_v2.last;
- asid = req.iova_v2.asid;
- }
+ uint64_t start, last;
+ uint32_t asid;
- VHOST_CONFIG_LOG(dev->ifname, INFO, "\t(ASID %d) IOVA range: %" PRIx64 " - %" PRIx64,
- asid, start, last);
- vhost_user_iotlb_cache_remove(dev, asid, start, last - start + 1);
+ if (dev->vduse_api_ver < 1) {
+ start = req.iova.start;
+ last = req.iova.last;
+ asid = 0;
+ } else {
+ start = req.iova_v2.start;
+ last = req.iova_v2.last;
+ asid = req.iova_v2.asid;
}
+
+ VHOST_CONFIG_LOG(dev->ifname, INFO, "\t(ASID %d) IOVA range: %" PRIx64 " - %" PRIx64,
+ asid, start, last);
+ vhost_user_iotlb_cache_remove(dev, asid, start, last - start + 1);
+
resp.result = VDUSE_REQ_RESULT_OK;
break;
case VDUSE_SET_VQ_GROUP_ASID:
@@ -801,6 +800,7 @@ vduse_device_create(const char *path, bool compliant_ol_flags, bool extbuf, bool
goto out_ctrl_close;
}
+ vnet_config.status = VIRTIO_NET_S_LINK_UP;
vnet_config.max_virtqueue_pairs = max_queue_pairs;
memset(dev_config, 0, sizeof(struct vduse_dev_config));
diff --git a/lib/vhost/vduse.h b/lib/vhost/vduse.h
index b2515bb9df76..d697f85be5cc 100644
--- a/lib/vhost/vduse.h
+++ b/lib/vhost/vduse.h
@@ -7,7 +7,8 @@
#include "vhost.h"
-#define VDUSE_NET_SUPPORTED_FEATURES VIRTIO_NET_SUPPORTED_FEATURES
+#define VDUSE_NET_SUPPORTED_FEATURES (VIRTIO_NET_SUPPORTED_FEATURES | \
+ (1ULL << VIRTIO_NET_F_STATUS))
int vduse_device_create(const char *path, bool compliant_ol_flags, bool extbuf, bool linearbuf);
int vduse_device_destroy(const char *path);
--
2.53.0
next prev parent reply other threads:[~2026-02-11 16:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-11 16:14 [RFC 00/10] Add vduse live migration features Eugenio Pérez
2026-02-11 16:14 ` [RFC 01/10] uapi: align VDUSE header for ASID Eugenio Pérez
2026-02-11 16:14 ` [RFC 02/10] vhost: introduce ASID support Eugenio Pérez
2026-02-11 16:14 ` [RFC 03/10] vhost: add VDUSE API version negotiation Eugenio Pérez
2026-02-11 16:14 ` [RFC 04/10] vhost: add virtqueues groups support to VDUSE Eugenio Pérez
2026-02-11 16:14 ` [RFC 05/10] vhost: add ASID support to VDUSE IOTLB operations Eugenio Pérez
2026-02-11 16:14 ` [RFC 06/10] vhost: claim VDUSE support for API version 1 Eugenio Pérez
2026-02-11 16:14 ` Eugenio Pérez [this message]
2026-02-11 16:14 ` [RFC 08/10] uapi: Align vduse.h for enable and suspend VDUSE messages Eugenio Pérez
2026-02-11 16:14 ` [RFC 09/10] vhost: Support VDUSE QUEUE_READY feature Eugenio Pérez
2026-02-11 16:14 ` [RFC 10/10] vhost: Support vduse suspend feature Eugenio Pérez
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260211161457.2703686-8-eperezma@redhat.com \
--to=eperezma@redhat.com \
--cc=chenbox@nvidia.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=jasowang@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=mst@redhat.com \
--cc=xieyongji@bytedance.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox