RE: [PATCH] app/testpmd: fix closing softnic port before ethdev ports

2023-03-17 Thread Jangra, Yogesh
-Original Message- From: Stephen Hemminger Sent: Friday, March 10, 2023 10:15 PM To: Ferruh Yigit Cc: Dumitrescu, Cristian ; Jangra, Yogesh ; Singh, Aman Deep ; Zhang, Yuying ; dev@dpdk.org; R, Kamalakannan ; Suresh Narayane, Harshad Subject: Re: [PATCH] app/testpmd: fix closing so

Re: [PATCH v2 1/1] test/mbuf: fix mbuf autotest when mbuf debug is enabled

2023-03-17 Thread Olivier Matz
On Thu, Mar 16, 2023 at 10:14:56PM +0300, Pavel Ivashchenko wrote: > How to reproduce: > > 1. Define RTE_LIBRTE_MBUF_DEBUG > 2. MALLOC_PERTURB_=178 DPDK_TEST=mbuf_autotest gdb --args > obj-x86_64-linux-gnu/app/test/dpdk-test --file-prefix=mbuf_autotest > >PANIC in rte_mbuf_sanity_check(): >

Re: [PATCH v2 1/1] test/mbuf: fix mbuf autotest when mbuf debug is enabled

2023-03-17 Thread David Marchand
On Fri, Mar 17, 2023 at 9:03 AM Olivier Matz wrote: > On Thu, Mar 16, 2023 at 10:14:56PM +0300, Pavel Ivashchenko wrote: > > How to reproduce: > > > > 1. Define RTE_LIBRTE_MBUF_DEBUG > > 2. MALLOC_PERTURB_=178 DPDK_TEST=mbuf_autotest gdb --args > > obj-x86_64-linux-gnu/app/test/dpdk-test --file-p

[PATCH] net/iavf: fix handle VF reset

