vhost_poll_flush() is a simple wrapper around vhost_work_dev_flush().
It gives wrong impression that we are doing some work over vhost_poll,
while in fact it flushes vhost_poll->dev.
It only complicate understanding of the code and leads to mistakes
like flushing the same vhost_dev several times in a row.
Just remove vhost_poll_flush() and call vhost_work_dev_flush() directly.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 4 ++--
drivers/vhost/test.c | 2 +-
drivers/vhost/vhost.c | 12 ++----------
drivers/vhost/vsock.c | 2 +-
4 files changed, 6 insertions(+), 14 deletions(-)
@@ -245,14 +245,6 @@ void vhost_work_dev_flush(struct vhost_dev *dev)}EXPORT_SYMBOL_GPL(vhost_work_dev_flush);-/* Flush any work that has been scheduled. When calling this, don't hold any-*locksthatarealsousedbythecallback.*/-voidvhost_poll_flush(structvhost_poll*poll)-{-vhost_work_dev_flush(poll->dev);-}-EXPORT_SYMBOL_GPL(vhost_poll_flush);-voidvhost_work_queue(structvhost_dev*dev,structvhost_work*work){if(!dev->worker)
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
@@ -1404,15 +1417,8 @@ static int vhost_net_release(struct inode *inode, struct file *f)sockfd_put(tx_sock);if(rx_sock)sockfd_put(rx_sock);-/* Make sure no callbacks are outstanding */-synchronize_rcu();-kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);-kfree(n->vqs[VHOST_NET_VQ_TX].xdp);-kfree(n->dev.vqs);-if(n->page_frag.page)-__page_frag_cache_drain(n->page_frag.page,n->refcnt_bias);-kvfree(n);+call_rcu(&n->rcu,vhost_net_free);return0;}
vhost_test_flush_vq() just a simple wrapper around vhost_work_dev_flush()
which seems have no value. It's just easier to call vhost_work_dev_flush()
directly. Besides there is no point in obtaining vhost_dev pointer
via 'n->vqs[index].poll.dev' while we can just use &n->dev.
It's the same pointers, see vhost_test_open()/vhost_dev_init().
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/test.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
The second vhost_net_flush() call in vhost_net_release() doesn't do
anything. vhost_dev_cleanup() stops dev->worker and NULLifies it.
vhost_net_reset_vq(n) NULLifies n->vqs[i].ubufs
So vhost_net_flush() after vhost_dev_cleanup()&vhost_net_reset_vq() doesn't
do anything, it simply doesn't pass NULL checks.
Hence remove it for simplicity.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
@@ -1406,9 +1406,7 @@ static int vhost_net_release(struct inode *inode, struct file *f)sockfd_put(rx_sock);/* Make sure no callbacks are outstanding */synchronize_rcu();-/* We do an extra flush before freeing memory,-*sincejobscanre-queuethemselves.*/-vhost_net_flush(n);+kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);kfree(n->vqs[VHOST_NET_VQ_TX].xdp);kfree(n->dev.vqs);
vhost_net_flush_vq() calls vhost_work_dev_flush() twice passing
vhost_dev pointer obtained via 'n->poll[index].dev' and
'n->vqs[index].vq.poll.dev'. This is actually the same pointer,
initialized in vhost_net_open()/vhost_dev_init()/vhost_poll_init()
Remove vhost_net_flush_vq() and call vhost_work_dev_flush() directly.
Do the flushes only once instead of several flush calls in a row
which seems rather useless.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 11 ++---------
drivers/vhost/vhost.h | 1 +
2 files changed, 3 insertions(+), 9 deletions(-)
vhost_vsock_flush() calls vhost_work_dev_flush(vsock->vqs[i].poll.dev)
before vhost_work_dev_flush(&vsock->dev). This seems pointless
as vsock->vqs[i].poll.dev is the same as &vsock->dev and several flushes
in a row doesn't do anything useful, one is just enough.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/vsock.c | 5 -----
1 file changed, 5 deletions(-)
From: Jason Wang <hidden> Date: 2021-11-16 05:01:46
On Mon, Nov 15, 2021 at 11:32 PM Andrey Ryabinin [off-list ref] wrote:
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
I admit the release code is somehow hard to understand. But I wonder
if the following case can still happen with this:
CPU 0 (vhost_dev_cleanup) CPU1
(vhost_net_zerocopy_callback()->vhost_work_queue())
if (!dev->worker)
dev->worker = NULL
wake_up_process(dev->worker)
If this is true. It seems the fix is to move RCU synchronization stuff
in vhost_net_ubuf_put_and_wait()?
Thanks
@@ -1404,15 +1417,8 @@ static int vhost_net_release(struct inode *inode, struct file *f)sockfd_put(tx_sock);if(rx_sock)sockfd_put(rx_sock);-/* Make sure no callbacks are outstanding */-synchronize_rcu();-kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);-kfree(n->vqs[VHOST_NET_VQ_TX].xdp);-kfree(n->dev.vqs);-if(n->page_frag.page)-__page_frag_cache_drain(n->page_frag.page,n->refcnt_bias);-kvfree(n);+call_rcu(&n->rcu,vhost_net_free);return0;}--
On Mon, Nov 15, 2021 at 06:29:58PM +0300, Andrey Ryabinin wrote:
vhost_poll_flush() is a simple wrapper around vhost_work_dev_flush().
It gives wrong impression that we are doing some work over vhost_poll,
while in fact it flushes vhost_poll->dev.
It only complicate understanding of the code and leads to mistakes
like flushing the same vhost_dev several times in a row.
Just remove vhost_poll_flush() and call vhost_work_dev_flush() directly.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 4 ++--
drivers/vhost/test.c | 2 +-
drivers/vhost/vhost.c | 12 ++----------
drivers/vhost/vsock.c | 2 +-
4 files changed, 6 insertions(+), 14 deletions(-)
Adding Mike since these changes could be relevant for "[PATCH V4 00/12]
vhost: multiple worker support" [1] series.
}
EXPORT_SYMBOL_GPL(vhost_work_dev_flush);
-/* Flush any work that has been scheduled. When calling this, don't hold any
- * locks that are also used by the callback. */
-void vhost_poll_flush(struct vhost_poll *poll)
-{
- vhost_work_dev_flush(poll->dev);
-}
-EXPORT_SYMBOL_GPL(vhost_poll_flush);
-
for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++)
if (vsock->vqs[i].handle_kick)
- vhost_poll_flush(&vsock->vqs[i].poll);
+ vhost_work_dev_flush(vsock->vqs[i].poll.dev);
vhost_work_dev_flush(&vsock->dev);
}
--
2.32.0
On Mon, Nov 15, 2021 at 06:29:59PM +0300, Andrey Ryabinin wrote:
quoted hunk
vhost_net_flush_vq() calls vhost_work_dev_flush() twice passing
vhost_dev pointer obtained via 'n->poll[index].dev' and
'n->vqs[index].vq.poll.dev'. This is actually the same pointer,
initialized in vhost_net_open()/vhost_dev_init()/vhost_poll_init()
Remove vhost_net_flush_vq() and call vhost_work_dev_flush() directly.
Do the flushes only once instead of several flush calls in a row
which seems rather useless.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 11 ++---------
drivers/vhost/vhost.h | 1 +
2 files changed, 3 insertions(+), 9 deletions(-)
On Mon, Nov 15, 2021 at 06:30:01PM +0300, Andrey Ryabinin wrote:
quoted hunk
vhost_vsock_flush() calls vhost_work_dev_flush(vsock->vqs[i].poll.dev)
before vhost_work_dev_flush(&vsock->dev). This seems pointless
as vsock->vqs[i].poll.dev is the same as &vsock->dev and several flushes
in a row doesn't do anything useful, one is just enough.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/vsock.c | 5 -----
1 file changed, 5 deletions(-)
vhost_poll_flush() is a simple wrapper around vhost_work_dev_flush().
It gives wrong impression that we are doing some work over vhost_poll,
while in fact it flushes vhost_poll->dev.
It only complicate understanding of the code and leads to mistakes
like flushing the same vhost_dev several times in a row.
Just remove vhost_poll_flush() and call vhost_work_dev_flush() directly.
Then you should send the series prefixed with net-next
@@ -245,14 +245,6 @@ void vhost_work_dev_flush(struct vhost_dev *dev)}EXPORT_SYMBOL_GPL(vhost_work_dev_flush);-/* Flush any work that has been scheduled. When calling this, don't hold any-*locksthatarealsousedbythecallback.*/-voidvhost_poll_flush(structvhost_poll*poll)-{-vhost_work_dev_flush(poll->dev);-}-EXPORT_SYMBOL_GPL(vhost_poll_flush);-voidvhost_work_queue(structvhost_dev*dev,structvhost_work*work){if(!dev->worker)
On Mon, Nov 15, 2021 at 06:29:58PM +0300, Andrey Ryabinin wrote:
quoted hunk
vhost_poll_flush() is a simple wrapper around vhost_work_dev_flush().
It gives wrong impression that we are doing some work over vhost_poll,
while in fact it flushes vhost_poll->dev.
It only complicate understanding of the code and leads to mistakes
like flushing the same vhost_dev several times in a row.
Just remove vhost_poll_flush() and call vhost_work_dev_flush() directly.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 4 ++--
drivers/vhost/test.c | 2 +-
drivers/vhost/vhost.c | 12 ++----------
drivers/vhost/vsock.c | 2 +-
4 files changed, 6 insertions(+), 14 deletions(-)
}
EXPORT_SYMBOL_GPL(vhost_work_dev_flush);
-/* Flush any work that has been scheduled. When calling this, don't hold any
- * locks that are also used by the callback. */
-void vhost_poll_flush(struct vhost_poll *poll)
-{
- vhost_work_dev_flush(poll->dev);
-}
-EXPORT_SYMBOL_GPL(vhost_poll_flush);
-
void vhost_work_queue(struct vhost_dev *dev, struct vhost_work *work)
{
if (!dev->worker)
for (i = 0; i < dev->nvqs; ++i) {
if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
vhost_poll_stop(&dev->vqs[i]->poll);
- vhost_poll_flush(&dev->vqs[i]->poll);
+ vhost_work_dev_flush(dev->vqs[i]->poll.dev);
Not related to this patch, but while looking at vhost-vsock I'm
wondering if we can do the same here in vhost_dev_stop(), I mean move
vhost_work_dev_flush() outside the loop and and call it once. (In
another patch eventually)
Stefano
for (i = 0; i < dev->nvqs; ++i) {
if (dev->vqs[i]->kick && dev->vqs[i]->handle_kick) {
vhost_poll_stop(&dev->vqs[i]->poll);
- vhost_poll_flush(&dev->vqs[i]->poll);
+ vhost_work_dev_flush(dev->vqs[i]->poll.dev);
Not related to this patch, but while looking at vhost-vsock I'm wondering if we can do the same here in vhost_dev_stop(), I mean move vhost_work_dev_flush() outside the loop and and call it once. (In another patch eventually)
Yeah, seems reasonable. I can't see any reason why would subsequent vhost_poll_stop() require the vhost_work_dev_flush() in between.
On Mon, Nov 15, 2021 at 11:32 PM Andrey Ryabinin [off-list ref] wrote:
quoted
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
I admit the release code is somehow hard to understand. But I wonder
if the following case can still happen with this:
CPU 0 (vhost_dev_cleanup) CPU1
(vhost_net_zerocopy_callback()->vhost_work_queue())
if (!dev->worker)
dev->worker = NULL
wake_up_process(dev->worker)
If this is true. It seems the fix is to move RCU synchronization stuff
in vhost_net_ubuf_put_and_wait()?
It all depends whether vhost_zerocopy_callback() can be called outside of vhost
thread context or not. If it can run after vhost thread stopped, than the race you
describe seems possible and the fix in commit b0c057ca7e83 ("vhost: fix a theoretical race in device cleanup")
wasn't complete. I would fix it by calling synchronize_rcu() after vhost_net_flush()
and before vhost_dev_cleanup().
As for the performance problem, it can be solved by replacing synchronize_rcu() with synchronize_rcu_expedited().
But now I'm not sure that this race is actually exists and that synchronize_rcu() needed at all.
I did a bit of testing and I only see callback being called from vhost thread:
vhost-3724 3733 [002] 2701.768731: probe:vhost_zerocopy_callback: (ffffffff81af8c10)
ffffffff81af8c11 vhost_zerocopy_callback+0x1 ([kernel.kallsyms])
ffffffff81bb34f6 skb_copy_ubufs+0x256 ([kernel.kallsyms])
ffffffff81bce621 __netif_receive_skb_core.constprop.0+0xac1 ([kernel.kallsyms])
ffffffff81bd062d __netif_receive_skb_one_core+0x3d ([kernel.kallsyms])
ffffffff81bd0748 netif_receive_skb+0x38 ([kernel.kallsyms])
ffffffff819a2a1e tun_get_user+0xdce ([kernel.kallsyms])
ffffffff819a2cf4 tun_sendmsg+0xa4 ([kernel.kallsyms])
ffffffff81af9229 handle_tx_zerocopy+0x149 ([kernel.kallsyms])
ffffffff81afaf05 handle_tx+0xc5 ([kernel.kallsyms])
ffffffff81afce86 vhost_worker+0x76 ([kernel.kallsyms])
ffffffff811581e9 kthread+0x169 ([kernel.kallsyms])
ffffffff810018cf ret_from_fork+0x1f ([kernel.kallsyms])
0 [unknown] ([unknown])
This means that the callback can't run after kthread_stop() in vhost_dev_cleanup() and no synchronize_rcu() needed.
I'm not confident that my quite limited testing cover all possible vhost_zerocopy_callback() callstacks.
From: Jason Wang <hidden> Date: 2021-11-22 02:48:58
On Fri, Nov 19, 2021 at 7:31 PM Andrey Ryabinin [off-list ref] wrote:
On 11/16/21 8:00 AM, Jason Wang wrote:
quoted
On Mon, Nov 15, 2021 at 11:32 PM Andrey Ryabinin [off-list ref] wrote:
quoted
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
I admit the release code is somehow hard to understand. But I wonder
if the following case can still happen with this:
CPU 0 (vhost_dev_cleanup) CPU1
(vhost_net_zerocopy_callback()->vhost_work_queue())
if (!dev->worker)
dev->worker = NULL
wake_up_process(dev->worker)
If this is true. It seems the fix is to move RCU synchronization stuff
in vhost_net_ubuf_put_and_wait()?
It all depends whether vhost_zerocopy_callback() can be called outside of vhost
thread context or not.
I think the answer is yes, the callback will be mainly used in the
zerocopy path when the underlayer NIC finishes the DMA of a packet.
If it can run after vhost thread stopped, than the race you
describe seems possible and the fix in commit b0c057ca7e83 ("vhost: fix a theoretical race in device cleanup")
wasn't complete. I would fix it by calling synchronize_rcu() after vhost_net_flush()
and before vhost_dev_cleanup().
As for the performance problem, it can be solved by replacing synchronize_rcu() with synchronize_rcu_expedited().
Yes, that's another way, but see below.
But now I'm not sure that this race is actually exists and that synchronize_rcu() needed at all.
I did a bit of testing and I only see callback being called from vhost thread:
vhost-3724 3733 [002] 2701.768731: probe:vhost_zerocopy_callback: (ffffffff81af8c10)
ffffffff81af8c11 vhost_zerocopy_callback+0x1 ([kernel.kallsyms])
ffffffff81bb34f6 skb_copy_ubufs+0x256 ([kernel.kallsyms])
ffffffff81bce621 __netif_receive_skb_core.constprop.0+0xac1 ([kernel.kallsyms])
ffffffff81bd062d __netif_receive_skb_one_core+0x3d ([kernel.kallsyms])
ffffffff81bd0748 netif_receive_skb+0x38 ([kernel.kallsyms])
ffffffff819a2a1e tun_get_user+0xdce ([kernel.kallsyms])
ffffffff819a2cf4 tun_sendmsg+0xa4 ([kernel.kallsyms])
ffffffff81af9229 handle_tx_zerocopy+0x149 ([kernel.kallsyms])
ffffffff81afaf05 handle_tx+0xc5 ([kernel.kallsyms])
ffffffff81afce86 vhost_worker+0x76 ([kernel.kallsyms])
ffffffff811581e9 kthread+0x169 ([kernel.kallsyms])
ffffffff810018cf ret_from_fork+0x1f ([kernel.kallsyms])
0 [unknown] ([unknown])
From the call trace you can send packets between two TAP. Since the TX
of TAP is synchronous so we can't see callback to be called out of
vhost thread.
In order to test it, we need 1) enable zerocopy
(experimental_zcopytx=1) and 2) sending the packet to the real NIC
with bridge or macvlan
Zerocopy was disalbed due to a lot of isuses (098eadce3c62 "vhost_net:
disable zerocopy by default"). So if we fix by moving it to
vhost_net_ubuf_put_and_wait(), there won't be a synchronize_rcu() in
the non-zerocopy path which seems to be sufficient. And we can use
synchronize_rcu_expedited() on top if it is really needed.
Thanks
This means that the callback can't run after kthread_stop() in vhost_dev_cleanup() and no synchronize_rcu() needed.
I'm not confident that my quite limited testing cover all possible vhost_zerocopy_callback() callstacks.
From: "Michael S. Tsirkin" <mst@redhat.com> Date: 2021-11-22 09:37:59
On Fri, Nov 19, 2021 at 02:32:05PM +0300, Andrey Ryabinin wrote:
On 11/16/21 8:00 AM, Jason Wang wrote:
quoted
On Mon, Nov 15, 2021 at 11:32 PM Andrey Ryabinin [off-list ref] wrote:
quoted
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
I admit the release code is somehow hard to understand. But I wonder
if the following case can still happen with this:
CPU 0 (vhost_dev_cleanup) CPU1
(vhost_net_zerocopy_callback()->vhost_work_queue())
if (!dev->worker)
dev->worker = NULL
wake_up_process(dev->worker)
If this is true. It seems the fix is to move RCU synchronization stuff
in vhost_net_ubuf_put_and_wait()?
It all depends whether vhost_zerocopy_callback() can be called outside of vhost
thread context or not. If it can run after vhost thread stopped, than the race you
describe seems possible and the fix in commit b0c057ca7e83 ("vhost: fix a theoretical race in device cleanup")
wasn't complete. I would fix it by calling synchronize_rcu() after vhost_net_flush()
and before vhost_dev_cleanup().
As for the performance problem, it can be solved by replacing synchronize_rcu() with synchronize_rcu_expedited().
expedited causes a stop of IPIs though, so it's problematic to
do it upon a userspace syscall.
But now I'm not sure that this race is actually exists and that synchronize_rcu() needed at all.
I did a bit of testing and I only see callback being called from vhost thread:
vhost-3724 3733 [002] 2701.768731: probe:vhost_zerocopy_callback: (ffffffff81af8c10)
ffffffff81af8c11 vhost_zerocopy_callback+0x1 ([kernel.kallsyms])
ffffffff81bb34f6 skb_copy_ubufs+0x256 ([kernel.kallsyms])
ffffffff81bce621 __netif_receive_skb_core.constprop.0+0xac1 ([kernel.kallsyms])
ffffffff81bd062d __netif_receive_skb_one_core+0x3d ([kernel.kallsyms])
ffffffff81bd0748 netif_receive_skb+0x38 ([kernel.kallsyms])
ffffffff819a2a1e tun_get_user+0xdce ([kernel.kallsyms])
ffffffff819a2cf4 tun_sendmsg+0xa4 ([kernel.kallsyms])
ffffffff81af9229 handle_tx_zerocopy+0x149 ([kernel.kallsyms])
ffffffff81afaf05 handle_tx+0xc5 ([kernel.kallsyms])
ffffffff81afce86 vhost_worker+0x76 ([kernel.kallsyms])
ffffffff811581e9 kthread+0x169 ([kernel.kallsyms])
ffffffff810018cf ret_from_fork+0x1f ([kernel.kallsyms])
0 [unknown] ([unknown])
This means that the callback can't run after kthread_stop() in vhost_dev_cleanup() and no synchronize_rcu() needed.
I'm not confident that my quite limited testing cover all possible vhost_zerocopy_callback() callstacks.
On Fri, Nov 19, 2021 at 02:32:05PM +0300, Andrey Ryabinin wrote:
quoted
On 11/16/21 8:00 AM, Jason Wang wrote:
quoted
On Mon, Nov 15, 2021 at 11:32 PM Andrey Ryabinin [off-list ref] wrote:
quoted
Currently vhost_net_release() uses synchronize_rcu() to synchronize
freeing with vhost_zerocopy_callback(). However synchronize_rcu()
is quite costly operation. It take more than 10 seconds
to shutdown qemu launched with couple net devices like this:
-netdev tap,id=tap0,..,vhost=on,queues=80
because we end up calling synchronize_rcu() netdev_count*queues times.
Free vhost net structures in rcu callback instead of using
synchronize_rcu() to fix the problem.
I admit the release code is somehow hard to understand. But I wonder
if the following case can still happen with this:
CPU 0 (vhost_dev_cleanup) CPU1
(vhost_net_zerocopy_callback()->vhost_work_queue())
if (!dev->worker)
dev->worker = NULL
wake_up_process(dev->worker)
If this is true. It seems the fix is to move RCU synchronization stuff
in vhost_net_ubuf_put_and_wait()?
It all depends whether vhost_zerocopy_callback() can be called outside of vhost
thread context or not. If it can run after vhost thread stopped, than the race you
describe seems possible and the fix in commit b0c057ca7e83 ("vhost: fix a theoretical race in device cleanup")
wasn't complete. I would fix it by calling synchronize_rcu() after vhost_net_flush()
and before vhost_dev_cleanup().
As for the performance problem, it can be solved by replacing synchronize_rcu() with synchronize_rcu_expedited().
expedited causes a stop of IPIs though, so it's problematic to
do it upon a userspace syscall.
How about something like this?
---
drivers/vhost/net.c | 40 ++++++++++++++++++++++++++--------------
1 file changed, 26 insertions(+), 14 deletions(-)
@@ -1398,21 +1420,11 @@ static int vhost_net_release(struct inode *inode, struct file *f)vhost_net_stop(n,&tx_sock,&rx_sock);vhost_net_flush(n);vhost_dev_stop(&n->dev);-vhost_dev_cleanup(&n->dev);-vhost_net_vq_reset(n);-if(tx_sock)-sockfd_put(tx_sock);-if(rx_sock)-sockfd_put(rx_sock);-/* Make sure no callbacks are outstanding */-synchronize_rcu();+n->tx_sock=tx_sock;+n->rx_sock=rx_sock;-kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue);-kfree(n->vqs[VHOST_NET_VQ_TX].xdp);-kfree(n->dev.vqs);-if(n->page_frag.page)-__page_frag_cache_drain(n->page_frag.page,n->refcnt_bias);-kvfree(n);+INIT_RCU_WORK(&n->rwork,vhost_net_cleanup);+queue_rcu_work(system_wq,&n->rwork);return0;}
From: Mike Christie <michael.christie@oracle.com> Date: 2021-12-03 17:45:44
On 11/16/21 8:33 AM, Stefano Garzarella wrote:
On Mon, Nov 15, 2021 at 06:29:58PM +0300, Andrey Ryabinin wrote:
quoted
vhost_poll_flush() is a simple wrapper around vhost_work_dev_flush().
It gives wrong impression that we are doing some work over vhost_poll,
while in fact it flushes vhost_poll->dev.
It only complicate understanding of the code and leads to mistakes
like flushing the same vhost_dev several times in a row.
Just remove vhost_poll_flush() and call vhost_work_dev_flush() directly.
Signed-off-by: Andrey Ryabinin <redacted>
---
drivers/vhost/net.c | 4 ++--
drivers/vhost/test.c | 2 +-
drivers/vhost/vhost.c | 12 ++----------
drivers/vhost/vsock.c | 2 +-
4 files changed, 6 insertions(+), 14 deletions(-)
Adding Mike since these changes could be relevant for "[PATCH V4 00/12] vhost: multiple worker support" [1] series.
I reworked my patches to work with this set and it might make them
a little nicer, because I have less functions to port.
Andrey, please cc me when you repost and I'll send my patches over
your set, or if it's going to take you a while I can help you. I
handled the review comments for the flush related patches and I can
just post them.