[PATCH v5] common/idpf: refine capability get

2023-04-24 Thread beilei . xing
From: Beilei Xing Initialize required capability in PMD, and refine idpf_vc_caps_get function. Then different PMDs can require different capability. Signed-off-by: Beilei Xing --- v5 changes: - No need to move check_pf_reset_done and mbx_init from common module. V4 changes: - No need to requi

RE: [PATCH 03/10] common/idpf: support queue groups add/delete

2023-04-24 Thread Liu, Mingxia
> -Original Message- > From: Xing, Beilei > Sent: Friday, April 21, 2023 2:51 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH 03/10] common/idpf: support queue groups add/delete > > From: Beilei Xing > > This patch adds queue group add/dele

[PATCH] net/idpf: add VF support

2023-04-24 Thread beilei . xing
From: Beilei Xing Support VF whose device id is 0x145c. Signed-off-by: Beilei Xing --- v3 change: - move check reset done function and mail box init to common module. v2 change: - Rebase code based on new patchset: https://patches.dpdk.org/project/dpdk/cover/20230404124112.71703-1-beilei.

RE: [PATCH 03/10] common/idpf: support queue groups add/delete

2023-04-24 Thread Liu, Mingxia
> -Original Message- > From: Xing, Beilei > Sent: Friday, April 21, 2023 2:51 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH 03/10] common/idpf: support queue groups add/delete > > From: Beilei Xing > > This patch adds queue group add/dele

[PATCH v3] net/idpf: add VF support

2023-04-24 Thread beilei . xing
From: Beilei Xing Support VF whose device id is 0x145c. Signed-off-by: Beilei Xing --- v3 change: - move check reset done function and mail box init to common module. v2 change: - Rebase code based on new patchset: https://patches.dpdk.org/project/dpdk/cover/20230404124112.71703-1-beilei.

RE: [PATCH 04/10] net/cpfl: add haipin queue group during vpotr init

2023-04-24 Thread Liu, Mingxia
> -Original Message- > From: Xing, Beilei > Sent: Friday, April 21, 2023 2:51 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH 04/10] net/cpfl: add haipin queue group during vpotr init [Liu, Mingxia] vpotr , spelling error? > > From: Beilei Xi

[PATCH] cryptodev: clarify error codes returned

2023-04-24 Thread Anoob Joseph
When symmetric sessions are created, it may fail due to non-critical errors. When PMD doesn't support the specific combination that application requested, it can return -ENOTSUP which can be handled so in application. The API is already setting rte_errno according to the reason of the failure. Clar

[PATCH v3 0/7] fix and enhance idpf and cpfl timestamp

2023-04-24 Thread Wenjing Qiao
Using alarm to save main time to solve timestamp roll over issue. Enhance timestamp offload feature support for ACC. Ajust timestamp mbuf registering at dev start. Wenjing Qiao (7): common/idpf: fix 64b timestamp roll over issue net/idpf: save main time by alarm net/cpfl: save main time by a

[PATCH v3 1/7] common/idpf: fix 64b timestamp roll over issue

2023-04-24 Thread Wenjing Qiao
Reading MTS register at first packet will cause timestamp roll over issue. To support calculating 64b timestamp, need an alarm to save main time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/co

[PATCH v3 2/7] net/idpf: save main time by alarm

2023-04-24 Thread Wenjing Qiao
Using alarm to save main time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/net/idpf/idpf_ethdev.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/idpf/idpf_ethdev

[PATCH v3 3/7] net/cpfl: save main time by alarm

2023-04-24 Thread Wenjing Qiao
Using alarm to save main time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/net/cpfl/cpfl_ethdev.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev

[PATCH v3 4/7] common/idpf: enhance timestamp offload feature for ACC

2023-04-24 Thread Wenjing Qiao
For ACC, getting main time from MTS registers by shared memory. Notice: it is a workaround, and it will be removed after generic solution are provided. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- config/meson.build

[PATCH v3 5/7] common/idpf: add timestamp enable flag for rxq

2023-04-24 Thread Wenjing Qiao
A rxq can be configured with timestamp offload. So, add timestamp enable flag for rxq. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/common/idpf/idpf_common_rxtx.c | 3 ++- drivers/common/idpf/idpf

[PATCH v3 6/7] net/cpfl: register timestamp mbuf when starting dev

