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
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..
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
> >>>
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
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
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
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
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
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
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
10 matches
Mail list logo