From: 王志克 <wangzk320@163.com>
To: "Zhike Wang" <wangzhike@jd.com>, dev@openvswitch.org
Cc: dev@dpdk.org, maxime.coquelin@redhat.com, xiaolong.ye@intel.com,
zhihong.wang@intel.com, stable@dpdk.org
Subject: Re: [dpdk-dev] [PATCH] vhost: return -EAGAIN during unregistering vhost if it is busy.
Date: Wed, 18 Mar 2020 11:31:27 +0800 (CST) [thread overview]
Message-ID: <178ab8fa.363e.170ebb22d94.Coremail.wangzk320@163.com> (raw)
In-Reply-To: <1584007039-12437-1-git-send-email-wangzhike@jd.com>
Involve openvswitch group since this fix is highly coupled with OVS.
welcome comment.
At 2020-03-12 17:57:19, "Zhike Wang" <wangzhike@jd.com> wrote:
>The vhost_user_read_cb() and rte_vhost_driver_unregister()
>can be called at the same time by 2 threads, and may lead to deadlock.
>Eg thread1 calls vhost_user_read_cb()->vhost_user_get_vring_base()->destroy_device(),
>then thread2 calls rte_vhost_driver_unregister(), and will retry the fdset_try_del() in loop.
>
>Some application implements destroy_device() as a blocking function, eg
>OVS calls ovsrcu_synchronize() insides destroy_device(). As a result,
>thread1(eg vhost_events) is blocked to wait quiesce of thread2(eg ovs-vswitchd),
>and thread2 is in a loop to wait thread1 to give up the use of the vhost fd,
>then leads to deadlock.
>
>It is better to return -EAGAIN to application, who will decide how to handle
>(eg OVS can call ovsrcu_quiesce() and then retry).
>
>Signed-off-by: Zhike Wang <wangzhike@jd.com>
>---
> lib/librte_vhost/rte_vhost.h | 4 +++-
> lib/librte_vhost/socket.c | 8 ++++----
> 2 files changed, 7 insertions(+), 5 deletions(-)
>
>diff --git a/lib/librte_vhost/rte_vhost.h b/lib/librte_vhost/rte_vhost.h
>index c7b619a..276db11 100644
>--- a/lib/librte_vhost/rte_vhost.h
>+++ b/lib/librte_vhost/rte_vhost.h
>@@ -389,7 +389,9 @@ void rte_vhost_log_used_vring(int vid, uint16_t vring_idx,
> */
> int rte_vhost_driver_register(const char *path, uint64_t flags);
>
>-/* Unregister vhost driver. This is only meaningful to vhost user. */
>+/* Unregister vhost driver. This is only meaningful to vhost user.
>+ * Return -EAGAIN if device is busy, and leave it to be handled by application.
>+ */
> int rte_vhost_driver_unregister(const char *path);
>
> /**
>diff --git a/lib/librte_vhost/socket.c b/lib/librte_vhost/socket.c
>index 7c80121..a75a3f6 100644
>--- a/lib/librte_vhost/socket.c
>+++ b/lib/librte_vhost/socket.c
>@@ -1027,7 +1027,8 @@ struct vhost_user_reconnect_list {
> }
>
> /**
>- * Unregister the specified vhost socket
>+ * Unregister the specified vhost socket.
>+ * Return -EAGAIN if device is busy, and leave it to be handled by application.
> */
> int
> rte_vhost_driver_unregister(const char *path)
>@@ -1039,7 +1040,6 @@ struct vhost_user_reconnect_list {
> if (path == NULL)
> return -1;
>
>-again:
> pthread_mutex_lock(&vhost_user.mutex);
>
> for (i = 0; i < vhost_user.vsocket_cnt; i++) {
>@@ -1063,7 +1063,7 @@ struct vhost_user_reconnect_list {
> pthread_mutex_unlock(
> &vsocket->conn_mutex);
> pthread_mutex_unlock(&vhost_user.mutex);
>- goto again;
>+ return -EAGAIN;
> }
>
> VHOST_LOG_CONFIG(INFO,
>@@ -1085,7 +1085,7 @@ struct vhost_user_reconnect_list {
> if (fdset_try_del(&vhost_user.fdset,
> vsocket->socket_fd) == -1) {
> pthread_mutex_unlock(&vhost_user.mutex);
>- goto again;
>+ return -EAGAIN;
> }
>
> close(vsocket->socket_fd);
>--
>1.8.3.1
>
next prev parent reply other threads:[~2020-03-19 8:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-12 9:57 Zhike Wang
2020-03-18 3:31 ` 王志克 [this message]
2020-04-27 8:09 ` [dpdk-dev] [ovs-dev] " Maxime Coquelin
2020-05-06 2:39 ` 王志克
2020-05-06 7:53 ` Maxime Coquelin
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=178ab8fa.363e.170ebb22d94.Coremail.wangzk320@163.com \
--to=wangzk320@163.com \
--cc=dev@dpdk.org \
--cc=dev@openvswitch.org \
--cc=maxime.coquelin@redhat.com \
--cc=stable@dpdk.org \
--cc=wangzhike@jd.com \
--cc=xiaolong.ye@intel.com \
--cc=zhihong.wang@intel.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;
as well as URLs for NNTP newsgroup(s).