2023-04-24 Thread Wenjing Qiao
Due to only support timestamp at port level, registering timestamp mbuf should be at dev start stage. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/net/cpfl/cpfl_ethdev.c | 7 +++ drivers/net/c

[PATCH v3 7/7] net/idpf: register timestamp mbuf when starting dev

2023-04-24 Thread Wenjing Qiao
Due to only support timestamp at port level, registering timestamp mbuf should be at dev start stage. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/net/idpf/idpf_ethdev.c | 7 +++ drivers/net/i

RE: [PATCH 06/10] net/cpfl: support hairpin queue configuration

2023-04-24 Thread Liu, Mingxia
> -Original Message- > From: Xing, Beilei > Sent: Friday, April 21, 2023 2:51 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Wang, Xiao W > Subject: [PATCH 06/10] net/cpfl: support hairpin queue configuration > > From: Beilei Xing > > This patch supports

[PATCH v2] net/ixgbe: add proper memory barriers for some Rx functions

2023-04-24 Thread Min Zhou
Segmentation fault has been observed while running the ixgbe_recv_pkts_lro() function to receive packets on the Loongson 3C5000 processor which has 64 cores and 4 NUMA nodes. >From the ixgbe_recv_pkts_lro() function, we found that as long as the first packet has the EOP bit set, and the length of

[Bug 1220] examples/ip_pipeline build failure with gcc 13

2023-04-24 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1220 Bug ID: 1220 Summary: examples/ip_pipeline build failure with gcc 13 Product: DPDK Version: 23.03 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

RE: [PATCH v2 01/15] common/idpf: remove virtchnl related shared code

2023-04-24 Thread Zhang, Qi Z
> -Original Message- > From: Qiao, Wenjing > Sent: Friday, April 21, 2023 4:40 PM > To: Wu, Jingjing ; Xing, Beilei > ; Zhang, Qi Z > Cc: dev@dpdk.org; Qiao, Wenjing > Subject: [PATCH v2 01/15] common/idpf: remove virtchnl related shared > code > > Since virtchnl related shared code

RE: [PATCH v2 11/15] common/idpf: allocate static buffer at initialization

2023-04-24 Thread Zhang, Qi Z
> -Original Message- > From: Qiao, Wenjing > Sent: Friday, April 21, 2023 4:41 PM > To: Wu, Jingjing ; Xing, Beilei > ; Zhang, Qi Z > Cc: dev@dpdk.org; Qiao, Wenjing ; Pau, > Christopher > Subject: [PATCH v2 11/15] common/idpf: allocate static buffer at > initialization > > Some OSs

[PATCH v3 01/11] net/octeon_ep: support cnf95n and cnf95o SoC

2023-04-24 Thread Sathesh Edara
Adds the required functionality in the Octeon endpoint driver to support the cnf95n and cnf95o endpoint device. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx2_ep_vf.h| 2 ++ drivers/net/octeon_ep/otx_ep_ethdev.c | 13 +++-- 2 files changed, 13 insertions(+), 2 deletions

[PATCH v3 05/11] devtools: add acronym in dictionary for commit checks

2023-04-24 Thread Sathesh Edara
ISM -> Interrupt Status Messages Signed-off-by: Sathesh Edara --- devtools/words-case.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/devtools/words-case.txt b/devtools/words-case.txt index 53e029a958..3a7af902bd 100644 --- a/devtools/words-case.txt +++ b/devtools/words-case.txt @@ -35,6

[PATCH v3 06/11] net/octeon_ep: support ISM

2023-04-24 Thread Sathesh Edara
Adds the ISM specific functionality. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 35 +++-- drivers/net/octeon_ep/cnxk_ep_vf.h| 12 ++ drivers/net/octeon_ep/otx2_ep_vf.c| 45 ++--- drivers/net/octeon_ep/otx2_ep_vf.h| 14

[PATCH v3 07/11] net/octeon_ep: flush pending DMA operations

2023-04-24 Thread Sathesh Edara
Flushes the pending DMA operations while reading the packets by reading control and status register. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx_ep_common.h | 8 drivers/net/octeon_ep/otx_ep_rxtx.c | 4 2 files changed, 12 insertions(+) diff --git a/drivers/net/oc

