Re: [RFC] random: use per lcore state

2023-09-08 Thread Mattias Rönnblom
On 2023-09-07 01:00, Stephen Hemminger wrote: On Wed, 6 Sep 2023 22:02:54 +0200 Mattias Rönnblom wrote: On 2023-09-06 19:20, Stephen Hemminger wrote: Move the random number state into thread local storage. Me and Morten discussed TLS versus other alternatives in some other thread. The downs

Re: Troubleshooting DPDK in Intel Ethernet NIC

2023-09-08 Thread David Marchand
Hello, On Fri, Sep 8, 2023 at 8:42 AM Antón Rey Villaverde wrote: > > Hi, > I have a problem while trying to manage my physical Ethernet interface from > DPDK (latest version compiled from source). > I have a: > NIC: :00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection > (13)

Re: quick thread in DLB2

2023-09-08 Thread Mattias Rönnblom
On 2023-09-08 00:09, Sevincer, Abdullah wrote: Hi Stephen, It is probing ports for best CPU. Yes it collects cycles. We may rework in the future. Best, in what sense? Is this some kind of topology exploration? One DLB port being closer to (cheaper to access for) certain cores? Open to sugg

Re: [PATCH 3/5] app/proc-info: fix never show RSS info

2023-09-08 Thread Jie Hai
Hi, Pattan, Reshma On 2023/9/6 0:29, Pattan, Reshma wrote: -Original Message- + uint8_t *rss_key; Instead of pointer can you just take key of type below, so u no need to do dynamic memory allocation using malloc and free . Ex: uint8_t hash_key[RSS_HASH_KEY_LENGTH];

Re: [PATCH 5/5] app/proc-info: support querying RSS hash algorithm

