Re: [PATCH v2 21/21] doc: add table for environment variables used by cnxk

2022-02-26 Thread Thomas Monjalon
22/02/2022 20:35, Nithin Dabilpuram: > Add table for environment variables used by cnxk drivers. > > Signed-off-by: Nithin Dabilpuram > --- > +.. table:: cnxk environment variables > + > + > +---+-+-+ > + | # | Variable name

Re: [PATCH v2 21/21] doc: add table for environment variables used by cnxk

2022-02-26 Thread Jerin Jacob
On Sat, Feb 26, 2022 at 2:52 PM Thomas Monjalon wrote: > > 22/02/2022 20:35, Nithin Dabilpuram: > > Add table for environment variables used by cnxk drivers. > > > > Signed-off-by: Nithin Dabilpuram > > --- > > +.. table:: cnxk environment variables > > + > > + > > +---+---

[PATCH] net/ark: support multi-port pkt generation

2022-02-26 Thread John Miller
Added support for packet generation in multi-port Arkville implementations. The packet generator is a singleton within the device but is capable of generating packets for any port within one device. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 4 +++- drivers/net/ark/ark_global.

Re: [PATCH v2 21/21] doc: add table for environment variables used by cnxk

2022-02-26 Thread Thomas Monjalon
26/02/2022 10:37, Jerin Jacob: > On Sat, Feb 26, 2022 at 2:52 PM Thomas Monjalon wrote: > > > > 22/02/2022 20:35, Nithin Dabilpuram: > > > Add table for environment variables used by cnxk drivers. > > > > > > Signed-off-by: Nithin Dabilpuram > > > --- > > > +.. table:: cnxk environment variables

[PATCH] sched: add parentheses to if clause

2022-02-26 Thread Weiguo Li
Add parentheses to 'if' clause, otherwise will enlarged the chance of error return. Fixes: 44c730b0e37971 ("sched: add PIE based congestion management") Signed-off-by: Weiguo Li --- lib/sched/rte_pie.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/sched/rte_pie.c

Re: [PATCH v4 3/3] net/ixgbe: Fix SFP detection and linking on hotplug

2022-02-26 Thread Ferruh Yigit
On 2/25/2022 8:50 PM, Jeff Daly wrote: Currently the ixgbe driver does not ID any SFP except for the first one plugged in. This can lead to no-link, or incorrect speed conditions. For example: * If link is initially established with a 1G SFP, and later a 1G/10G multispeed part is later installe

Re: [PATCH] sched: add parentheses to if clause

2022-02-26 Thread Stephen Hemminger
On Sat, 26 Feb 2022 22:55:30 +0800 Weiguo Li wrote: > Add parentheses to 'if' clause, otherwise will enlarged the > chance of error return. > > Fixes: 44c730b0e37971 ("sched: add PIE based congestion management") > > Signed-off-by: Weiguo Li > --- > lib/sched/rte_pie.c | 6 +++--- > 1 file ch

[PATCH] ci: remove redundant drivers enabling

2022-02-26 Thread Thomas Monjalon
No need to explicitly enable drivers bus/vdev and mempool/ring. bus/vdev is always enabled since commit 2e33309ebe03 ("config: enable/disable drivers in Arm builds") mempool/ring is always enabled since commit 81c2337e044d ("build: make ring mempool driver mandatory") Signed-off-by: Thomas Monja

[PATCH] build: try to get kernel version from kernel source

2022-02-26 Thread Ferdinand Thiessen
When building the kernel modules, try to get the kernel version from the kernel sources first. This fixes the kernel modules installation directory if the target kernel version differs from the host kernel version, like for CI build or when packaging for linux distributions. Signed-off-by: Ferdina

Re: [PATCH] sched: add parentheses to if clause

2022-02-26 Thread Weiguo Li
On Sat, 26 Feb 2022 09:31:37 -0800, Stephen Hemminger wrote: > > Add parentheses to 'if' clause, otherwise will enlarged the > > chance of error return. > > > > Fixes: 44c730b0e37971 ("sched: add PIE based congestion management") > > > > Signed-off-by: Weiguo Li > > --- > > lib/sched/rte_pie.c

[PATCH v2] sched: remove useless malloc in pie data init

2022-02-26 Thread Weiguo Li
'rte_pie_rt_data_init(NULL)' is not expected, and it's ought to fail when this happen. The malloc inside this funtion didn't work. So remove the malloc otherwise will lead to a memory leak. Fixes: 44c730b0e37971 ("sched: add PIE based congestion management") Signed-off-by: Weiguo Li --- v2: * re

RE: [PATCH] net/ice: fix Tx offload path choice

2022-02-26 Thread Zhang, Qi Z
> -Original Message- > From: Liu, KevinX > Sent: Friday, December 24, 2021 11:09 PM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Yang, SteveX ; > Liu, KevinX ; sta...@dpdk.org > Subject: [PATCH] net/ice: fix Tx offload path choice > > Testpmd forwards packets in checksum mode that it needs t

[PATCH] common/mlx5: fix missing default devargs initialization

2022-02-26 Thread Michael Baum
Device arguments list is provided along with its identifier as part of EAL arguments. The arguments specified in the list are taken from it, and the rest is initialized to the default values. When no list is provided at all, all arguments should have been initialized to their default values. Howev