[PATCH v3 08/11] net/octeon_ep: update queue size checks

2023-04-24 Thread Sathesh Edara
Updates the output queue size checks to ensure that queue is larger than backpressure watermark. Add setting of default queue sizes to the minimum so that applications like testpmd can be started without explicit queue size arguments. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx_ep

[PATCH v3 09/11] net/octeon_ep: support mailbox between VF and PF

2023-04-24 Thread Sathesh Edara
Adds the mailbox communication between VF and PF and supports the following mailbox messages. - Get and set MAC address - Get link information - Get stats - Set and get MTU - Send notification to PF Signed-off-by: Sathesh Edara --- doc/guides/nics/features/octeon_ep.ini | 1 + drivers/net/oct

[PATCH v3 11/11] net/octeon_ep: set secondary process dev ops

2023-04-24 Thread Sathesh Edara
Sets the dev ops and transmit/receive callbacks for secondary process. Signed-off-by: Sathesh Edara --- doc/guides/nics/features/octeon_ep.ini | 1 + drivers/net/octeon_ep/otx_ep_ethdev.c | 22 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/doc/guides/ni

Re: [PATCH 1/1] net/ixgbe: add a proper memory barrier for LoongArch

2023-04-24 Thread zhoumin
Hi Bibo, On Sat, Apr 22, 2023 at 8:29AM, bibo, mao wrote: 在 2023/4/21 9:12, zhoumin 写道: On Fri, Apr 7, 2023 at 4:50PM, Min Zhou wrote: Segmentation fault has been observed while running the ixgbe_recv_pkts_lro() function to receive packets on the Loongson 3C5000 processor which has 64 cores

[PATCH v3 08/11] net/octeon_ep: update queue size checks

2023-04-24 Thread Sathesh Edara
Updates the output queue size checks to ensure that queue is larger than backpressure watermark. Add setting of default queue sizes to the minimum so that applications like testpmd can be started without explicit queue size arguments. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx_ep

[PATCH v3 11/11] net/octeon_ep: set secondary process dev ops

2023-04-24 Thread Sathesh Edara
Sets the dev ops and transmit/receive callbacks for secondary process. Signed-off-by: Sathesh Edara --- doc/guides/nics/features/octeon_ep.ini | 1 + drivers/net/octeon_ep/otx_ep_ethdev.c | 22 +++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/doc/guides/ni

[PATCH v4] net/idpf: add VF support

2023-04-24 Thread beilei . xing
From: Beilei Xing Support VF whose device id is 0x145c. Signed-off-by: Beilei Xing --- v4 change: - refine if condition. v3 change: - move check reset done function and mail box init to common module. v2 change: - Rebase code based on new patchset: https://patches.dpdk.org/project/dpdk/

[RFC 0/3] introduce coroutine library

2023-04-24 Thread Chengwen Feng
This patchset introduces the coroutine library which will help refactor the hns3 PMD's reset process. The hns3 single function reset process consists of the following steps: 1.stop_service(); 2.prepare_reset(); 3.delay(100ms); 4.notify_hw(); 5.wait_hw_reset_done(); // multiple

[RFC 2/3] examples/coroutine: support coroutine examples

2023-04-24 Thread Chengwen Feng
This patch adds coroutine example, usage: 1. start examples: dpdk-coroutine -a :7d:00.2 -l 10-11 2. will output: Start yield coroutine test! I am in yield coroutine 111! I am in yield coroutine 222! I am in yield coroutine 333! I am in yield coroutine 111!

[RFC 3/3] net/hns3: refactor reset process with coroutine

2023-04-24 Thread Chengwen Feng
This patch adds reset mode 1 which use coroutine to refactor the reset process. And this just a demo which only function at PF driver. Using the coroutine will make the reset process more intuitive. Signed-off-by: Chengwen Feng --- drivers/net/hns3/hns3_ethdev.c | 217 ++

[RFC 1/3] lib/coroutine: add coroutine library

2023-04-24 Thread Chengwen Feng
This patch adds coroutine library. The main elements are: 1. scheduler: container of coroutines, which is responsible for scheduling coroutine. 2. coroutine: Minimum scheduling unit, it should associated to one scheduler. In the coroutine callback, application could invoke rte_co_yield() to give u

[PATCH v2] dts: replace pexpect with fabric