2023-09-08 Thread Jie Hai
Hi, Pattan, Reshma On 2023/9/6 1:07, Pattan, Reshma wrote: Instead of above function you can declare const array of strings as below to map hash function names. static const char * const hf_names[] = { [RTE_ETH_HASH_FUNCTION_SIMPLE_XOR] = " simple_xor ", [RTE_ETH_HASH_FUNCTI

[PATCH v4 0/7] support setting and querying RSS algorithms

2023-09-08 Thread Jie Hai
This patchset is to support setting and querying RSS algorithms. -- v4: 1. recomment some definitions related to RSS. 2. allocate static memory for rss_key instead of dynamic. 3. use array of strings to get the name of rss algorithm. 4. add display of rss algorithm with testpmd. v3: 1. fix commit

[PATCH v4 1/7] ethdev: recomment some definitions related to RSS

2023-09-08 Thread Jie Hai
1. Recomment fields of 'rte_eth_rss_conf'. 2. Add comments for RTE_ETH_HASH_FUNCTION_DEFAULT. Signed-off-by: Jie Hai --- lib/ethdev/rte_ethdev.h | 28 +--- lib/ethdev/rte_flow.h | 4 2 files changed, 17 insertions(+), 15 deletions(-) diff --git a/lib/ethdev/rte_e

[PATCH v4 2/7] ethdev: support setting and querying RSS algorithm

2023-09-08 Thread Jie Hai
Currently, rte_eth_rss_conf supports configuring and querying RSS hash functions, rss key and it's length, but not RSS hash algorithm. The structure ``rte_eth_rss_conf`` is extended by adding a new field "func". This represents the RSS algorithms to apply. The following API will be affected:

[PATCH v4 3/7] net/hns3: support setting and querying RSS hash function

2023-09-08 Thread Jie Hai
From: Huisong Li Support setting and querying RSS hash function by ethdev ops. Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_rss.c | 47 + 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/drivers/net/hns3/hns

[PATCH v4 4/7] app/proc-info: fix never show RSS info

2023-09-08 Thread Jie Hai
Command show-port should show RSS info (rss_key, len and rss_hf), However, the information is shown only when rss_conf.rss_key is not NULL. Since no memory is allocated for rss_conf.rss_key, rss_key will always be NULL and the rss_info will never show. This patch allocates memory for rss_conf.rss_k

[PATCH v4 5/7] app/proc-info: adjust the display format of RSS info

2023-09-08 Thread Jie Hai
This patch splits the length and value of RSS key into two parts, removes spaces between RSS keys, and adds line breaks between RSS key and RSS hf. Before the adjustment, RSS info is shown as: - RSS -- RSS len 40 key (hex): 6d 5a 56 da 25 5b e c2 41 67 \ 25 3d 43 a3 8f b0

[PATCH v4 7/7] app/testpmd: add RSS hash algorithms display

2023-09-08 Thread Jie Hai
Add the command "show port X rss-hash func" to display the RSS hash algorithms of port X. An example is shown: testpmd> show port 0 rss-hash func RSS algorithms: toeplitz Signed-off-by: Jie Hai --- app/test-pmd/cmdline.c | 29 - app/test-pmd/config.c | 36

[PATCH v4 6/7] app/proc-info: support querying RSS hash algorithm

2023-09-08 Thread Jie Hai
Display RSS hash algorithm with command show-port as below. - RSS info -- hash algorithm : toeplitz Signed-off-by: Jie Hai Signed-off-by: Dongdong Liu --- app/proc-info/main.c | 9 + 1 file changed, 9 insertions(+) diff --git a/app/proc-info/main.c b/app/proc-info/main.c in

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-08 Thread Jie Hai
Hi, Thomas Thanks for your review. On 2023/9/4 15:45, Thomas Monjalon wrote: 04/09/2023 09:10, Jie Hai: On 2023/8/30 19:46, Thomas Monjalon wrote: 26/08/2023 09:46, Jie Hai: >> + * The *func* field of the *rss_conf* structure indicates the hash algorithm + * applied by the RSS hashing. Pa

Re: Troubleshooting DPDK in Intel Ethernet NIC

2023-09-08 Thread Antón Rey Villaverde
Hi, thanks for the quick response and the feedback. *> Afaics, this nic is not supported by DPDK drivers.* Indeed there is nothing about "15fb" (the PCI ID of my NIC) in the output of ./usertools/dpdk-pmdinfo.py build/app/dpdk-testpmd , so I guess it is not supported. On the other hand, I do see

Re: Troubleshooting DPDK in Intel Ethernet NIC

2023-09-08 Thread David Marchand
On Fri, Sep 8, 2023 at 11:05 AM Antón Rey Villaverde wrote: > > Afaics, this nic is not supported by DPDK drivers. > > Indeed there is nothing about "15fb" (the PCI ID of my NIC) in the output of > ./usertools/dpdk-pmdinfo.py build/app/dpdk-testpmd , so I guess it is not > supported. > > On the

[PATCH 0/3] net/mlx5: extend send to kernel action support

2023-09-08 Thread Jiawei Wang
The send to kernel action was supported in NIC and FDB tables, Currently[1], the send to kernel action is created in NIC RX only. With some TC rules (example: roce packets, redirects into rep ports) and DPDK RTE rules for the rest of the traffic. Then it needs the specific rule to re-route the pac

[PATCH 1/3] net/mlx5: extend send to kernel action support

2023-09-08 Thread Jiawei Wang
The send to kernel action was supported in NIC and FDB tables, Currently, the send to kernel action is created in NIC RX only. With some TC rules (example: roce packets, redirects into rep ports) and DPDK RTE rules for the rest of the traffic. Then it needs the specific rule to re-route the packet

[PATCH 2/3] net/mlx5: extend hws send to kernel action support

2023-09-08 Thread Jiawei Wang
The hws send to kernel action was supported in NIC and FDB tables, Currently, the send to kernel action is created in NIC RX only. This patch adds the FDB and NIC-TX tables support for sending to the kernel action for HWS. Signed-off-by: Jiawei Wang --- drivers/net/mlx5/mlx5.h | 2 +-

[PATCH 3/3] doc: adds the description for send to kernel

2023-09-08 Thread Jiawei Wang
This patch adds the description for send to kernel action support. Signed-off-by: Jiawei Wang Acked-by: Ori Kam --- doc/guides/nics/mlx5.rst | 7 +++ doc/guides/prog_guide/rte_flow.rst | 9 + lib/ethdev/rte_flow.h | 1 - 3 files changed, 16 insertions(+), 1 de

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-08 Thread Jie Hai
Hi, Stephen Hemminger On 2023/9/6 23:10, Stephen Hemminger wrote: On Sat, 26 Aug 2023 15:46:03 +0800 Jie Hai wrote: Currently, rte_eth_rss_conf supports configuring and querying rss hash functions, rss key and it's length, but not rss hash algorithm. The structure ``rte_eth_rss_conf`` is ext

RE: [PATCH 1/3] net/mlx5: extend send to kernel action support

2023-09-08 Thread Suanming Mou
> -Original Message- > From: Jiawei(Jonny) Wang > Sent: Friday, September 8, 2023 5:21 PM > To: Suanming Mou ; Ori Kam ; > NBU-Contact-Thomas Monjalon (EXTERNAL) > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 1/3] net/mlx5: extend send to kernel action support > > The send to

RE: [PATCH 2/3] net/mlx5: extend hws send to kernel action support

2023-09-08 Thread Suanming Mou
> -Original Message- > From: Jiawei(Jonny) Wang > Sent: Friday, September 8, 2023 5:21 PM > To: Suanming Mou ; Ori Kam ; > NBU-Contact-Thomas Monjalon (EXTERNAL) > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 2/3] net/mlx5: extend hws send to kernel action support > > The hws

