47 lines
1.7 KiB
Diff
47 lines
1.7 KiB
Diff
|
|
From 853f14a29c9a31ca132647770f7d6886103b2b77 Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
||
|
|
Date: Wed, 20 Jul 2022 08:59:29 +0200
|
||
|
|
Subject: [PATCH] vdpa: Avoid compiler to squash reads to used idx
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
In the next patch we will allow busypolling of this value. The compiler
|
||
|
|
have a running path where shadow_used_idx, last_used_idx, and vring used
|
||
|
|
idx are not modified within the same thread busypolling.
|
||
|
|
|
||
|
|
This was not an issue before since we always cleared device event
|
||
|
|
notifier before checking it, and that could act as memory barrier.
|
||
|
|
However, the busypoll needs something similar to kernel READ_ONCE.
|
||
|
|
|
||
|
|
Let's add it here, sepparated from the polling.
|
||
|
|
|
||
|
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
|
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
||
|
|
Signed-off-by: fangyi <eric.fangyi@huawei.com>
|
||
|
|
---
|
||
|
|
hw/virtio/vhost-shadow-virtqueue.c | 3 ++-
|
||
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/hw/virtio/vhost-shadow-virtqueue.c b/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
|
index da1e1ce3c7..acf50a9a0b 100644
|
||
|
|
--- a/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
|
+++ b/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
|
@@ -326,11 +326,12 @@ static void vhost_handle_guest_kick_notifier(EventNotifier *n)
|
||
|
|
|
||
|
|
static bool vhost_svq_more_used(VhostShadowVirtqueue *svq)
|
||
|
|
{
|
||
|
|
+ uint16_t *used_idx = &svq->vring.used->idx;
|
||
|
|
if (svq->last_used_idx != svq->shadow_used_idx) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
- svq->shadow_used_idx = cpu_to_le16(svq->vring.used->idx);
|
||
|
|
+ svq->shadow_used_idx = cpu_to_le16(*(volatile uint16_t *)used_idx);
|
||
|
|
|
||
|
|
return svq->last_used_idx != svq->shadow_used_idx;
|
||
|
|
}
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|