2023-04-24 Thread Juraj Linkeš
Pexpect is not a dedicated SSH connection library while Fabric is. With Fabric, all SSH-related logic is provided and we can just focus on what's DTS specific. Signed-off-by: Juraj Linkeš --- doc/guides/tools/dts.rst | 29 +- dts/conf.yaml |

RE: [EXT] [PATCH v1] crypto/ipsec_mb: add digest encrypted feature in AESNI_MB

2023-04-24 Thread Dooley, Brian
Hi Akhil, > -Original Message- > From: Akhil Goyal > Sent: Monday 24 April 2023 06:46 > To: Dooley, Brian ; Ji, Kai ; De > Lara Guarch, Pablo > Cc: dev@dpdk.org > Subject: RE: [EXT] [PATCH v1] crypto/ipsec_mb: add digest encrypted feature > in AESNI_MB > > > Subject: [EXT] [PATCH v1] cr

[PATCH v3 02/11] net/octeon_ep: support CNX10K series SoC

2023-04-24 Thread Sathesh Edara
Adds the required functionality in the Octeon endpoint driver to support the following CNX10K series endpoint devices. - CN10KA - CN10KB - CNF10KA - CNF10KB Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.h| 5 - drivers/net/octeon_ep/otx_ep_ethdev.c | 21 +

[PATCH v3 03/11] net/octeon_ep: support error propagation

2023-04-24 Thread Sathesh Edara
Adds detection of loop limits being hit, and propagate errors up the call chain when this happens. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 51 +++ drivers/net/octeon_ep/otx2_ep_vf.c| 49 ++ drivers/net/octeon_ep/otx_ep_common.

[PATCH v3 04/11] net/octeon_ep: support IQ/OQ reset

2023-04-24 Thread Sathesh Edara
Adds input and output queue reset functionality, also receive queue interrupt enable and disable functionality. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx2_ep_vf.c| 193 +- drivers/net/octeon_ep/otx2_ep_vf.h| 61 ++-- drivers/net/octeon_ep/otx

[PATCH v3 00/11] extend octeon ep driver functionality

2023-04-24 Thread Sathesh Edara
This patch set adds the following support to octeon_ep driver - extends support for newer SoCs - support new features like IQ/OQ reset, ISM, mailbox between VF and PF and sets the watermark level for output queues. V3 changes: - Addresses V2 review comments Sathesh Edara (11): net/octeon_ep: su

[PATCH v3 00/11] extend octeon ep driver functionality

2023-04-24 Thread Sathesh Edara
This patch set adds the following support to octeon_ep driver - extends support for newer SoCs - support new features like IQ/OQ reset, ISM, mailbox between VF and PF and sets the watermark level for output queues. V3 changes: - Addresses V2 review comments Sathesh Edara (11): net/octeon_ep: su

[PATCH v3 01/11] net/octeon_ep: support cnf95n and cnf95o SoC

2023-04-24 Thread Sathesh Edara
Adds the required functionality in the Octeon endpoint driver to support the cnf95n and cnf95o endpoint device. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx2_ep_vf.h| 2 ++ drivers/net/octeon_ep/otx_ep_ethdev.c | 13 +++-- 2 files changed, 13 insertions(+), 2 deletions

[PATCH v3 02/11] net/octeon_ep: support CNX10K series SoC

2023-04-24 Thread Sathesh Edara
Adds the required functionality in the Octeon endpoint driver to support the following CNX10K series endpoint devices. - CN10KA - CN10KB - CNF10KA - CNF10KB Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.h| 5 - drivers/net/octeon_ep/otx_ep_ethdev.c | 21 +

[PATCH v3 03/11] net/octeon_ep: support error propagation

2023-04-24 Thread Sathesh Edara
Adds detection of loop limits being hit, and propagate errors up the call chain when this happens. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 51 +++ drivers/net/octeon_ep/otx2_ep_vf.c| 49 ++ drivers/net/octeon_ep/otx_ep_common.

[PATCH] common/idpf: refine header file include

2023-04-24 Thread Qi Zhang
Replace #include with #include "filename" for local header file. Signed-off-by: Qi Zhang --- drivers/common/idpf/idpf_common_device.c | 4 ++-- drivers/common/idpf/idpf_common_device.h | 6 +++--- drivers/common/idpf/idpf_common_rxtx_avx512.c | 4 ++-- drivers/common/idpf/idpf_common_

