Re: [PATCH] vhost: fix log for async dequeue

2022-06-17 Thread Maxime Coquelin
On 6/17/22 07:40, David Marchand wrote: Since the commit 02798b073520 ("vhost: improve virtio-net layer logs"), vhost logs contain the socket path as a prefix. Async dequeue path was copied from the sync dequeue path but a log was incorrect. Fixes: 84d5204310d7 ("vhost: support async dequeue

Re: [PATCH] vhost: fix log for async dequeue

2022-06-17 Thread Maxime Coquelin
On 6/17/22 07:40, David Marchand wrote: Since the commit 02798b073520 ("vhost: improve virtio-net layer logs"), vhost logs contain the socket path as a prefix. Async dequeue path was copied from the sync dequeue path but a log was incorrect. Fixes: 84d5204310d7 ("vhost: support async dequeue

[PATCH] vhost: fix log for async dequeue

2022-06-16 Thread David Marchand
Since the commit 02798b073520 ("vhost: improve virtio-net layer logs"), vhost logs contain the socket path as a prefix. Async dequeue path was copied from the sync dequeue path but a log was incorrect. Fixes: 84d5204310d7 ("vhost: support async dequeue for split ring") Signed-off-by: David Marcha