[PATCH v3] common/idpf: refactor single queue Tx function

2023-09-08 Thread Simei Su
This patch replaces flex Tx descriptor with base Tx descriptor to align with kernel driver practice. Signed-off-by: Simei Su --- v3: * Change context TSO descriptor from base mode to flex mode. v2: * Refine commit title and commit log. * Remove redundant definition. * Modify base mode context TS

RE: [PATCH 1/4] security: remove redundant cast

2023-09-08 Thread Power, Ciara
> -Original Message- > From: Anoob Joseph > Sent: Friday, September 8, 2023 6:40 AM > To: Akhil Goyal ; Power, Ciara > Cc: Jerin Jacob ; dev@dpdk.org > Subject: [PATCH 1/4] security: remove redundant cast > > The API 'rte_cryptodev_get_sec_ctx' returns void *. Type cast is not require

[PATCH v3 1/1] app/graph: add example for different usecases

2023-09-08 Thread skori
From: Sunil Kumar Kori Current l3fwd-graph application only validates l3fwd use case. To scale up this, new application will be added with a framework to run as user's provided usecases. Required configuration and use cases details are fetched via a static .cli file which will be used to create

RE: [EXT] Re: [PATCH v2 4/4] app: add testgraph application

2023-09-08 Thread Sunil Kumar Kori
Hello everyone, As per proposed CLIs to configure graph for different use cases, v3 is implemented under the following request: https://patches.dpdk.org/project/dpdk/patch/20230908104907.4060511-1-sk...@marvell.com/ Please take look on and provide feedback. Regards Sunil Kumar Kori > -Origi

[PATCH 00/36] fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state, for example, [1] 5028f207a4fa ("app/testpmd: fix

[PATCH 02/36] net/af_packet: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 03/36] net/af_xdp: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 01/36] net/axgbe: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 05/36] net/bnx2x: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 04/36] net/avp: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 06/36] net/bnxt: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 08/36] net/cxgbe: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 07/36] net/bonding: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 10/36] net/dpaa2: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 09/36] net/dpaa: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 13/36] net/enetc: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 12/36] net/ena: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 16/36] net/ipn3ke: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 14/36] net/enic: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 17/36] net/memif: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 11/36] net/e1000: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 15/36] net/hinic: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 21/36] net/mvpp2: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 22/36] net/netvsc: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 20/36] net/mvneta: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 23/36] net/nfp: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 24/36] net/ngbe: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 25/36] net/null: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 18/36] net/mana: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 19/36] net/mlx4: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 27/36] net/octeontx: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 28/36] net/pfe: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 26/36] net/octeon_ep: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 29/36] net/ring: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 34/36] net/virtio: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 30/36] net/sfc: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 31/36] net/softnic: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 32/36] net/txgbe: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 35/36] net/vmxnet3: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 33/36] net/vhost: fix Rx and Tx queue state

2023-09-08 Thread Jie Hai
The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the driver needs to modify the queue st

[PATCH 36/36] app/testpmd: fix primary process not polling all queues

2023-09-08 Thread Jie Hai
Here's how the problem arises. step1: Start the app. dpdk-testpmd -a :35:00.0 -l 0-3 -- -i --rxq=10 --txq=10 step2: Perform the following steps and send traffic. As expected, queue 7 does not send or receive packets, and other queues do. port 0 rxq 7 stop port 0 txq 7 stop set

