Re: [dpdk-dev] [PATCH v1] vhost: fix uninitialized local variable

2020-10-29 Thread Maxime Coquelin
On 10/27/20 9:50 AM, Patrick Fu wrote: > This patch initializes a local parameter in async data path to avoid > compiler warnings. > > Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") > > Signed-off-by: Patrick Fu > --- > lib/librte_vhost/virtio_net.c | 2 +- > 1 file ch

Re: [dpdk-dev] [PATCH v1] vhost: fix uninitialized local variable

2020-10-28 Thread Maxime Coquelin
On 10/27/20 9:50 AM, Patrick Fu wrote: > This patch initializes a local parameter in async data path to avoid > compiler warnings. > > Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") > > Signed-off-by: Patrick Fu > --- > lib/librte_vhost/virtio_net.c | 2 +- > 1 file ch

[dpdk-dev] [PATCH v1] vhost: fix uninitialized local variable

2020-10-27 Thread Patrick Fu
This patch initializes a local parameter in async data path to avoid compiler warnings. Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") Signed-off-by: Patrick Fu --- lib/librte_vhost/virtio_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librt