[PATCH] common/idpf: remove unnecessary compile option

2023-04-24 Thread Qi Zhang
Remove compile option "__KERNEL" which should not be considered in DPDK. Also only #include in idpf_osdep.h. Signed-off-by: Qi Zhang --- drivers/common/idpf/base/idpf_controlq.c | 5 - drivers/common/idpf/base/idpf_controlq.h | 8 drivers/common/idpf/base/idpf_controlq_api.

[PATCH 1/2] common/sfc_efx/base: add API to drop MAE action resource IDs

2023-04-24 Thread Ivan Malov
When the client driver (the DPDK one, for instance) parses user flow actions, it ends up with an action set specification. Next, in case there are any FW resource-backed actions, like COUNT or SET_DST_MAC, the driver allocates these resources and indicates their IDs in the action set specification.

[PATCH 2/2] net/sfc: invalidate dangling MAE flow action FW resource IDs

2023-04-24 Thread Ivan Malov
When reinserting a flow (on port restart, for instance) FW resource IDs found in the action set specification need to be invalidated so that the new (reallocated) FW resource IDs can be accepted by libefx again. Fixes: 1bbd1ec2348a ("net/sfc: support action VXLAN encap in MAE backend") Cc: sta...@

[PATCH v3 10/11] net/octeon_ep: set watermark for output queues

2023-04-24 Thread Sathesh Edara
Sets the watermark level for SDP output queues to send backpressure to NIX, when available Rx buffers fall below watermark. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 7 ++- drivers/net/octeon_ep/otx_ep_common.h | 1 + 2 files changed, 7 insertions(+), 1 deletio

[PATCH v3 04/11] net/octeon_ep: support IQ/OQ reset

2023-04-24 Thread Sathesh Edara
Adds input and output queue reset functionality, also receive queue interrupt enable and disable functionality. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx2_ep_vf.c| 193 +- drivers/net/octeon_ep/otx2_ep_vf.h| 61 ++-- drivers/net/octeon_ep/otx

[PATCH v3 07/11] net/octeon_ep: flush pending DMA operations

2023-04-24 Thread Sathesh Edara
Flushes the pending DMA operations while reading the packets by reading control and status register. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/otx_ep_common.h | 8 drivers/net/octeon_ep/otx_ep_rxtx.c | 4 2 files changed, 12 insertions(+) diff --git a/drivers/net/oc

[PATCH v3 06/11] net/octeon_ep: support ISM

2023-04-24 Thread Sathesh Edara
Adds the ISM specific functionality. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 35 +++-- drivers/net/octeon_ep/cnxk_ep_vf.h| 12 ++ drivers/net/octeon_ep/otx2_ep_vf.c| 45 ++--- drivers/net/octeon_ep/otx2_ep_vf.h| 14

[PATCH v3 09/11] net/octeon_ep: support mailbox between VF and PF

2023-04-24 Thread Sathesh Edara
Adds the mailbox communication between VF and PF and supports the following mailbox messages. - Get and set MAC address - Get link information - Get stats - Set and get MTU - Send notification to PF Signed-off-by: Sathesh Edara --- doc/guides/nics/features/octeon_ep.ini | 1 + drivers/net/oct

[PATCH v3 05/11] devtools: add acronym in dictionary for commit checks

2023-04-24 Thread Sathesh Edara
ISM -> Interrupt Status Messages Signed-off-by: Sathesh Edara --- devtools/words-case.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/devtools/words-case.txt b/devtools/words-case.txt index 53e029a958..3a7af902bd 100644 --- a/devtools/words-case.txt +++ b/devtools/words-case.txt @@ -35,6

[PATCH v3 10/11] net/octeon_ep: set watermark for output queues

2023-04-24 Thread Sathesh Edara
Sets the watermark level for SDP output queues to send backpressure to NIX, when available Rx buffers fall below watermark. Signed-off-by: Sathesh Edara --- drivers/net/octeon_ep/cnxk_ep_vf.c| 7 ++- drivers/net/octeon_ep/otx_ep_common.h | 1 + 2 files changed, 7 insertions(+), 1 deletio

[Bug 1221] PPC64le memory init use mmap return EBUSY