Re: [PATCH 00/36] fix Rx and Tx queue state

2023-09-08 Thread David Marchand
On Fri, Sep 8, 2023 at 1:32 PM Jie Hai wrote: > > The DPDK framework reports the queue state, which is stored in > dev->data->tx_queue_state and dev->data->rx_queue_state. The > state is maintained by the driver. Users may determine whether > a queue participates in packet forwarding based on the

[PATCH 1/3] pdcp: add support for SDAP header

2023-09-08 Thread Aakash Sasidharan
SDAP header when enabled needs to be authenticated but not encrypted. Signed-off-by: Aakash Sasidharan --- lib/pdcp/pdcp_entity.h | 2 ++ lib/pdcp/pdcp_process.c | 22 -- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/lib/pdcp/pdcp_entity.h b/lib/pdcp/pdcp_

[PATCH 2/3] test/pdcp: add SDAP test cases

2023-09-08 Thread Aakash Sasidharan
Add PDCP SDAP test cases. Signed-off-by: Aakash Sasidharan --- app/test/test_pdcp.c | 438 +++ 1 file changed, 397 insertions(+), 41 deletions(-) diff --git a/app/test/test_pdcp.c b/app/test/test_pdcp.c index 6c73c1db36..9c9e7a51fc 100644 --- a/app/test/t

[PATCH 3/3] test/pdcp: add SDAP combined mode tests

2023-09-08 Thread Aakash Sasidharan
Add PDCP SDAP combined mode tests. Signed-off-by: Aakash Sasidharan --- app/test/test_pdcp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test/test_pdcp.c b/app/test/test_pdcp.c index 9c9e7a51fc..5f8ec08e32 100644 --- a/app/test/test_pdcp.c +++ b/app/test/test_pdcp.c @@ -2275,6 +22

Re: [PATCH 30/36] net/sfc: fix Rx and Tx queue state

2023-09-08 Thread Andrew Rybchenko
On 9/8/23 14:28, Jie Hai wrote: The DPDK framework reports the queue state, which is stored in dev->data->tx_queue_state and dev->data->rx_queue_state. The state is maintained by the driver. Users may determine whether a queue participates in packet forwarding based on the state. Therefore, the d

[PATCH v4 0/2] fix memory initialization deadlock

2023-09-08 Thread Artemy Kovalyov
The issue arose due to the change in the DPDK read-write lock implementation. That change added a new flag, RTE_RWLOCK_WAIT, designed to prevent new read locks while a write lock is in the queue. However, this change has led to a scenario where a recursive read lock, where a lock is acquired twice

[PATCH v4 1/2] eal: fix memory initialization deadlock

2023-09-08 Thread Artemy Kovalyov
The issue arose due to changes in the DPDK read-write lock implementation. Following these changes, the RW-lock no longer supports recursion, implying that a single thread shouldn't obtain a read lock if it already possesses one. The problem arises during initialization: the rte_eal_init() function

[PATCH v4 2/2] eal: annotate rte_memseg_list_walk()

2023-09-08 Thread Artemy Kovalyov
Implementing a lock annotation for rte_memseg_list_walk() to proactively identify bugs similar to memory_hotplug_lock deadlock during initialization during compile time. Bugzilla ID: 1277 Signed-off-by: Artemy Kovalyov --- lib/eal/common/eal_memalloc.h | 3 ++- lib/eal/common/eal_priva

RE: [PATCH 2/2] event/sw: fix ordering corruption with op release

2023-09-08 Thread Van Haaren, Harry
> -Original Message- > From: Richardson, Bruce > Sent: Monday, September 4, 2023 5:38 PM > To: Van Haaren, Harry > Cc: dev@dpdk.org > Subject: Re: [PATCH 2/2] event/sw: fix ordering corruption with op release > > drivers/event/sw/sw_evdev_scheduler.c | 45 --- >

Re: [PATCH v2 2/2] random: make rte_rand() thread safe for non-EAL threads

2023-09-08 Thread Mattias Rönnblom
On 2023-09-07 17:24, Stephen Hemminger wrote: Add missing locking so that if two non-EAL threads call rte_rand() they will not corrupt the per-thread state. Fixes: 3f002f069612 ("eal: replace libc-based random generation with LFSR") The API documentation clearly states that no MT safety guaran

