Re: [PATCH v2 1/5] vhost: fix missing virtqueue lock protection

2022-03-28 Thread Maxime Coquelin
On 3/28/22 10:07, David Marchand wrote: On Thu, Mar 24, 2022 at 1:46 PM Maxime Coquelin wrote: This patch ensures virtqueue metadata are not being modified while rte_vhost_vring_call() is executed. Fixes: 6c299bb7322f ("vhost: introduce vring call API") Cc: sta...@dpdk.org Signed-off-by:

Re: [PATCH v2 1/5] vhost: fix missing virtqueue lock protection

2022-03-28 Thread David Marchand
On Thu, Mar 24, 2022 at 1:46 PM Maxime Coquelin wrote: > > This patch ensures virtqueue metadata are not being > modified while rte_vhost_vring_call() is executed. > > Fixes: 6c299bb7322f ("vhost: introduce vring call API") > Cc: sta...@dpdk.org > > Signed-off-by: Maxime Coquelin > --- > lib/vho

[PATCH v2 1/5] vhost: fix missing virtqueue lock protection

2022-03-24 Thread Maxime Coquelin
This patch ensures virtqueue metadata are not being modified while rte_vhost_vring_call() is executed. Fixes: 6c299bb7322f ("vhost: introduce vring call API") Cc: sta...@dpdk.org Signed-off-by: Maxime Coquelin --- lib/vhost/vhost.c | 4 1 file changed, 4 insertions(+) diff --git a/lib/vho