RE: [PATCH 07/15] net/ena/base: update copyrights comments

2024-07-08 Thread Brandes, Shai
> -Original Message- > From: Hemant Agrawal > Sent: Monday, July 8, 2024 7:09 AM > To: Ferruh Yigit ; Brandes, Shai > > Cc: dev@dpdk.org; Hemant Agrawal > Subject: RE: [EXTERNAL] [PATCH 07/15] net/ena/base: update copyrights > comments > > CAUTION: This email originated from outside o

[v3 0/8] DPAA specific fixes

2024-07-08 Thread vanshika . shukla
From: Vanshika Shukla This series includes fixes for NXP DPAA drivers. V3 changes: Fixed compilation issue for "restrict MTU config for shared intf" patch. Added back "mempool/dpaax: cache free optimization" patch. V2 changes: Removed "mempool/dpaax: cache free optimization" patch. Apeksha Gup

[PATCH v3 1/8] bus/dpaa: fix bus scan for DMA devices

2024-07-08 Thread vanshika . shukla
From: Gagandeep Singh if there is no sec devices available, code is not scanning QDMA dev This patch fix this problem by adding a goto statement instead of return in case no sec device available. Fixes: 583f3732974f ("dma/dpaa: introduce DPAA DMA driver skeleton") Cc: sta...@dpdk.org Signed-off

[PATCH v3 2/8] bus/dpaa: fix resource leak in variable dev

2024-07-08 Thread vanshika . shukla
From: Apeksha Gupta Resource leak: variable dev is going out of scope leaks the storage. Fixes: d61138d4f0e2 ("drivers: remove direct access to interrupt handle") Cc: hka...@marvell.com Cc: sta...@dpdk.org Signed-off-by: Apeksha Gupta Signed-off-by: Vanshika Shukla --- drivers/bus/dpaa/dpaa_

[PATCH v3 3/8] common/dpaax: fix IOVA table cleanup

2024-07-08 Thread vanshika . shukla
From: Gagandeep Singh Fixes incorrect structure free Fixes: 2f3d633aa593 ("common/dpaax: add library for PA/VA translation table") Cc: sta...@dpdk.org Signed-off-by: Gagandeep Singh Signed-off-by: Vanshika Shukla --- drivers/common/dpaax/dpaax_iova_table.c | 7 ++- 1 file changed, 2 inse

[PATCH v3 4/8] common/dpaax: fix array overrun issue

2024-07-08 Thread vanshika . shukla
From: Apeksha Gupta Out-of-bounds read, Overrunning dynamic array nodes at offset corresponding to index variable j. Fixes: 2f3d633aa593 ("common/dpaax: add library for PA/VA translation table") Cc: sta...@dpdk.org Signed-off-by: Apeksha Gupta Signed-off-by: Vanshika Shukla --- drivers/commo

[PATCH v3 5/8] bus/dpaa: remove redundant file descriptor check

2024-07-08 Thread vanshika . shukla
From: Rohit Raj This patch removes the redundant file descriptor check Fixes: 2f3d633aa593 ("common/dpaax: add library for PA/VA translation table") Cc: sta...@dpdk.org Signed-off-by: Rohit Raj Signed-off-by: Vanshika Shukla --- drivers/bus/dpaa/base/qbman/process.c | 7 --- 1 file chang

[PATCH v3 6/8] bus/dpaa: remove unused code

2024-07-08 Thread vanshika . shukla
From: Gagandeep Singh The slow poll code is not being used in DPDK DPAA driver sub-system. Signed-off-by: Gagandeep Singh Signed-off-by: Vanshika Shukla --- drivers/bus/dpaa/base/qbman/qman.c | 31 - drivers/bus/dpaa/include/fsl_qman.h | 31 ---

[PATCH v3 7/8] net/dpaa: restrict MTU config for shared intf

2024-07-08 Thread vanshika . shukla
From: Rohit Raj Since DPDK was able to configure mtu in VSP/Shared interface mode, it was causing misconfiguration of the hw which further caused crashes. This patch allow only kernel to config MTU in such cases Signed-off-by: Rohit Raj Signed-off-by: Vanshika Shukla --- drivers/net/dpaa/dp

[PATCH v3 8/8] mempool/dpaax: cache free optimization

