[dpdk-dev] [PATCH] vhost: add event areas to vq_is_ready()

2020-01-25 Thread Adrian Moreno
Consider a virtqueue ready when, apart from the the descriptor area, both event supression areas have been mapped. Fixes: 2d1541e2b6b3 ("vhost: add vring address setup for packed queues") Cc: y...@fridaylinux.org Cc: sta...@dpdk.org Signed-off-by: Adrian Moreno --- lib/librte_vhost/vhost_user.c

[dpdk-dev] [PATCH] doc: add rte_ring_xxx_elem introduction to rel notes

2020-01-25 Thread Honnappa Nagarahalli
Added introduction of rte_ring_xxx_elem APIs to release notes. Signed-off-by: Honnappa Nagarahalli --- doc/guides/rel_notes/release_20_02.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/release_20_02.rst b/doc/guides/rel_notes/release_20_02.rst index 50e2c1484..

Re: [dpdk-dev] [dpdk-stable] [PATCH 2/2] app/testpmd: fix invalid port detaching

2020-01-25 Thread Matan Azrad
Hi Ferruh From: Ferruh Yigit > On 1/23/2020 7:25 PM, Matan Azrad wrote: > > Hi > > > > From: Ferruh Yigit > >> On 1/23/2020 3:29 PM, Matan Azrad wrote: > >>> > >>> Hi > >>> > >>> From: Ferruh Yigit > On 1/23/2020 2:05 PM, Matan Azrad wrote: > > Hi > > > > From: Yigit, Ferruh > >>>

[dpdk-dev] [PATCH] app/pdump: fix build with clang

2020-01-25 Thread Stephen Hemminger
Clang checks indentation and found incorrect indentation in pdump. app/pdump/main.c:598:3: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation] Cc: reshma.pat...@intel.com Cc: sta...@dpdk.org Fixes: caa7028276b8 ("app/pdump: add tool for pa

[dpdk-dev] [PATCH 0/5] l3fwd and lpm cleanups

2020-01-25 Thread Stephen Hemminger
While working on l3fwd, saw some minor things that should be cleaned up. Stephen Hemminger (5): lpm: make ipv6 address immutable examples/l3fwd: use RTE_DIM examples/l3fwd: make lookup struct static examples/l3fwd: make route array constant examples/l3fwd: improve readability for destina

[dpdk-dev] [PATCH 3/5] examples/l3fwd: make lookup struct static

2020-01-25 Thread Stephen Hemminger
The lookup structure is only used in the lpm code and does not have to be global. Signed-off-by: Stephen Hemminger --- examples/l3fwd/l3fwd_lpm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/l3fwd/l3fwd_lpm.c b/examples/l3fwd/l3fwd_lpm.c index b6802d63ba1d..48

[dpdk-dev] [PATCH 1/5] lpm: make ipv6 address immutable

2020-01-25 Thread Stephen Hemminger
Both the table setup and lookup do no modify their arguments. Therefore the parameter should be constant. This is not actually an API breakage since programs can be recompiled without change. This is not an ABI breakage because old programs will still run. Signed-off-by: Stephen Hemminger --- l

[dpdk-dev] [PATCH 5/5] examples/l3fwd: improve readability for destination lookup

2020-01-25 Thread Stephen Hemminger
The functions to lookup ipv4 and ipv6 were both using opaque pointers (void *) when they should use a typed pointer instead. The ip headers are not modified during lookup. Get rid of unnecessary cast on the return from the function. Replace complex trigraph expression with simple if to improve rea

[dpdk-dev] [PATCH 4/5] examples/l3fwd: make route array constant

2020-01-25 Thread Stephen Hemminger
The initial route setup array is unmodified by the lpm code and can be made constant. This depends on earlier patch to fix the rte_lpm6 to use const. Signed-off-by: Stephen Hemminger --- examples/l3fwd/l3fwd_lpm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/l

[dpdk-dev] [PATCH 2/5] examples/l3fwd: use RTE_DIM

2020-01-25 Thread Stephen Hemminger
Use the standard RTE_DIM macro to compute array size. Signed-off-by: Stephen Hemminger --- examples/l3fwd/l3fwd_lpm.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/l3fwd/l3fwd_lpm.c b/examples/l3fwd/l3fwd_lpm.c index 349de2703cd1..b6802d63ba1d 100644 --- a/ex