2023-04-24 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1221 Bug ID: 1221 Summary: PPC64le memory init use mmap return EBUSY Product: DPDK Version: 21.11 Hardware: POWER OS: Linux Status: UNCONFIRMED Severity: normal

Re: [PATCH v2] vfio: do not coalesce DMA mappings

2023-04-24 Thread David Marchand
Hello Anatoly, On Wed, Apr 5, 2023 at 4:17 PM Burakov, Anatoly wrote: > >> Could you please provide some steps to reproduce the hotplug issue > >> you're having? It would be great to have a test case for this patchset > >> to put it in context. > > > > I am working on CDX bus > > (http://patchwor

[PATCH 0/1] eal: add tracepoints to track lcores and services

2023-04-24 Thread Arnaud Fiorini
The events generated by these tracepoints are then used in Trace Compass[1] to show the lcore state and service state throughout the execution of a program. A trace has been generated using the service cores application and can be used to test the analysis. [1] https://git.eclipse.org/r/c/traceco

[PATCH 1/1] eal: add tracepoints to track lcores and services

2023-04-24 Thread Arnaud Fiorini
The tracepoints added are used to track lcore role and status, as well as service mapping and service runstates. These tracepoints are then used in analyses in Trace Compass. Signed-off-by: Arnaud Fiorini --- .mailmap | 1 + lib/eal/common/eal_common_thread.c

Re: [RFC PATCH 1/5] eventdev: add power monitoring API on event port

2023-04-24 Thread Ferruh Yigit
On 4/19/2023 11:15 AM, Jerin Jacob wrote: > On Wed, Apr 19, 2023 at 3:24 PM Sivaprasad Tummala > wrote: >> >> A new API to allow power monitoring condition on event port to >> optimize power when no events are arriving on an event port for >> the worker core to process in an eventdev based pipelin

Re: [RFC PATCH 3/5] eventdev: support optional dequeue callbacks

