[dpdk-dev] [PATCH v2 1/3] vhost: fix lock on device readiness notification
From: Jiayu Hu <hidden>
Date: 2021-07-07 04:50:20
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Jiayu Hu <hidden>
Date: 2021-07-07 04:50:20
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
The vhost notifies the application of device readiness via
vhost_user_notify_queue_state(), but calling this function
is not protected by the lock. This patch is to make this
function call lock protected.
Fixes: d0fcc38f5fa4 ("vhost: improve device readiness notifications")
Cc: stable@dpdk.org
Signed-off-by: Jiayu Hu <redacted>
Reviewed-by: Maxime Coquelin <redacted>
---
lib/vhost/vhost_user.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lib/vhost/vhost_user.c b/lib/vhost/vhost_user.c
index 031c578..31300e1 100644
--- a/lib/vhost/vhost_user.c
+++ b/lib/vhost/vhost_user.c@@ -2995,9 +2995,6 @@ vhost_user_msg_handler(int vid, int fd) } } - if (unlock_required) - vhost_user_unlock_all_queue_pairs(dev); - /* If message was not handled at this stage, treat it as an error */ if (!handled) { VHOST_LOG_CONFIG(ERR,
@@ -3032,6 +3029,8 @@ vhost_user_msg_handler(int vid, int fd) } } + if (unlock_required) + vhost_user_unlock_all_queue_pairs(dev); if (!virtio_is_ready(dev)) goto out;
--
2.7.4