2024-07-08 Thread vanshika . shukla
From: Sachin Saxena - Updates the cache threshold value as per the platform specific optimal value. Signed-off-by: Sachin Saxena Signed-off-by: Vanshika Shukla --- drivers/mempool/dpaa/dpaa_mempool.c | 16 +++- drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 15 +++

Re: [PATCH 07/15] net/ena/base: update copyrights comments

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 8:02 AM, Brandes, Shai wrote: > > >> -Original Message- >> From: Hemant Agrawal >> Sent: Monday, July 8, 2024 7:09 AM >> To: Ferruh Yigit ; Brandes, Shai >> >> Cc: dev@dpdk.org; Hemant Agrawal >> Subject: RE: [EXTERNAL] [PATCH 07/15] net/ena/base: update copyrights >> comme

RE: [PATCH 07/15] net/ena/base: update copyrights comments

2024-07-08 Thread Brandes, Shai
> -Original Message- > From: Ferruh Yigit > Sent: Monday, July 8, 2024 11:38 AM > To: Brandes, Shai ; Hemant Agrawal > > Cc: dev@dpdk.org; Hemant Agrawal ; > techbo...@dpdk.org > Subject: RE: [EXTERNAL] [PATCH 07/15] net/ena/base: update copyrights > comments > > CAUTION: This email or

[PATCH v2] eal/common: fix inconsistent representation of PCI numbers

2024-07-08 Thread Shani Peretz
DPDK allows for two ways to specify PCI device numbers: a full version (":08:00.0") and a short version ("08:00.0"). The problem arises when the application uses one format (e.g., full) when running testpmd, but then tries to use the other format (e.g., short) in a subsequent command, leading t

[PATCH] net/mlx5: fix MTU configuration

2024-07-08 Thread Dariusz Sosnowski
Apply provided MTU, derived from rte_eth_conf.rxmode.mtu, on port configuration. Bugzilla ID: 1483 Fixes: e60fbd5b24fc ("mlx5: add device configure/start/stop") Cc: sta...@dpdk.org Signed-off-by: Dariusz Sosnowski Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5_ethdev.c | 6 ++ 1

Re: [PATCH v2 0/4] support AVX2 instruction Rx/Tx function

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 6:58 AM, Chaoyong He wrote: > This patch series add the support of Rx/Tx function using the > AVX2 instruction. > > --- > v2: rebase to the latest main branch. > --- > > Long Wu (4): > net/nfp: export more interfaces of NFDk > net/nfp: support AVX2 Tx function > net/nfp: support

Re: [PATCH 07/15] net/ena/base: update copyrights comments

2024-07-08 Thread Ferruh Yigit
On 7/2/2024 3:46 PM, shaib...@amazon.com wrote: > From: Shai Brandes > > copyright dates are not mandatory to be maintained, > therefore the range of years was removed. > In addition, the copyrights lines were separated > into two comments. > > Signed-off-by: Shai Brandes > Applied to dpdk-nex

Re: [PATCH v2 0/7] add trace support for control message

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 3:45 AM, Chaoyong He wrote: > This patch series add trace support for control message send > to flower firmware. > > --- > v2: rebase to the latest main branch. > --- > > Chaoyong He (7): > net/nfp: add trace points about port > net/nfp: add trace point about tunnel > net/nfp: a

Re: [PATCH v2] net/memif: fix buffer overflow in zero copy Rx

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 4:39 AM, Mihai Brodschi wrote: > > > On 07/07/2024 21:46, Mihai Brodschi wrote: >> >> >> On 07/07/2024 18:18, Mihai Brodschi wrote: >>> >>> >>> On 07/07/2024 17:05, Ferruh Yigit wrote: My expectation is numbers should be like following: Initially: size = 256

[PATCH v12 0/7] hash: add SVE support for bulk key lookup

2024-07-08 Thread Yoan Picchi
This patchset adds SVE support for the signature comparison in the cuckoo hash lookup and improves the existing NEON implementation. These optimizations required changes to the data format and signature of the relevant functions to support dense hitmasks (no padding) and having the primary and seco

[PATCH v12 3/7] hash: add a check on hash entry max size