2023-04-24 Thread Ferruh Yigit
On 4/19/2023 10:54 AM, Sivaprasad Tummala wrote: > --- a/lib/eventdev/version.map > +++ b/lib/eventdev/version.map > @@ -131,6 +131,12 @@ EXPERIMENTAL { > rte_event_eth_tx_adapter_runtime_params_init; > rte_event_eth_tx_adapter_runtime_params_set; > rte_event_timer_remaining_ticks

Re: [RFC 0/3] introduce coroutine library

2023-04-24 Thread Stephen Hemminger
On Mon, 24 Apr 2023 13:02:05 + Chengwen Feng wrote: > This patchset introduces the coroutine library which will help refactor > the hns3 PMD's reset process. > > The hns3 single function reset process consists of the following steps: > 1.stop_service(); > 2.prepare_reset(); > 3.d

Re: [PATCH v2] vfio: do not coalesce DMA mappings

2023-04-24 Thread Stephen Hemminger
On Mon, 24 Apr 2023 17:22:46 +0200 David Marchand wrote: > > > > > > > Thanks, I can reproduce this issue with regular devices too (run testpmd > > with no devices, bind a NIC to VFIO, attach it, then quit). You're > > correct in that since the initial mapping was done with mapping large > > co

RE: [PATCH v2] vfio: do not coalesce DMA mappings

2023-04-24 Thread Gupta, Nipun
> -Original Message- > From: Stephen Hemminger > Sent: Monday, April 24, 2023 9:41 PM > To: David Marchand > Cc: Burakov, Anatoly ; Gupta, Nipun > ; dev@dpdk.org; tho...@monjalon.net; Yigit, Ferruh > ; Agarwal, Nikhil > Subject: Re: [PATCH v2] vfio: do not coalesce DMA mappings > >

Re: [PATCH] common/idpf: remove unnecessary compile option

2023-04-24 Thread Stephen Hemminger
On Mon, 24 Apr 2023 18:47:00 -0400 Qi Zhang wrote: > Remove compile option "__KERNEL" which should not be considered in > DPDK. Also only #include in idpf_osdep.h. > > Signed-off-by: Qi Zhang This will cause some warnings in DPDK build depending on compiler version and flags. You need to lea

Re: [PATCH] common/idpf: remove unnecessary compile option

2023-04-24 Thread Tyler Retzlaff
On Mon, Apr 24, 2023 at 09:23:48AM -0700, Stephen Hemminger wrote: > On Mon, 24 Apr 2023 18:47:00 -0400 > Qi Zhang wrote: > > > Remove compile option "__KERNEL" which should not be considered in > > DPDK. Also only #include in idpf_osdep.h. > > > > Signed-off-by: Qi Zhang > > This will cause

Re: [PATCH] common/idpf: remove unnecessary compile option

2023-04-24 Thread Stephen Hemminger
On Mon, 24 Apr 2023 10:29:19 -0700 Tyler Retzlaff wrote: > On Mon, Apr 24, 2023 at 09:23:48AM -0700, Stephen Hemminger wrote: > > On Mon, 24 Apr 2023 18:47:00 -0400 > > Qi Zhang wrote: > > > > > Remove compile option "__KERNEL" which should not be considered in > > > DPDK. Also only #include

Re: [PATCH v5] app/testpmd: txonly multiflow port change support

2023-04-24 Thread Joshua Washington
After updating the patch, it seems that the `lcores_autotest` unit test now times out on Windows Server 2019. I looked at the test logs, but they were identical as far as I could tell, with the timed out test even printing "Test OK" to stdout. Is this a flake? Or is there any other way to get extra

DPDK Release Status Meeting 2023-04-06

2023-04-24 Thread Mcnamara, John
Release status meeting minutes 2023-04-06 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * ARM * Debian/Microsoft * Intel * Marvell NO * Nvidia * Red Hat Release Dates - The following are the propo

RE: [EXT] [RFC] lib: set/get max memzone segments

2023-04-24 Thread Ophir Munk
Thank you Devendra Singh Rawat for your valuable comments. > >+int ecore_mz_mapping_alloc(void) > >+{ > >+ecore_mz_mapping = rte_malloc("ecore_mz_map", 0, > >+rte_memzone_max_get() * sizeof(struct rte_memzone *)); > > Second parameter of rte_malloc() should be size and Third param

RE: [RFC] lib: set/get max memzone segments

2023-04-24 Thread Ophir Munk
Thank you Stephen Memminger for you comment. > Subject: Re: [RFC] lib: set/get max memzone segments > > On Wed, 19 Apr 2023 11:36:34 +0300 > Ophir Munk wrote: > > > +int ecore_mz_mapping_alloc(void) > > +{ > > + ecore_mz_mapping = rte_malloc("ecore_mz_map", 0, > > + rte_memzone_max_

Re: [dpdk-web] [RFC PATCH] process: new library approval in principle

2023-04-24 Thread Thomas Monjalon
17/04/2023 15:33, Jerin Jacob: > On Wed, Mar 15, 2023 at 7:17 PM Jerin Jacob wrote: > > On Fri, Mar 3, 2023 at 11:55 PM Thomas Monjalon wrote: > @Thomas Monjalon Could you check the below comments and share your > opinion to make forward progress. > > > > 13/02/2023 10:26, jer...@marvell.com: >

Re: [PATCH 1/3] security: introduce out of place support for inline ingress

2023-04-24 Thread Thomas Monjalon
18/04/2023 10:33, Jerin Jacob: > On Tue, Apr 11, 2023 at 11:36 PM Stephen Hemminger > wrote: > > > > On Tue, 11 Apr 2023 15:34:07 +0530 > > Nithin Dabilpuram wrote: > > > > > diff --git a/lib/security/rte_security.h b/lib/security/rte_security.h > > > index 4bacf9fcd9..866cd4e8ee 100644 > > > ---

Re: [RFC 0/3] introduce coroutine library

2023-04-24 Thread fengchengwen
On 2023/4/25 0:08, Stephen Hemminger wrote: > On Mon, 24 Apr 2023 13:02:05 + > Chengwen Feng wrote: > >> This patchset introduces the coroutine library which will help refactor >> the hns3 PMD's reset process. >> >> The hns3 single function reset process consists of the following steps: >>

Re: [RFC 0/3] introduce coroutine library

2023-04-24 Thread Stephen Hemminger
On Tue, 25 Apr 2023 10:11:43 +0800 fengchengwen wrote: > On 2023/4/25 0:08, Stephen Hemminger wrote: > > On Mon, 24 Apr 2023 13:02:05 + > > Chengwen Feng wrote: > > > >> This patchset introduces the coroutine library which will help refactor > >> the hns3 PMD's reset process. > >> > >> Th

Re: [RFC 0/3] introduce coroutine library

2023-04-24 Thread fengchengwen
On 2023/4/25 10:16, Stephen Hemminger wrote: > On Tue, 25 Apr 2023 10:11:43 +0800 > fengchengwen wrote: > >> On 2023/4/25 0:08, Stephen Hemminger wrote: >>> On Mon, 24 Apr 2023 13:02:05 + >>> Chengwen Feng wrote: >>> This patchset introduces the coroutine library which will help refa

Re: [RFC 0/3] introduce coroutine library

2023-04-24 Thread Garrett D'Amore
First time poster here: I worry a bit about a coroutine approach as it may be challenging for some uses like ours.  We have a purely event driven loop with a Reactor model written in D.  The details are not specifically needed here, except to point out that an approach based on ucontext.h or so

Re: [RFC PATCH 1/5] eventdev: add power monitoring API on event port

2023-04-24 Thread Jerin Jacob
On Mon, Apr 24, 2023 at 9:36 PM Ferruh Yigit wrote: > > On 4/19/2023 11:15 AM, Jerin Jacob wrote: > > On Wed, Apr 19, 2023 at 3:24 PM Sivaprasad Tummala > > wrote: > >> > >> A new API to allow power monitoring condition on event port to > >> optimize power when no events are arriving on an event

RE: [PATCH] usertools: enhance CPU layout

2023-04-24 Thread Lu, Wenzhuo
Hi Stephen, Thomas, Brice, > -Original Message- > From: Brice Goglin > Sent: Tuesday, April 25, 2023 1:06 AM > To: Stephen Hemminger ; Thomas Monjalon > > Cc: Lu, Wenzhuo ; dev@dpdk.org; > david.march...@redhat.com > Subject: Re: [PATCH] usertools: enhance CPU layout > > Le 21/04/2023 à

[PATCH v6] enhance NUMA affinity heuristic

2023-04-24 Thread Kaisen You
Trying to allocate memory on the first detected numa node,it has less chance to find some memory actually available rather than on the main lcore numa node (especially when the DPDK application is started only on one numa node). Fixes: 8b0a1b8cb481 ("eal: stop using pthread for lcores and control

RE: 22.11.2 patches review and test

2023-04-24 Thread Xueming(Steven) Li
> -Original Message- > From: David Marchand > Sent: 4/24/2023 14:54 > To: Xueming(Steven) Li > Cc: sta...@dpdk.org; dev@dpdk.org; Kevin Traynor ; > Luca Boccassi ; NBU-Contact-Thomas Monjalon > (EXTERNAL) > Subject: Re: 22.11.2 patches review and test > > Hello Xueming, > > On Sun, A

Re: [RFC PATCH 1/5] eventdev: add power monitoring API on event port

2023-04-24 Thread Mattias Rönnblom
On 2023-04-24 18:06, Ferruh Yigit wrote: > On 4/19/2023 11:15 AM, Jerin Jacob wrote: >> On Wed, Apr 19, 2023 at 3:24 PM Sivaprasad Tummala >> wrote: >>> >>> A new API to allow power monitoring condition on event port to >>> optimize power when no events are arriving on an event port for >>> the wo

RE: [RFC 07/27] vhost: change to single IOTLB cache per device

2023-04-24 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com

RE: [RFC 08/27] vhost: add offset field to IOTLB entries

2023-04-24 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com; > amore...

RE: [RFC 09/27] vhost: add page size info to IOTLB entry

2023-04-24 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Friday, March 31, 2023 11:43 PM > To: dev@dpdk.org; david.march...@redhat.com; Xia, Chenbo > ; m...@redhat.com; f...@redhat.com; > jasow...@redhat.com; Liang, Cunming ; Xie, Yongji > ; echau...@redhat.com; epere...@redhat.com

Re: [PATCH v5] app/testpmd: txonly multiflow port change support

2023-04-24 Thread David Marchand
Hello Joshua, On Mon, Apr 24, 2023 at 7:56 PM Joshua Washington wrote: > > After updating the patch, it seems that the `lcores_autotest` unit test now > times out on Windows Server 2019. I looked at the test logs, but they were > identical as far as I could tell, with the timed out test even pr