* [PATCH v3 0/2] vhost/vsock: fix device IOTLB feature lifecycle
@ 2026-08-10 13:40 Jia Jia
2026-08-10 13:40 ` [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared Jia Jia
2026-08-10 13:40 ` [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates Jia Jia
0 siblings, 2 replies; 5+ messages in thread
From: Jia Jia @ 2026-08-10 13:40 UTC (permalink / raw)
To: stefanha, sgarzare, mst, jasowangio
Cc: eperezma, kvm, virtualization, netdev, linux-kernel
vhost-vsock leaves the device IOTLB attached when userspace clears
VIRTIO_F_ACCESS_PLATFORM. It also replaces an existing IOTLB with an
empty one whenever a later feature update keeps ACCESS_PLATFORM enabled.
Patch 1 detaches and frees the old IOTLB when ACCESS_PLATFORM is
cleared. Each virtqueue drops its IOTLB pointer and metadata cache while
holding its own mutex. The old IOTLB remains alive until all virtqueues
have dropped their references. Queued IOTLB miss messages are then
cleared and blocked readers are woken.
Patch 2 keeps the current IOTLB when ACCESS_PLATFORM remains enabled,
so a runtime logging update does not discard valid translations.
Changes since v2:
- update each virtqueue under its own mutex instead of locking all
virtqueues at once, as suggested by Michael S. Tsirkin
- keep the old IOTLB alive until all per-virtqueue references are gone
- clarify that the teardown drops queued IOTLB miss messages
Changes since v1:
- discard the existing IOTLB instead of returning -EBUSY
- split IOTLB teardown and preservation into separate patches
- clear queued IOTLB miss messages and wake blocked readers
Jia Jia (2):
vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared
vhost/vsock: keep IOTLB across feature updates
drivers/vhost/vsock.c | 42 ++++++++++++++++++++++++++++++++++++------
1 file changed, 36 insertions(+), 6 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared
2026-08-10 13:40 [PATCH v3 0/2] vhost/vsock: fix device IOTLB feature lifecycle Jia Jia
@ 2026-08-10 13:40 ` Jia Jia
2026-08-13 9:39 ` Stefano Garzarella
2026-08-10 13:40 ` [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates Jia Jia
1 sibling, 1 reply; 5+ messages in thread
From: Jia Jia @ 2026-08-10 13:40 UTC (permalink / raw)
To: stefanha, sgarzare, mst, jasowangio
Cc: eperezma, kvm, virtualization, netdev, linux-kernel
vhost_vsock_set_features() leaves the device IOTLB attached when
userspace clears VIRTIO_F_ACCESS_PLATFORM. Descriptors can therefore
continue to use translations installed before the feature change,
including HVAs made stale by a later memory table update.
Detach the device IOTLB before acknowledging a feature mask without
ACCESS_PLATFORM. Serialize each virtqueue handoff with its own mutex
while clearing its IOTLB pointer, resetting its metadata cache, and
updating its acknowledged features. Keep the old IOTLB alive until all
virtqueues have dropped their references, then free it.
Also drop queued IOTLB miss messages and wake readers now that the
device no longer accepts IOTLB updates.
Fixes: e13a6915a03f ("vhost/vsock: add IOTLB API support")
Suggested-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jia Jia <physicalmtea@gmail.com>
---
drivers/vhost/vsock.c | 39 ++++++++++++++++++++++++++++++++++-----
1 file changed, 34 insertions(+), 5 deletions(-)
diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
index 9aaab6bb8061..7372c22691de 100644
--- a/drivers/vhost/vsock.c
+++ b/drivers/vhost/vsock.c
@@ -851,6 +851,30 @@ static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
return 0;
}
+/* Caller must hold the device mutex. */
+static void vhost_vsock_clear_iotlb(struct vhost_vsock *vsock, u64 features)
+{
+ struct vhost_iotlb *iotlb;
+ struct vhost_virtqueue *vq;
+ int i;
+
+ iotlb = vsock->dev.iotlb;
+ vsock->dev.iotlb = NULL;
+
+ for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
+ mutex_lock(&vsock->vqs[i].mutex);
+ vq = &vsock->vqs[i];
+ vq->iotlb = NULL;
+ memset(vq->meta_iotlb, 0, sizeof(vq->meta_iotlb));
+ vq->acked_features = features;
+ mutex_unlock(&vsock->vqs[i].mutex);
+ }
+
+ vhost_clear_msg(&vsock->dev);
+ vhost_iotlb_free(iotlb);
+ wake_up_interruptible_poll(&vsock->dev.wait, EPOLLIN | EPOLLRDNORM);
+}
+
static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
{
struct vhost_virtqueue *vq;
@@ -872,11 +896,16 @@ static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
vsock->seqpacket_allow = features & (1ULL << VIRTIO_VSOCK_F_SEQPACKET);
- for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
- vq = &vsock->vqs[i];
- mutex_lock(&vq->mutex);
- vq->acked_features = features;
- mutex_unlock(&vq->mutex);
+ if (!(features & (1ULL << VIRTIO_F_ACCESS_PLATFORM)) &&
+ vsock->dev.iotlb) {
+ vhost_vsock_clear_iotlb(vsock, features);
+ } else {
+ for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
+ vq = &vsock->vqs[i];
+ mutex_lock(&vq->mutex);
+ vq->acked_features = features;
+ mutex_unlock(&vq->mutex);
+ }
}
mutex_unlock(&vsock->dev.mutex);
return 0;
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates
2026-08-10 13:40 [PATCH v3 0/2] vhost/vsock: fix device IOTLB feature lifecycle Jia Jia
2026-08-10 13:40 ` [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared Jia Jia
@ 2026-08-10 13:40 ` Jia Jia
2026-08-13 9:44 ` Stefano Garzarella
1 sibling, 1 reply; 5+ messages in thread
From: Jia Jia @ 2026-08-10 13:40 UTC (permalink / raw)
To: stefanha, sgarzare, mst, jasowangio
Cc: eperezma, kvm, virtualization, netdev, linux-kernel
VHOST_SET_FEATURES is also used to update logging while a device is
running. When ACCESS_PLATFORM stays enabled, allocating a new empty
IOTLB on every call drops valid translations and forces avoidable
misses.
Initialize the device IOTLB only when one does not already exist.
Signed-off-by: Jia Jia <physicalmtea@gmail.com>
---
drivers/vhost/vsock.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
index 7372c22691de..1beae7f5b9a9 100644
--- a/drivers/vhost/vsock.c
+++ b/drivers/vhost/vsock.c
@@ -889,7 +889,8 @@ static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
goto err;
}
- if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM))) {
+ if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM)) &&
+ !vsock->dev.iotlb) {
if (vhost_init_device_iotlb(&vsock->dev))
goto err;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared
2026-08-10 13:40 ` [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared Jia Jia
@ 2026-08-13 9:39 ` Stefano Garzarella
0 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2026-08-13 9:39 UTC (permalink / raw)
To: Jia Jia
Cc: stefanha, mst, jasowangio, eperezma, kvm, virtualization, netdev,
linux-kernel
On Mon, Aug 10, 2026 at 09:40:17PM +0800, Jia Jia wrote:
>vhost_vsock_set_features() leaves the device IOTLB attached when
>userspace clears VIRTIO_F_ACCESS_PLATFORM. Descriptors can therefore
>continue to use translations installed before the feature change,
>including HVAs made stale by a later memory table update.
>
>Detach the device IOTLB before acknowledging a feature mask without
>ACCESS_PLATFORM. Serialize each virtqueue handoff with its own mutex
>while clearing its IOTLB pointer, resetting its metadata cache, and
>updating its acknowledged features. Keep the old IOTLB alive until all
>virtqueues have dropped their references, then free it.
>
>Also drop queued IOTLB miss messages and wake readers now that the
>device no longer accepts IOTLB updates.
>
>Fixes: e13a6915a03f ("vhost/vsock: add IOTLB API support")
>Suggested-by: Michael S. Tsirkin <mst@redhat.com>
>Signed-off-by: Jia Jia <physicalmtea@gmail.com>
>---
> drivers/vhost/vsock.c | 39 ++++++++++++++++++++++++++++++++++-----
> 1 file changed, 34 insertions(+), 5 deletions(-)
>
>diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
>index 9aaab6bb8061..7372c22691de 100644
>--- a/drivers/vhost/vsock.c
>+++ b/drivers/vhost/vsock.c
>@@ -851,6 +851,30 @@ static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
> return 0;
> }
>
>+/* Caller must hold the device mutex. */
>+static void vhost_vsock_clear_iotlb(struct vhost_vsock *vsock, u64 features)
>+{
>+ struct vhost_iotlb *iotlb;
>+ struct vhost_virtqueue *vq;
>+ int i;
>+
>+ iotlb = vsock->dev.iotlb;
>+ vsock->dev.iotlb = NULL;
>+
>+ for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
>+ mutex_lock(&vsock->vqs[i].mutex);
>+ vq = &vsock->vqs[i];
You can assing vq before the mutex_lock() and use it there too (and in
mutex_unlock()), as we do in all other places in this file.
>+ vq->iotlb = NULL;
>+ memset(vq->meta_iotlb, 0, sizeof(vq->meta_iotlb));
>+ vq->acked_features = features;
>+ mutex_unlock(&vsock->vqs[i].mutex);
>+ }
>+
>+ vhost_clear_msg(&vsock->dev);
>+ vhost_iotlb_free(iotlb);
>+ wake_up_interruptible_poll(&vsock->dev.wait, EPOLLIN | EPOLLRDNORM);
>+}
I don't see anything vsock specific here. Would it be better to move
this to vhost.c and reuse some of the functions we have there?
I mean something like this (untested and may be incomplete):
void vhost_clear_device_iotlb(struct vhost_dev *d)
{
struct vhost_iotlb *iotlb;
int i;
iotlb = d->iotlb;
d->iotlb = NULL;
for (i = 0; i < d->nvqs; ++i) {
struct vhost_virtqueue *vq = d->vqs[i];
mutex_lock(&vq->mutex);
vq->iotlb = NULL;
__vhost_vq_meta_reset(vq);
mutex_unlock(&vq->mutex);
}
vhost_clear_msg(d);
vhost_iotlb_free(iotlb);
wake_up_interruptible_poll(&d->wait, EPOLLIN | EPOLLRDNORM);
}
EXPORT_SYMBOL_GPL(vhost_clear_device_iotlb);
>+
> static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
> {
> struct vhost_virtqueue *vq;
>@@ -872,11 +896,16 @@ static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
>
> vsock->seqpacket_allow = features & (1ULL << VIRTIO_VSOCK_F_SEQPACKET);
>
>- for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
>- vq = &vsock->vqs[i];
>- mutex_lock(&vq->mutex);
>- vq->acked_features = features;
>- mutex_unlock(&vq->mutex);
>+ if (!(features & (1ULL << VIRTIO_F_ACCESS_PLATFORM)) &&
>+ vsock->dev.iotlb) {
>+ vhost_vsock_clear_iotlb(vsock, features);
>+ } else {
>+ for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
>+ vq = &vsock->vqs[i];
>+ mutex_lock(&vq->mutex);
>+ vq->acked_features = features;
>+ mutex_unlock(&vq->mutex);
>+ }
TBH I don't like this mix.
Why assigning acked_features inside vhost_vsock_clear_iotlb()?
IMO it's confusing. I see that you're saving another loop around the
VQs, but this code is not easy to understand IMO.
I think we have 2 options:
1. leave the loop for acked_features and don't set it in
vhost_vsock_clear_iotlb() (less code touched by this patch).
This is also what to do if we move the clear_iotlb() function
in vhost.c.
2. change the code to have a single for loop with if block inside to
reset IOTLB stuff if needed. In this case maybe better to avoid the
function and move the entire code here.
I prefer 1 with clear_iotlb() in vhost.c, but I'm not fully against 2.
Thanks,
Stefano
> }
> mutex_unlock(&vsock->dev.mutex);
> return 0;
>--
>2.34.1
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates
2026-08-10 13:40 ` [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates Jia Jia
@ 2026-08-13 9:44 ` Stefano Garzarella
0 siblings, 0 replies; 5+ messages in thread
From: Stefano Garzarella @ 2026-08-13 9:44 UTC (permalink / raw)
To: Jia Jia
Cc: stefanha, mst, jasowangio, eperezma, kvm, virtualization, netdev,
linux-kernel
On Mon, Aug 10, 2026 at 09:40:18PM +0800, Jia Jia wrote:
>VHOST_SET_FEATURES is also used to update logging while a device is
>running. When ACCESS_PLATFORM stays enabled, allocating a new empty
>IOTLB on every call drops valid translations and forces avoidable
>misses.
>
>Initialize the device IOTLB only when one does not already exist.
>
Do we need a Fixes tag here?
>Signed-off-by: Jia Jia <physicalmtea@gmail.com>
>---
> drivers/vhost/vsock.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/vhost/vsock.c b/drivers/vhost/vsock.c
>index 7372c22691de..1beae7f5b9a9 100644
>--- a/drivers/vhost/vsock.c
>+++ b/drivers/vhost/vsock.c
>@@ -889,7 +889,8 @@ static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
> goto err;
> }
>
>- if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM))) {
>+ if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM)) &&
>+ !vsock->dev.iotlb) {
Do we need to do the same in vhost-net too?
Thanks,
Stefano
> if (vhost_init_device_iotlb(&vsock->dev))
> goto err;
> }
>--
>2.34.1
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-08-13 9:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 13:40 [PATCH v3 0/2] vhost/vsock: fix device IOTLB feature lifecycle Jia Jia
2026-08-10 13:40 ` [PATCH v3 1/2] vhost/vsock: discard IOTLB when ACCESS_PLATFORM is cleared Jia Jia
2026-08-13 9:39 ` Stefano Garzarella
2026-08-10 13:40 ` [PATCH v3 2/2] vhost/vsock: keep IOTLB across feature updates Jia Jia
2026-08-13 9:44 ` Stefano Garzarella
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).