2023-03-17 Thread Zhichao Zeng
This patch adds detection to avoid repeated calls to dev_reset. And enables the iavf_dev_watchdog to detect some VF reset without PF event (VIRTCHNL_EVENT_RESET_IMPENDING), one of which is after an NVM update. Fixes: e74e1bb6280d ("net/iavf: enable port reset") Fixes: 5e03e316c753 ("net/iavf: han

RE: [PATCH v4] net/ice: fix ice dcf control thread crash

2023-03-17 Thread Zhang, Qi Z
> -Original Message- > From: Ye, MingjinX > Sent: Friday, March 17, 2023 1:10 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; sta...@dpdk.org; Zhou, YidingX > ; Ye, MingjinX ; Zhang, > Ke1X ; Zhang, Qi Z > Subject: [PATCH v4] net/ice: fix ice dcf control thread crash > > The control thread

Re: [PATCH v5 2/2] eal: fix failure path race setting new thread affinity

2023-03-17 Thread David Marchand
On Thu, Mar 16, 2023 at 1:07 AM Tyler Retzlaff wrote: > > In rte_thread_create setting affinity after pthread_create may fail. > Such a failure should result in the entire rte_thread_create failing > but doesn't. > > Additionally if there is a failure to set affinity a race exists where > the crea

Re: [PATCH 2/2] app/testpmd: add testpmd based sleeping

2023-03-17 Thread Anthony Harivel
Ferruh Yigit, Mar 16, 2023 at 18:05: > Hi Anthony, > > What is the motivation here? Hi Ferruh, AFAIK testpmd is the reference tool used for CI and tests whether it is for functional or performance tests and I think it would be in everyone's interest to consume less CPU during them. Moreover, all

AES-GCM crypto design review

2023-03-17 Thread Suanming Mou
BEGIN:VCALENDAR METHOD:REQUEST PRODID:Microsoft Exchange Server 2010 VERSION:2.0 BEGIN:VTIMEZONE TZID:China Standard Time BEGIN:STANDARD DTSTART:16010101T00 TZOFFSETFROM:+0800 TZOFFSETTO:+0800 END:STANDARD BEGIN:DAYLIGHT DTSTART:16010101T00 TZOFFSETFROM:+0800 TZOFFSETTO:+0800 END:DAYLIGHT E

Canceled: AES-GCM crypto design review

2023-03-17 Thread Suanming Mou
BEGIN:VCALENDAR METHOD:CANCEL PRODID:Microsoft Exchange Server 2010 VERSION:2.0 BEGIN:VTIMEZONE TZID:China Standard Time BEGIN:STANDARD DTSTART:16010101T00 TZOFFSETFROM:+0800 TZOFFSETTO:+0800 END:STANDARD BEGIN:DAYLIGHT DTSTART:16010101T00 TZOFFSETFROM:+0800 TZOFFSETTO:+0800 END:DAYLIGHT EN

[dpdk-dev] [PATCH] doc: deprecation notice to remove net/bnx2x driver

2023-03-17 Thread jerinj
From: Jerin Jacob Starting from DPDK 23.07, the Marvell QLogic bnx2x driver will be removed. This decision has been made to alleviate the burden of maintaining a discontinued product. Signed-off-by: Jerin Jacob --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 file changed, 3 insertions(+)

Re: [PATCH v5 2/2] eal: fix failure path race setting new thread affinity

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 11:45:08AM +0100, David Marchand wrote: > On Thu, Mar 16, 2023 at 1:07 AM Tyler Retzlaff > wrote: > > > > In rte_thread_create setting affinity after pthread_create may fail. > > Such a failure should result in the entire rte_thread_create failing > > but doesn't. > > > > A

[PATCH] bus/auxiliary: support cleanup callback

2023-03-17 Thread Xueming Li
The bus cleanup callback is used to sunset all devices on bus gracefully. This patch supports the callback by unplug all devices on auxiliary bus. Signed-off-by: Xueming Li --- drivers/bus/auxiliary/auxiliary_common.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/dr

[PATCH v2] bus/auxiliary: support cleanup callback

2023-03-17 Thread Xueming Li
The bus cleanup callback is used to sunset all devices on bus gracefully. This patch supports the callback by unplug all devices on auxiliary bus. Signed-off-by: Xueming Li --- drivers/bus/auxiliary/auxiliary_common.c | 21 + 1 file changed, 21 insertions(+) diff --git a/dri

Re: [PATCH v4 1/2] testpmd: go back to using cmdline_interact

2023-03-17 Thread Olivier Matz
Hi Stephen, Thank you for having a look at this. On Wed, Mar 15, 2023 at 10:31:31AM -0700, Stephen Hemminger wrote: > The cmdline library poll function is broken on Windows > and was never tested, don't use it. > > Instead, use sigaction() to cancel read character on Unix OS's > and a new helper

Re: [PATCH v4 2/2] testpmd: enable interrupt in interactive mode

2023-03-17 Thread Olivier Matz
On Wed, Mar 15, 2023 at 10:31:32AM -0700, Stephen Hemminger wrote: > The setting in terminal handling for both Unix style and > Windows was not ensuring that Ctrl-C character would > cause interrupt. > > This is a first release bug. Testpmd interactive mode has > always disabled control-c handling

Re: [PATCH 2/2] app/testpmd: add testpmd based sleeping

2023-03-17 Thread Stephen Hemminger
On Fri, 17 Mar 2023 12:09:04 +0100 "Anthony Harivel" wrote: > Ferruh Yigit, Mar 16, 2023 at 18:05: > > Hi Anthony, > > > > What is the motivation here? > > Hi Ferruh, > > AFAIK testpmd is the reference tool used for CI and tests whether it is > for functional or performance tests and I think

Re: [PATCH v4 2/2] testpmd: enable interrupt in interactive mode

2023-03-17 Thread Stephen Hemminger
On Fri, 17 Mar 2023 17:20:59 +0100 Olivier Matz wrote: > On Wed, Mar 15, 2023 at 10:31:32AM -0700, Stephen Hemminger wrote: > > The setting in terminal handling for both Unix style and > > Windows was not ensuring that Ctrl-C character would > > cause interrupt. > > > > This is a first release b

Re: [PATCH v4 1/2] testpmd: go back to using cmdline_interact

2023-03-17 Thread Stephen Hemminger
On Fri, 17 Mar 2023 17:20:48 +0100 Olivier Matz wrote: > > > > +#ifdef RTE_EXEC_ENV_WINDOWS > > signal(SIGINT, signal_handler); > > signal(SIGTERM, signal_handler); > > +#else > > + /* Want read() not to be restarted on signal */ > > + struct sigaction action = { > > + .sa

[PATCH v5] testpmd: go back to using cmdline_interact

2023-03-17 Thread Stephen Hemminger
The cmdline_poll() function is broken and was not fully tested, don't use it. Instead, use sigaction() to cancel read character on Unix OS's and a new helper to cancel I/O on Windows. Fixes: 0fd1386c30c3 ("app/testpmd: cleanup cleanly from signal") Bugzilla ID: 1180 Signed-off-by: Stephen Hemming

RE: [dpdk-dev] [PATCH] doc: deprecation notice to remove net/bnx2x driver

2023-03-17 Thread Alok Prasad
> -Original Message- > From: jer...@marvell.com > Sent: 17 March 2023 18:00 > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; ferruh.yi...@amd.com; > andrew.rybche...@oktetlabs.ru; Alok Prasad > ; Devendra Singh Rawat ; Jerin > Jacob Kollanukkaran > Subject: [dpdk

Re: [PATCH v5 2/2] eal: fix failure path race setting new thread affinity

2023-03-17 Thread David Marchand
On Fri, Mar 17, 2023 at 3:50 PM Tyler Retzlaff wrote: > > > -struct thread_routine_ctx { > > > +struct thread_start_context { > > > rte_thread_func thread_func; > > > - void *routine_args; > > > + void *thread_args; > > > + const rte_thread_attr_t *thread_attr; > > > +

[PATCH v6] eal/unix: fix thread creation

2023-03-17 Thread David Marchand
From: Tyler Retzlaff In rte_thread_create setting affinity after pthread_create may fail. Such a failure should result in the entire rte_thread_create failing but doesn't. Additionally if there is a failure to set affinity a race exists where the creating thread will free ctx and depending on sc

Re: [PATCH 2/2] app/testpmd: add testpmd based sleeping

2023-03-17 Thread Robin Jarry
Anthony Harivel, Mar 16, 2023 at 16:14: > Sleep for an incremental amount of time if the fwd engine has processed > less than at least half a burst of packets (i.e 16pkts with default > setting) on a polling iteration of testpmd. > > Upon detecting the threshold of >= 16 pkts on an Rxq, reset the s

[PATCH 0/7] replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. This series covers the libraries and drivers that are built on Windows. The code has be converted to use the __atomic builtins but there are additional during conversion i notice that there

[PATCH 1/7] ring: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- lib/ring/rte_ring_core.h| 1 - lib/ring/rte_ring_generic_pvt.h | 10 ++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lib

[PATCH 3/7] dma/idxd: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- drivers/dma/idxd/idxd_internal.h | 3 +-- drivers/dma/idxd/idxd_pci.c | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drive

[PATCH 2/7] stack: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- lib/stack/rte_stack_lf_generic.h | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/stack/rte_stack_lf_generic.h b/lib/sta

[PATCH 4/7] net/ice: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- drivers/net/ice/ice_dcf.c| 1 - drivers/net/ice/ice_dcf_ethdev.c | 1 - drivers/net/ice/ice_ethdev.c | 10 ++ 3 files changed, 6 inse

[PATCH 6/7] net/null: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- drivers/net/null/rte_eth_null.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/net/null/rte_eth_null.c

[PATCH 7/7] net/ring: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- drivers/net/ring/rte_eth_ring.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/net/ring/rte_eth_ring.c

[PATCH 5/7] net/ixgbe: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
Replace the use of rte_atomic.h types and functions, instead use GCC supplied C++11 memory model builtins. Signed-off-by: Tyler Retzlaff --- drivers/net/ixgbe/ixgbe_bypass.c | 1 - drivers/net/ixgbe/ixgbe_ethdev.c | 12 ++-- drivers/net/ixgbe/ixgbe_ethdev.h | 3 ++- drivers/net/ixgbe/i

Re: [PATCH 1/7] ring: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 01:19:42PM -0700, Tyler Retzlaff wrote: > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > Signed-off-by: Tyler Retzlaff > --- > lib/ring/rte_ring_core.h| 1 - > lib/ring/rte_ring_generic_pvt.h | 10

Re: [PATCH 4/7] net/ice: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 01:19:45PM -0700, Tyler Retzlaff wrote: > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > Signed-off-by: Tyler Retzlaff > --- > drivers/net/ice/ice_dcf.c| 1 - > drivers/net/ice/ice_dcf_ethdev.c |

Re: [PATCH 6/7] net/null: replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 01:19:47PM -0700, Tyler Retzlaff wrote: > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > Signed-off-by: Tyler Retzlaff > --- > drivers/net/null/rte_eth_null.c | 20 ++-- > 1 file changed, 10

Re: [PATCH v5] testpmd: go back to using cmdline_interact

2023-03-17 Thread Olivier Matz
On Fri, Mar 17, 2023 at 09:59:41AM -0700, Stephen Hemminger wrote: > The cmdline_poll() function is broken and was > not fully tested, don't use it. > > Instead, use sigaction() to cancel read character on Unix OS's > and a new helper to cancel I/O on Windows. > > Fixes: 0fd1386c30c3 ("app/testpm

Re: [PATCH v5 2/2] eal: fix failure path race setting new thread affinity

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 07:51:25PM +0100, David Marchand wrote: > On Fri, Mar 17, 2023 at 3:50 PM Tyler Retzlaff > wrote: > > > > -struct thread_routine_ctx { > > > > +struct thread_start_context { > > > > rte_thread_func thread_func; > > > > - void *routine_args; > > > > + voi

Re: [PATCH v6] eal/unix: fix thread creation

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 07:52:29PM +0100, David Marchand wrote: > From: Tyler Retzlaff > > In rte_thread_create setting affinity after pthread_create may fail. > Such a failure should result in the entire rte_thread_create failing > but doesn't. > > Additionally if there is a failure to set affi

Re: [PATCH 0/7] replace rte atomics with GCC builtin atomics

2023-03-17 Thread Stephen Hemminger
On Fri, 17 Mar 2023 13:19:41 -0700 Tyler Retzlaff wrote: > Replace the use of rte_atomic.h types and functions, instead use GCC > supplied C++11 memory model builtins. > > This series covers the libraries and drivers that are built on Windows. > > The code has be converted to use the __atomic b

Re: [PATCH 0/7] replace rte atomics with GCC builtin atomics

2023-03-17 Thread Tyler Retzlaff
On Fri, Mar 17, 2023 at 02:42:26PM -0700, Stephen Hemminger wrote: > On Fri, 17 Mar 2023 13:19:41 -0700 > Tyler Retzlaff wrote: > > > Replace the use of rte_atomic.h types and functions, instead use GCC > > supplied C++11 memory model builtins. > > > > This series covers the libraries and driver

[PATCH 2/6] net/ixgbe: use rte thread API

2023-03-17 Thread Tyler Retzlaff
Update driver to use rte thread API where available instead of pthread as a prerequisite to removing pthread stubs on Windows. Signed-off-by: Tyler Retzlaff --- drivers/net/ixgbe/ixgbe_ethdev.c | 10 +- drivers/net/ixgbe/ixgbe_ethdev.h | 2 +- 2 files changed, 6 insertions(+), 6 deletio

[PATCH 0/6] windows: remove most pthread lifetime shim functions

2023-03-17 Thread Tyler Retzlaff
Adopt rte thread APIs in code built for Windows to decouple it from the pthread shim. Remove most of the pthread_xxx lifetime shim functions, only pthread_create remains while we wait for rte_ctrl_thread_create removal. Tyler Retzlaff (6): dma/skeleton: use rte thread API net/ixgbe: use rte t

[PATCH 3/6] net/ice: use rte thread API

2023-03-17 Thread Tyler Retzlaff
Update driver to use rte thread API where available instead of pthread as a prerequisite to removing pthread stubs on Windows. Signed-off-by: Tyler Retzlaff --- drivers/net/ice/ice_dcf_parent.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/net/ice/ice_dc

[PATCH 1/6] dma/skeleton: use rte thread API

2023-03-17 Thread Tyler Retzlaff
Update driver to use rte thread API where available instead of pthread as a prerequisite to removing pthread stubs on Windows. Signed-off-by: Tyler Retzlaff --- drivers/dma/skeleton/skeleton_dmadev.c | 15 --- drivers/dma/skeleton/skeleton_dmadev.h | 4 ++-- 2 files changed, 10 inse

[PATCH 4/6] net/iavf: use rte thread API

2023-03-17 Thread Tyler Retzlaff
Update driver to use rte thread API where available instead of pthread as a prerequisite to removing pthread stubs on Windows. Signed-off-by: Tyler Retzlaff --- drivers/net/iavf/iavf_vchnl.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/iavf/iavf_vc

[PATCH 5/6] eal: use rte thread API

2023-03-17 Thread Tyler Retzlaff
Update driver to use rte thread API where available instead of pthread as a prerequisite to removing pthread stubs on Windows. There is a single pthread_create still in use until rte_ctrl_thread_create is removed. Signed-off-by: Tyler Retzlaff --- lib/eal/common/eal_common_thread.c | 4 ++-- l

[PATCH 6/6] windows: remove most pthread lifetime shim functions

2023-03-17 Thread Tyler Retzlaff
Remove most of the pthread_xxx lifetime shim functions, only pthread_create remains while we wait for rte_ctrl_thread_create removal. Signed-off-by: Tyler Retzlaff --- lib/eal/windows/include/pthread.h | 99 --- 1 file changed, 99 deletions(-) diff --git a/li

[PATCH 1/2] net/mana: avoid unnecessary assignments in data path

2023-03-17 Thread longli
From: Long Li Unnecessary assignments involve memset and waste CPU cycles. Removing them to reduce CPU usage. Fixes: 517ed6e2d590 ("net/mana: add basic driver with build environment") Cc: sta...@dpdk.org Signed-off-by: Long Li --- drivers/net/mana/gdma.c | 11 ++- drivers/net/mana/mana

[PATCH 2/2] net/mana: optimize completion queue polling by processing a batch at a time

2023-03-17 Thread longli
From: Long Li We can poll completion queues in a batch to speed up completion processing. Also, the completion data doesn't need to be copied out of the hardware queue and they can be passed as pointers to be consumed by the RX/TX code. Fixes: 517ed6e2d590 ("net/mana: add basic driver with build