RE: [PATCH] child process synchronization NIC startup parameters

2023-07-05 Thread Yang, Qiming
Hi, kaisen Your patch missed prefix app/test. > -Original Message- > From: You, KaisenX > Sent: Wednesday, July 5, 2023 5:35 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Zhou, YidingX > ; You, KaisenX ; > sta...@dpdk.org > Subject: [PATCH] child process synchronization NIC startup parameter

[PATCH v2] mailmap: fix sorting

2023-07-05 Thread Stephen Hemminger
The mailmap file is supposed to be in sorted order, but several entries are in the wrong place. Signed-off-by: Stephen Hemminger --- v2 - use en_us.UTF-8 sort order .mailmap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.mailmap b/.mailmap index d200f363394d..bfd3528

[PATCH v2] net/iavf: fix Tunnel TSO path selecting.

2023-07-05 Thread Ke Xu
IAVF currently supports TSO and Tunnel TSO. Both these two features are implemented in scalar path. As there are missed flags for Tunnel TSO, it selects vector paths wrongly when only Tunnel TSO is enabled after introducing the patch "net/iavf: add offload path for Tx AVX512". This patch added

Re: [PATCH] linux/igb_uio: make module parameters visible in sysfs

2023-07-05 Thread Stephen Hemminger
On Sun, 21 Aug 2022 15:12:13 -0700 Shinae Woo wrote: > - explicitly set default value for intr_mode > - give read permission on wc_activate > - applying patch gives below visibility > > ``` > $ more /sys/module/igb_uio/parameters/* | cat > :: > /sys/module/igb_uio/parameters/intr_mod

Re: [PATCH v2] mailmap: fix sorting

2023-07-05 Thread Stephen Hemminger
On Wed, 5 Jul 2023 19:32:48 -0700 Stephen Hemminger wrote: > The mailmap file is supposed to be in sorted order, > but several entries are in the wrong place. > > Signed-off-by: Stephen Hemminger > --- > v2 - use en_us.UTF-8 sort order > > .mailmap | 6 +++--- > 1 file changed, 3 insertions(

[PATCH v2] net/iavf: fix Tunnel TSO path selecting.

2023-07-05 Thread Ke Xu
IAVF currently supports TSO and Tunnel TSO. Both these two features are implemented in scalar path. As there are missed flags for Tunnel TSO, it selects vector paths wrongly when only Tunnel TSO is enabled after introducing the patch "net/iavf: add offload path for Tx AVX512". This patch added

Re: [PATCH v2] app/testpmd: fix invalid queue ID when start port

2023-07-05 Thread lihuisong (C)
在 2023/7/5 19:41, Ferruh Yigit 写道: On 7/5/2023 10:40 AM, lihuisong (C) wrote: 在 2023/7/5 16:02, Ferruh Yigit 写道: On 7/5/2023 4:16 AM, lihuisong (C) wrote: 在 2023/7/4 18:59, Ferruh Yigit 写道: On 7/4/2023 9:45 AM, Jie Hai wrote: Function update_queue_state updates queue state of all queues of

Re: [PATCH v2] meson: add support for clang LTO

2023-07-05 Thread Stephen Hemminger
On Thu, 31 Mar 2022 21:54:35 -0700 Mahdi Rakhshandehroo wrote: > Currently, building DPDK with clang + LTO is unsupported, which is a > showstopper for cross-language interprocedural optimizations. The root > cause is that pmdinfogen expects to scan through the section headers of > generated ELF

Re: [PATCH v2 1/2] eal: expose lcore pthread id

2023-07-05 Thread Stephen Hemminger
On Tue, 29 Nov 2022 14:04:45 -0800 Tyler Retzlaff wrote: > > Markus and I ultimately use the function in the patch to call > > rte_thread_setname() (which takes the pthread id as an argument) to rename > > our > > lcore workers from "lcore-worker-X" to something more meaningful in the > > scope

[PATCH] net/iavf: fix avx2 path selection

2023-07-05 Thread Zhichao Zeng
The AVX2 path does not support outer checksum offload, when AVX2 is forcibly selected and outer checksum offload is configured, the basic Tx path will be selected to ensure proper functionality. Fixes: 5712bf9d6e14 ("net/iavf: add Tx AVX2 offload path") Signed-off-by: Zhichao Zeng --- drivers/ne

[PATCH] net/iavf: fix AVX2 path selection

2023-07-05 Thread Zhichao Zeng
The AVX2 path does not support outer checksum offload, when AVX2 is forcibly selected and outer checksum offload is configured, the basic Tx path will be selected to ensure proper functionality. Fixes: 5712bf9d6e14 ("net/iavf: add Tx AVX2 offload path") Signed-off-by: Zhichao Zeng --- drivers/ne

RE: [PATCH] net/iavf: fix AVX2 path selection

2023-07-05 Thread Xu, Ke1
> -Original Message- > From: Zeng, ZhichaoX > Sent: Thursday, July 6, 2023 11:20 AM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Xu, Ke1 ; > Zeng, ZhichaoX ; Wu, Jingjing > ; Xing, Beilei ; Lu, > Wenzhuo > Subject: [PATCH] net/iavf: fix AVX2 path selection > > The AVX2 path does not support

Re: [v2 1/2] doc: add policy for adding vendor PMD specific examples

2023-07-05 Thread Jerin Jacob
On Wed, Jul 5, 2023 at 3:26 PM Hemant Agrawal wrote: > > This patch update the dpdk sample app policy to support > vendor PMD specific test examples in the respective drivers > sub-directory in examples. > > Signed-off-by: Hemant Agrawal > Acked-by: Jerin Jacob > --- > doc/guides/sample_app_ug/

RE: [PATCH v1 2/2] examples/multi_process: fix memory leak

2023-07-05 Thread Wu, Wenjun1
Hi Chengwen, Thanks for reviewing. The memory leak occurs similar as what mentioned in https://patches.dpdk.org/project/dpdk/patch/20230705092511.362484-2-wenjun1...@intel.com/. I will perfect the commit description in V2 version. Thanks, Wenjun > -Original Message- > From: fengchengwen

Re: [PATCH v2 1/2] eal: expose lcore pthread id

2023-07-05 Thread Michael Pfeiffer
On Wed, 2023-07-05 at 19:57 -0700, Stephen Hemminger wrote: > On Tue, 29 Nov 2022 14:04:45 -0800 > Tyler Retzlaff wrote: > > > > Markus and I ultimately use the function in the patch to call > > > rte_thread_setname() (which takes the pthread id as an argument) to > > > rename our > > > lcore wor

RE: [PATCH] ice: fix build error on 32bit configure

2023-07-05 Thread Zhang, Qi Z
> -Original Message- > From: Luca Boccassi > Sent: Thursday, July 6, 2023 3:44 AM > To: Zhou, YidingX ; dev@dpdk.org > Subject: Re: [PATCH] ice: fix build error on 32bit configure > > On Wed, 5 Jul 2023 at 08:21, Yiding Zhou wrote: > > > > Replace 'rte_memcpy' with 'memcpy' like other

RE: [PATCH] net/iavf: fix AVX2 path selection

2023-07-05 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Ke1 > Sent: Thursday, July 6, 2023 11:52 AM > To: Zeng, ZhichaoX ; dev@dpdk.org > Cc: Zhang, Qi Z ; Wu, Jingjing ; > Xing, Beilei ; Lu, Wenzhuo > Subject: RE: [PATCH] net/iavf: fix AVX2 path selection > > > > -Original Message- > > From: Zeng,

RE: [PATCH v2] net/iavf: fix Tunnel TSO path selecting.

2023-07-05 Thread Zeng, ZhichaoX
> -Original Message- > From: Xu, Ke1 > Sent: Thursday, July 6, 2023 10:45 AM > To: dev@dpdk.org > Cc: Xu, Ke1 ; Zeng, ZhichaoX > ; Lu, Wenzhuo ; > sta...@dpdk.org > Subject: [PATCH v2] net/iavf: fix Tunnel TSO path selecting. > > IAVF currently supports TSO and Tunnel TSO. Both these two

RE: [PATCH v2] net/iavf: fix Tunnel TSO path selecting.

2023-07-05 Thread Zhang, Qi Z
> -Original Message- > From: Zeng, ZhichaoX > Sent: Thursday, July 6, 2023 2:08 PM > To: Xu, Ke1 ; dev@dpdk.org > Cc: Lu, Wenzhuo ; sta...@dpdk.org > Subject: RE: [PATCH v2] net/iavf: fix Tunnel TSO path selecting. > > > -Original Message- > > From: Xu, Ke1 > > Sent: Thursday,

RE: release candidate 23.07-rc2

2023-07-05 Thread Xu, HailinX
> -Original Message- > From: Xu, HailinX > Sent: Thursday, June 29, 2023 2:50 PM > To: Thomas Monjalon ; annou...@dpdk.org; > dev@dpdk.org > Cc: Kovacevic, Marko ; Mcnamara, John > ; Richardson, Bruce > ; Ferruh Yigit > Subject: RE: release candidate 23.07-rc2 > > > -Original Message-

<    1   2