2024-07-08 Thread Yoan Picchi
If were to change RTE_HASH_BUCKET_ENTRIES to be over 8, it would no longer fit in the vector (8*16b=128b), therefore failing to check some of the signatures. This patch adds a compile time check to fallback to scalar code in this case. Signed-off-by: Yoan Picchi --- lib/hash/compare_signatures_a

[PATCH v12 1/7] hash: make compare signature function enum private

2024-07-08 Thread Yoan Picchi
enum rte_hash_sig_compare_function is only used internally. This patch move it out of the public ABI and into the C file. Signed-off-by: Yoan Picchi --- lib/hash/rte_cuckoo_hash.c | 10 ++ lib/hash/rte_cuckoo_hash.h | 10 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff

[PATCH v12 2/7] hash: split compare signature into arch-specific files

2024-07-08 Thread Yoan Picchi
Move the compare_signatures function into architecture-specific files They all have the default scalar option as an option if we disable vectorisation. Signed-off-by: Yoan Picchi --- .mailmap | 1 + lib/hash/compare_signatures_arm.h | 55 +++

[PATCH v12 5/7] hash: optimize compare signature for NEON

2024-07-08 Thread Yoan Picchi
Upon a successful comparison, NEON sets all the bits in the lane to 1 We can skip shifting by simply masking with specific masks. Signed-off-by: Yoan Picchi Reviewed-by: Ruifeng Wang Reviewed-by: Nathan Brown --- lib/hash/compare_signatures_arm.h | 22 +++--- 1 file changed, 11

[PATCH v12 4/7] hash: pack the hitmask for hash in bulk lookup

2024-07-08 Thread Yoan Picchi
Current hitmask includes padding due to Intel's SIMD implementation detail. This patch allows non Intel SIMD implementations to benefit from a dense hitmask. In addition, the new dense hitmask interweave the primary and secondary matches which allow a better cache usage and enable future improvemen

[PATCH v12 6/7] test/hash: check bulk lookup of keys after collision

2024-07-08 Thread Yoan Picchi
This patch adds unit test for rte_hash_lookup_bulk(). It also update the test_full_bucket test to the current number of entries in a hash bucket. Signed-off-by: Yoan Picchi Signed-off-by: Harjot Singh Reviewed-by: Ruifeng Wang Reviewed-by: Nathan Brown --- .mailmap | 1 + app/tes

[PATCH v12 7/7] hash: add SVE support for bulk key lookup

2024-07-08 Thread Yoan Picchi
- Implemented SVE code for comparing signatures in bulk lookup. - New SVE code is ~5% slower than optimized NEON for N2 processor for 128b vectors. Signed-off-by: Yoan Picchi Signed-off-by: Harjot Singh Reviewed-by: Nathan Brown Reviewed-by: Ruifeng Wang --- lib/hash/compare_signatures_arm.h

RE: [PATCH] crypto/qat: fix incorrect placement of oop offset

2024-07-08 Thread Dooley, Brian
Hi Arek, > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Thursday, July 4, 2024 11:27 AM > To: dev@dpdk.org > Cc: gak...@marvell.com; Dooley, Brian ; Kusztal, > ArkadiuszX ; sta...@dpdk.org > Subject: [PATCH] crypto/qat: fix incorrect placement of oop offset > > This patch fixes

[v3] raw/zxdh:Optimize device resource mapping process

2024-07-08 Thread Yong Zhang
Use rte_pci_device to map device resources and delete useless device search processes. Signed-off-by: Yong Zhang --- drivers/raw/zxdh/meson.build | 2 +- drivers/raw/zxdh/zxdh_pci.c| 562 - drivers/raw/zxdh/zxdh_pci.h| 41 --- drivers/raw/zxdh/zxdh_ra

[PATCH] driver: crypto: scheduler: fix session size computation

2024-07-08 Thread jhascoet
From: Julien Hascoet The crypto scheduler session size computation was taking into account only the worker session sizes and not its own. Fixes: e2af4e403c1 ("crypto/scheduler: support DOCSIS security protocol") Cc: sta...@dpdk.org Signed-off-by: Julien Hascoet --- drivers/crypto/scheduler/sc

[PATCH] vhost: fix offset while mmaping log base address