Re: [PATCH v2 2/2] random: make rte_rand() thread safe for non-EAL threads

2023-09-08 Thread Stephen Hemminger
On Fri, 8 Sep 2023 22:48:54 +0200 Mattias Rönnblom wrote: > On 2023-09-07 17:24, Stephen Hemminger wrote: > > Add missing locking so that if two non-EAL threads call rte_rand() > > they will not corrupt the per-thread state. > > > > Fixes: 3f002f069612 ("eal: replace libc-based random generation

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-08 Thread Stephen Hemminger
On Fri, 8 Sep 2023 17:28:08 +0800 Jie Hai wrote: > Hi, Stephen Hemminger > > On 2023/9/6 23:10, Stephen Hemminger wrote: > > On Sat, 26 Aug 2023 15:46:03 +0800 > > Jie Hai wrote: > > > >> Currently, rte_eth_rss_conf supports configuring and querying > >> rss hash functions, rss key and it's

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-08 Thread Ajit Khaparde
On Fri, Sep 8, 2023 at 1:44 AM Jie Hai wrote: > > Hi, Thomas > Thanks for your review. > > On 2023/9/4 15:45, Thomas Monjalon wrote: > > 04/09/2023 09:10, Jie Hai: > >> On 2023/8/30 19:46, Thomas Monjalon wrote: > >>> 26/08/2023 09:46, Jie Hai: > > >> + * The *func* field of the *rss_conf* struc

Re: [RFC] random: use per lcore state

2023-09-08 Thread Konstantin Ananyev
06/09/2023 21:02, Mattias Rönnblom пишет: On 2023-09-06 19:20, Stephen Hemminger wrote: Move the random number state into thread local storage. Me and Morten discussed TLS versus other alternatives in some other thread. The downside of TLS that Morten pointed out, from what I recall, is that

RE: [EXT] [PATCH v3 1/1] app/graph: add example for different usecases

2023-09-08 Thread Nithin Kumar Dabilpuram
Please see inline. > -Original Message- > From: sk...@marvell.com > Sent: Friday, September 8, 2023 4:19 PM > To: Thomas Monjalon ; Sunil Kumar Kori > ; > Rakesh Kudurumalla > Cc: dev@dpdk.org > Subject: [EXT] [PATCH v3 1/1] app/graph: add example for different usecases > > External Em

RE: [PATCH v4 02/10] net/cpfl: introduce interface structure

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > ; Zhang, Qi Z > Subject: [PATCH v4 02/10] net/cpfl: introduce interface structure > > From: Beilei Xing > > Introduce cplf interf

RE: [PATCH v4 03/10] net/cpfl: refine handle virtual channel message

2023-09-08 Thread Wu, Jingjing
> -static struct idpf_vport * > +static struct cpfl_vport * > cpfl_find_vport(struct cpfl_adapter_ext *adapter, uint32_t vport_id) > { > - struct idpf_vport *vport = NULL; > + struct cpfl_vport *vport = NULL; > int i; > > for (i = 0; i < adapter->cur_vport_nb; i++) { > -

RE: [PATCH v4 08/10] net/cpfl: support vport list/info get

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v4 08/10] net/cpfl: support vport list/info get > > From: Beilei Xing > > Support cp channel ops CPCHNL2_OP_CPF

RE: [PATCH v4 09/10] net/cpfl: create port representor

2023-09-08 Thread Wu, Jingjing
> + /* warning if no match vport detected */ > + if (!matched) > + PMD_INIT_LOG(WARNING, "No matched vport for > representor %s " > + "creation will be deferred when > vport is detected", > +

RE: [PATCH v4 10/10] net/cpfl: support link update for representor

2023-09-08 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, September 8, 2023 7:17 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Liu, Mingxia ; Xing, Beilei > > Subject: [PATCH v4 10/10] net/cpfl: support link update for representor > > From: Beilei Xing > > Add link update ops for repre

Re: [RFC] random: use per lcore state

2023-09-08 Thread Mattias Rönnblom
On 2023-09-09 02:13, Konstantin Ananyev wrote: 06/09/2023 21:02, Mattias Rönnblom пишет: On 2023-09-06 19:20, Stephen Hemminger wrote: Move the random number state into thread local storage. Me and Morten discussed TLS versus other alternatives in some other thread. The downside of TLS that