2024-07-08 Thread BillXiang
From: BillXiang For sanity the offset should be the last parameter of mmap. Fixes: fbc4d24 ("vhost: fix offset while mmaping log base address") Signed-off-by: BillXiang --- lib/vhost/vhost_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vhost/vhost_user.c b/lib/v

Re: [PATCH v3 2/8] bus/dpaa: fix resource leak in variable dev

2024-07-08 Thread David Marchand
On Mon, Jul 8, 2024 at 9:29 AM wrote: > > From: Apeksha Gupta > > Resource leak: > variable dev is going out of scope leaks the storage. > > Fixes: d61138d4f0e2 ("drivers: remove direct access to interrupt handle") > Cc: hka...@marvell.com > Cc: sta...@dpdk.org > > Signed-off-by: Apeksha Gupta >

Re: [PATCH v3 8/8] mempool/dpaax: cache free optimization

2024-07-08 Thread David Marchand
On Mon, Jul 8, 2024 at 9:31 AM wrote: > @@ -118,6 +120,18 @@ dpaa_mbuf_create_pool(struct rte_mempool *mp) > rte_memcpy(bp_info, (void *)&rte_dpaa_bpid_info[bpid], >sizeof(struct dpaa_bp_info)); > mp->pool_data = (void *)bp_info; > + /* Update per core mem

Minutes of DPDK Technical Board Meeting, 2024-06-12

2024-07-08 Thread Honnappa Nagarahalli
Members Attending: Aaron Conole Hemant Agarwal Honnappa Nagarahalli (Chair) Kevin Traynor Morten Brorup Stephen Hemminger Thomas Monjalon NOTE: The Technical Board meetings take place every second Wednesday at 3 pm UTC on https://zoom-lfx.platform.linuxfoundation.org/meeting/96459488340?password

Re: [PATCH] net/nfp: fix offload drop flow rule failed

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 6:37 AM, Chaoyong He wrote: > From: Long Wu > > The issue is caused by an invalid exit logic in flow compile function. > > Fixes: 4839d4b4e180 ("net/nfp: forbid offload flow rules with empty action > list") > Cc: chaoyong...@corigine.com > Cc: sta...@dpdk.org > > Signed-off-by: Lon

Re: [PATCH v2] net/nfp: fix port action core dump

2024-07-08 Thread Ferruh Yigit
On 7/8/2024 4:12 AM, Chaoyong He wrote: > From: Long Wu > > The app will be destroyed if add a port flow action which its > destination port id is invalid. > > Add a check to avoid the problem. > > Fixes: bf4416016c66 ("net/nfp: split out flow item check logic") > Fixes: 18c0ba1d69a8 ("net/nfp:

Re: [v2 1/1] docs: af_xdp device plugin repo update

2024-07-08 Thread Ferruh Yigit
On 5/1/2024 1:36 PM, Maryam Tahhan wrote: > Fixup the references to the AF_XDP Device Plugin repo. > > Fixes: 66a2aca4f512 ("docs: fix AF_XDP device plugin howto") > Cc: sta...@dpdk.org > > Signed-off-by: Maryam Tahhan > Acked-by: Ciara Loftus Acked-by: Ferruh Yigit Applied to dpdk-next-ne

[PATCH v1 0/4] fbarray lookahead/lookbehind fixes

2024-07-08 Thread Anatoly Burakov
Once upon a time, a few patches were submitted by Vipin P R: https://patches.dpdk.org/project/dpdk/patch/1673615669-21011-2-git-send-email-vip...@vmware.com/ https://patches.dpdk.org/project/dpdk/patch/1673615669-21011-3-git-send-email-vip...@vmware.com/ https://patches.dpdk.org/project/dpdk/patch

[PATCH v1 1/4] fbarray: fix incorrect lookahead behavior

2024-07-08 Thread Anatoly Burakov
Currently, whenever last bit of current index mask is set (meaning, there is potentially a run starting at the end of the mask), lookahead loop is entered. In that loop, if the first bit of lookahead mask is not set, the lookahead is stopped, and the current lookahead mask index is assigned to curr

[PATCH v1 2/4] fbarray: fix incorrect lookbehind behavior

2024-07-08 Thread Anatoly Burakov
Currently, whenever first bit of current index mask is set (meaning, there is potentially a run starting at the start of the mask), lookbehind loop is entered. In that loop, if the last bit of lookbehind mask is not set, the lookbehind is stopped, and the current lookbehind mask index is assigned t

[PATCH v1 3/4] fbarray: fix lookahead ignore mask handling

2024-07-08 Thread Anatoly Burakov
When lookahead mask does not have its first bit set, we can infer that we've lost our run. However, currently, we set ignore mask to ignore `need` number of bits, which is incorrect because while there is no *current* run within those bits, we might still be able to start a new run within those ign

[PATCH v1 4/4] fbarray: fix lookbehind ignore mask handling

2024-07-08 Thread Anatoly Burakov
When lookahead mask does not have its last bit set, we can infer that we've lost our run. However, currently, we set ignore mask to ignore first `need` bits, which is incorrect for two reasons: first, using `need` bits as ignore bit count means we might miss opportunities to start a new run within

[PATCH v3] eal/common: fix inconsistent representation of PCI numbers

2024-07-08 Thread Shani Peretz
DPDK allows for two ways to specify PCI device numbers: a full version (":08:00.0") and a short version ("08:00.0"). The problem arises when the application uses one format (e.g., full) when running testpmd, but then tries to use the other format (e.g., short) in a subsequent command, leading t

[RFC] test: remove dead cfgfile tests

2024-07-08 Thread Stephen Hemminger
The tests for the cfgfile library were never built since the conversion to meson (in 2017). Remove the dead code and files, if someone wants to fix them then they can be restored later. See commit b5dc795a8a55 ("test: build app with meson as dpdk-test") Signed-off-by: Stephen Hemminger --- MAINT

dts: dynamic config test suite implementation

2024-07-08 Thread Dean Marx
Dynamic Configuration test suite for ensuring Poll Mode Driver's ability to enable/disable promiscuous and allmulticast mode, and verify the expected behavior in the following four test cases: 1. Default mode - verifies that promiscuous mode is enabled by default, and packets with any destination

dts: add multicast set function to shell

2024-07-08 Thread Dean Marx
added set multicast function for changing allmulticast mode within testpmd. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py | 46 +++ 1 file changed, 46 insertions(+) diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_se

dts: add toggle option to send and capture

2024-07-08 Thread Dean Marx
add option to skip _adjust_addresses method in send_packet_and_capture when test cases involve sending packets with a preset MAC address. Signed-off-by: Dean Marx --- dts/framework/test_suite.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dts/framework/test_suite.py

dts: dynamic config conf schema

2024-07-08 Thread Dean Marx
configuration schema to run dynamic configuration test suite. Signed-off-by: Dean Marx --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/config/conf_yaml_schema.json ind

dts: dynamic config test suite

2024-07-08 Thread Dean Marx
Suite for testing ability of Poll Mode Driver to turn promiscuous mode on/off, allmulticast mode on/off, and show expected behavior when sending packets with known, unknown, broadcast, and multicast destination MAC addresses. Signed-off-by: Dean Marx --- dts/tests/TestSuite_dynamic_config.py | 1

[PATCH v1 0/1] fix device queues initialization

2024-07-08 Thread Hernan Vargas
Fix to initialize device queues explicitly. Hernan Vargas (1): drivers/baseband: fix device queues initialization drivers/baseband/acc/rte_acc100_pmd.c | 1 + drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 2 ++ drivers/baseband/fpga_lte_fec/fpga_lte_fec.c | 2 ++ driv

[PATCH v1 1/1] drivers/baseband: fix device queues initialization

2024-07-08 Thread Hernan Vargas
To prevent incorrect readings, initialize FFT and MLDTS queues to 0. Fixes: 089148fc3f09 ("bbdev: add operation type for MLDTS processing") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- drivers/baseband/acc/rte_acc100_pmd.c | 1 + drivers/baseband/fpga_5gnr_fec/rte_fpga_5gnr

[PATCH v2 0/4] dts: initial dynamic config suite

2024-07-08 Thread Dean Marx
Dynamic Configuration suite for ensuring the Poll Mode Driver's ability to enable/disable promiscuous and allmulticast mode. Verifies the expected behavior in the following four test cases: 1. Default mode - verifies that promiscuous mode is enabled by default, and packets with any destination MAC

[PATCH v2 1/4] dts: add multicast set function to shell

2024-07-08 Thread Dean Marx
added set multicast function for changing allmulticast mode within testpmd. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py | 46 +++ 1 file changed, 46 insertions(+) diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_se

[PATCH v2 2/4] dts: add toggle option to send and capture

2024-07-08 Thread Dean Marx
add option to skip _adjust_addresses method in send_packet_and_capture when test cases involve sending packets with a preset MAC address. Signed-off-by: Dean Marx --- dts/framework/test_suite.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dts/framework/test_suite.py

[PATCH v2 3/4] dts: dynamic config conf schema

2024-07-08 Thread Dean Marx
configuration schema to run dynamic configuration test suite. Signed-off-by: Dean Marx --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/config/conf_yaml_schema.json ind

[PATCH v2 4/4] dts: dynamic config test suite

2024-07-08 Thread Dean Marx
Suite for testing ability of Poll Mode Driver to turn promiscuous mode on/off, allmulticast mode on/off, and show expected behavior when sending packets with known, unknown, broadcast, and multicast destination MAC addresses. Signed-off-by: Dean Marx --- dts/tests/TestSuite_dynamic_config.py | 1

[PATCH v3 1/4] dts: add multicast set function to shell

2024-07-08 Thread Dean Marx
added set multicast function for changing allmulticast mode within testpmd. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py | 46 +++ 1 file changed, 46 insertions(+) diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_se

[PATCH v3 2/4] dts: add toggle option to send and capture

2024-07-08 Thread Dean Marx
add option to skip _adjust_addresses method in send_packet_and_capture when test cases involve sending packets with a preset MAC address. Signed-off-by: Dean Marx --- dts/framework/test_suite.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dts/framework/test_suite.py

[PATCH v3 3/4] dts: dynamic config conf schema

2024-07-08 Thread Dean Marx
configuration schema to run dynamic configuration test suite. Signed-off-by: Dean Marx --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/config/conf_yaml_schema.json ind

[PATCH v3 4/4] dts: dynamic config test suite

2024-07-08 Thread Dean Marx
Suite for testing ability of Poll Mode Driver to turn promiscuous mode on/off, allmulticast mode on/off, and show expected behavior when sending packets with known, unknown, broadcast, and multicast destination MAC addresses. Signed-off-by: Dean Marx --- dts/tests/TestSuite_dynamic_config.py | 1

Re: [PATCH v3] ethdev: Add link_speed lanes support

2024-07-08 Thread Damodharam Ammepalli
On Fri, Jul 5, 2024 at 10:35 AM Ferruh Yigit wrote: > > On 6/17/2024 9:34 PM, Damodharam Ammepalli wrote: > > +/** > > + * @warning > > + * @b EXPERIMENTAL: this API may change, or be removed, without prior > > notice > > + * > > + * Set speed lanes supported by the NIC. > > + * > > + * @param po

Re: [PATCH v3] ethdev: Add link_speed lanes support

2024-07-08 Thread Damodharam Ammepalli
On Fri, Jul 5, 2024 at 10:33 AM Ferruh Yigit wrote: > > On 6/26/2024 3:19 AM, huangdengdui wrote: > > > > On 2024/6/26 5:07, Damodharam Ammepalli wrote: > >> On Wed, Jun 19, 2024 at 8:23 PM huangdengdui > >> wrote: > >>> > >>> Hi Damodharam > >>> Here are some suggestions. See below. > >>> > >>

[PATCH v4] ethdev: Add link_speed lanes support

2024-07-08 Thread Damodharam Ammepalli
Update the eth_dev_ops structure with new function vectors to get, get capabilities and set ethernet link speed lanes. Update the testpmd to provide required config and information display infrastructure. The supporting ethernet controller driver will register callbacks to avail link speed lanes c

Re: [PATCH v4] ethdev: Add link_speed lanes support

2024-07-08 Thread Ajit Khaparde
On Mon, Jul 8, 2024 at 4:30 PM Damodharam Ammepalli wrote: > > Update the eth_dev_ops structure with new function vectors > to get, get capabilities and set ethernet link speed lanes. > Update the testpmd to provide required config and information > display infrastructure. > > The supporting ether

Re: [PATCH v1] vhost: fix crash caused by accessing a freed vsocket

2024-07-08 Thread Gongming Chen
> On Jul 2, 2024, at 3:48 PM, Maxime Coquelin > wrote: > > Hi Gongming, > > On 5/10/24 09:28, Gongming Chen wrote: >> Hi Maxime and Chenbo, >> Do you have any suggestions for how to address this? >> Looking forward to hearing from you! > > Could you please have a try with latest DPDK main b

RE: [PATCH v2 0/4] support AVX2 instruction Rx/Tx function

2024-07-08 Thread Chaoyong He
> On 7/8/2024 6:58 AM, Chaoyong He wrote: > > This patch series add the support of Rx/Tx function using the > > AVX2 instruction. > > > > --- > > v2: rebase to the latest main branch. > > --- > > > > Long Wu (4): > > net/nfp: export more interfaces of NFDk > > net/nfp: support AVX2 Tx function

RE: [PATCH v2 0/7] add trace support for control message

2024-07-08 Thread Chaoyong He
> On 7/8/2024 3:45 AM, Chaoyong He wrote: > > This patch series add trace support for control message send to flower > > firmware. > > > > --- > > v2: rebase to the latest main branch. > > --- > > > > Chaoyong He (7): > > net/nfp: add trace points about port > > net/nfp: add trace point about t

[PATCH v6 0/2] power: introduce PM QoS interface

2024-07-08 Thread Huisong Li
The deeper the idle state, the lower the power consumption, but the longer the resume time. Some service are delay sensitive and very except the low resume time, like interrupt packet receiving mode. And the "/sys/devices/system/cpu/cpuX/power/pm_qos_resume_latency_us" sysfs interface is used to s

[PATCH v6 2/2] examples/l3fwd-power: add PM QoS configuration

2024-07-08 Thread Huisong Li
Add PM QoS configuration to declease the delay after sleep in case of entering deeper idle state. Signed-off-by: Huisong Li Acked-by: Morten Brørup --- examples/l3fwd-power/main.c | 28 1 file changed, 28 insertions(+) diff --git a/examples/l3fwd-power/main.c b/exa

[PATCH v6 1/2] power: introduce PM QoS API on CPU wide

2024-07-08 Thread Huisong Li
The deeper the idle state, the lower the power consumption, but the longer the resume time. Some service are delay sensitive and very except the low resume time, like interrupt packet receiving mode. And the "/sys/devices/system/cpu/cpuX/power/pm_qos_resume_latency_us" sysfs interface is used to s

RE: [PATCH v2 0/7] add trace support for control message

2024-07-08 Thread Chaoyong He
> On 7/8/2024 3:45 AM, Chaoyong He wrote: > > This patch series add trace support for control message send to flower > > firmware. > > > > --- > > v2: rebase to the latest main branch. > > --- > > > > Chaoyong He (7): > > net/nfp: add trace points about port > > net/nfp: add trace point about t

Re: [PATCH v6 2/2] examples/l3fwd-power: add PM QoS configuration

2024-07-08 Thread lihuisong (C)
在 2024/7/9 11:07, Stephen Hemminger 写道: On Tue, 9 Jul 2024 10:29:27 +0800 Huisong Li wrote: + RTE_LCORE_FOREACH(lcore_id) { + if (rte_lcore_is_enabled(lcore_id) == 0) + continue; Why do you need this check? RTE_LCORE_FOREACH calls rte_next_lcore wh

Re: [PATCH v12 0/7] hash: add SVE support for bulk key lookup

2024-07-08 Thread David Marchand
On Mon, Jul 8, 2024 at 2:14 PM Yoan Picchi wrote: > > This patchset adds SVE support for the signature comparison in the cuckoo > hash lookup and improves the existing NEON implementation. These > optimizations required changes to the data format and signature of the > relevant functions to suppor

Re: [PATCH] dpdk-pmdinfo: remove unneeded whitespace

2024-07-08 Thread David Marchand
On Tue, Jul 2, 2024 at 1:59 PM Robin Jarry wrote: > > Stephen Hemminger, Jul 01, 2024 at 19:58: > > Fix the warning > > $ flake8 --max-line-length=100 dpdk-pmdinfo.py > > dpdk-pmdinfo.py:217:40: E203 whitespace before ':' > > > > Signed-off-by: Stephen Hemminger > Acked-by: Robin Jarry Applied,

Re: [PATCH] dpdk-devbind: fix indentation

2024-07-08 Thread David Marchand
On Tue, Jul 2, 2024 at 1:58 PM Robin Jarry wrote: > > Stephen Hemminger, Jul 01, 2024 at 19:45: > > The python check tool (flake8) is picky about the indentation > > of continuation lines, and dpdk-devbind was not following standard. > > > > Error is: > >E127 continuation line over-indente

Re: [PATCH v2] usertools: add telemetry exporter

2024-07-08 Thread David Marchand
On Tue, Apr 16, 2024 at 3:47 PM Robin Jarry wrote: > > For now the telemetry socket is local to the machine running a DPDK > application. Also, there is no official "schema" for the exposed > metrics. Add a framework and a script to collect and expose these > metrics to telemetry and observability

Re: [PATCH] telemetry: lower log level when legacy is not configured

2024-07-08 Thread David Marchand
On Fri, Jul 5, 2024 at 11:05 AM Bruce Richardson wrote: > > On Fri, Jul 05, 2024 at 11:00:20AM +0200, Robin Jarry wrote: > > When starting any DPDK application, this warning log is displayed: > > > > TELEMETRY: No legacy callbacks, legacy socket not created > > > > This brings unnecessary attenti

Re: [PATCH] devtools: fix version variable not initialized

2024-07-08 Thread David Marchand
On Thu, Jun 27, 2024 at 4:28 PM David Marchand wrote: > On Wed, Apr 17, 2024 at 11:32 AM Dengdui Huang > wrote: > > > > The version variable is not initialized. Therefore, if the -V option > > is not specified, the value of $version is obtained from the context, > > which may cause the version m

Re: [PATCH v1 0/4] fbarray lookahead/lookbehind fixes

2024-07-08 Thread David Marchand
On Mon, Jul 8, 2024 at 6:07 PM Anatoly Burakov wrote: > > Once upon a time, a few patches were submitted by Vipin P R: > > https://patches.dpdk.org/project/dpdk/patch/1673615669-21011-2-git-send-email-vip...@vmware.com/ > https://patches.dpdk.org/project/dpdk/patch/1673615669-21011-3-git-send-emai

[v3] raw/zxdh:Optimize device resource mapping process

2024-07-08 Thread Yong Zhang
Use rte_pci_device to map device resources and delete useless device search processes. Signed-off-by: Yong Zhang --- drivers/raw/zxdh/meson.build | 2 +- drivers/raw/zxdh/zxdh_pci.c| 562 - drivers/raw/zxdh/zxdh_pci.h| 41 --- drivers/raw/zxdh/zxdh_ra

raw/zxdh: introduce zxdh raw device driver

2024-07-08 Thread zhang.yong25
Hi David, I have made some changes as suggested. Is there anything else that needs to be changed? Thanks Original From: DavidMarchand To: 张勇10313449; Cc: dev@dpdk.org ; Date: 2024年06月12日 19:28 Subject: Re: raw/zxdh: introduce zxdh raw device driver Hello, On Wed, Jun 12, 2024 at 1:01 PM

[PATCH v7 2/2] examples/l3fwd-power: add PM QoS configuration

2024-07-08 Thread Huisong Li
Add PM QoS configuration to declease the delay after sleep in case of entering deeper idle state. Signed-off-by: Huisong Li Acked-by: Morten Brørup --- examples/l3fwd-power/main.c | 24 1 file changed, 24 insertions(+) diff --git a/examples/l3fwd-power/main.c b/example

[PATCH v7 0/2] power: introduce PM QoS interface

2024-07-08 Thread Huisong Li
The deeper the idle state, the lower the power consumption, but the longer the resume time. Some service are delay sensitive and very except the low resume time, like interrupt packet receiving mode. And the "/sys/devices/system/cpu/cpuX/power/pm_qos_resume_latency_us" sysfs interface is used to s

[PATCH v7 1/2] power: introduce PM QoS API on CPU wide

2024-07-08 Thread Huisong Li
The deeper the idle state, the lower the power consumption, but the longer the resume time. Some service are delay sensitive and very except the low resume time, like interrupt packet receiving mode. And the "/sys/devices/system/cpu/cpuX/power/pm_qos_resume_latency_us" sysfs interface is used to s