[PATCH] net/mlx5: fix counter query during port close

2023-11-09 Thread Suanming Mou
Currently, the counter query service thread queries all the ports which belongs to the same sh. In case one of the ports is closing the query may still be proceeded. This commit adds the pool list in shared context to manage the pool for avoiding query the port during port close. Fixes: 4d368e1da

[PATCH] net/mlx5: fix job flow memory calculation

2023-11-09 Thread Suanming Mou
The upd_flow is the final object in the memory layout. This commit adjusts the new job memory start from upd_flow. Fixes: 63296851fadb ("net/mlx5: support flow rule update") Signed-off-by: Suanming Mou Acked-by: Dariusz Sosnowski --- drivers/net/mlx5/mlx5_flow_hw.c | 3 +-- 1 file changed, 1

RE: [PATCH v3 4/5] pcapng: avoid using alloca()

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Wednesday, 8 November 2023 19.36 > > The function alloca() like VLA's has problems if the caller > passes a large value. Instead use a fixed size buffer (4K) > which will be more than sufficient for the info related blocks > in

RE: release candidate 23.11-rc2

2023-11-09 Thread Xu, HailinX
> -Original Message- > From: Thomas Monjalon > Sent: Tuesday, November 7, 2023 6:22 AM > To: annou...@dpdk.org > Subject: release candidate 23.11-rc2 > > A new DPDK release candidate is ready for testing: >https://git.dpdk.org/dpdk/tag/?id=v23.11-rc2 > > There are 320

[PATCH v1 0/2] fix IPv6 routing extension mismatching

2023-11-09 Thread Rongwei Liu
Fix potential mismatching when IPv6 routing extension item enabled. Rongwei Liu (2): net/mlx5/hws: disable IPv6 routing extension relaxed mode net/mlx5/hws: fix srv6 mismatching drivers/net/mlx5/hws/mlx5dr_definer.c | 24 drivers/net/mlx5/hws/mlx5dr_definer.h | 1 +

[PATCH v1 1/2] net/mlx5/hws: disable IPv6 routing extension relaxed mode

2023-11-09 Thread Rongwei Liu
When relaxed mode is set, definer only programs the fields with mask in the pattern template. Assume a template like "ipv6_routing_ext ext_next_hdr mask 0xff ext_type mask 0xff / udp dst mask 0x" and rule like "ipv6_routing_ext ext_next_hdr spec 17 ext_next_hdr mask 0xff ext_type spec 4 ext_t

[PATCH v1 2/2] net/mlx5/hws: fix srv6 mismatching

2023-11-09 Thread Rongwei Liu
When matching srv6 packets, the IPv6 protocol is set to 0x2b by srv6 callback in fc[IP_PROTO]. In the next layer, TCP/UDP callback reset the fc again to the corresponding values: 0x11/0x6. Signed-off-by: Rongwei Liu Fixes: 00e579166cc0 ("net/mlx5: support IPv6 routing extension matching") Cc: st

[PATCH 0/2] net/mlx5: fix flow rules for external SQ

2023-11-09 Thread Suanming Mou
If representor matching was enabled (device argument repr_matching_en is equal to 1, default configuration), then during registration of external SQs, mlx5 PMD would not create control flow rules in NIC Tx domain. This caused an issue with packet metadata. If a packet sent on external SQ had packet

[PATCH 1/2] net/mlx5: fix missing flow rules for external SQ

2023-11-09 Thread Suanming Mou
From: Dariusz Sosnowski mlx5 PMD exposes a capability to register externally created SQs as if it was an SQ of a given representor port. Registration would cause a creation of control flow rules in FDB domain used to forward traffic betwen SQ and destination represented port. Before this patch,

[PATCH 2/2] net/mlx5: fix destroying external representor matched flows

2023-11-09 Thread Suanming Mou
The external representor matched SQ flows are managed by external SQ, PMD traffic enable/disable should not touch these flows. This commit adds an extra external list for the external representor matched SQ flows. Fixes: 26e1eaf2dac4 ("net/mlx5: support device control for E-Switch default rule")

[Bug 1311] [dpdk-23.11] vhost_virtio_user_interrupt_with_power_monitor: Launch dpdk-l3fwd-power core dumped on SPR

2023-11-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1311 Bug ID: 1311 Summary: [dpdk-23.11] vhost_virtio_user_interrupt_with_power_monitor: Launch dpdk-l3fwd-power core dumped on SPR Product: DPDK Version: 23.11 Hardw

Re: [PATCH v1 1/1] baseband/acc: fix for TB mode on VRB1

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:45, Nicolas Chautru wrote: The input size is computed incorrectly for the LDPC encoder TB processing. Fixes: e640f6cdfa84 ("baseband/acc200: add LDPC processing") Cc: sta...@dpdk.org Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_vrb_pmd.c | 3 ++- 1 file chang

DPDK Release Status Meeting 2023-11-09

2023-11-09 Thread Mcnamara, John
Release status meeting minutes 2023-11-09 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * ARM * Debian/Microsoft * Intel * Marvell * Nvidia * Red Hat Release Dates - The following are the current w

[PATCH 2/2] app/test: fix uninitialized RSS configuration

2023-11-09 Thread Jie Hai
Since RSS algorithm has been supported, and is checked in ethdev layer, it is better to initialize "struct rte_eth_rss_conf" before congiuring RSS. Otherwise, an error will occur. Fixes: 43b630244e7e ("app/test: add dynamic bonding RSS configuration") Fixes: bae3cfa520a7 ("ethdev: clarify RSS rela

[PATCH 0/2] app/test: fix unit test fail on RSS

2023-11-09 Thread Jie Hai
This patch fixes some bugs on test_link_bonding_rssconf. Jie Hai (2): net/null: fix unit test fail on RSS app/test: fix uninitialized RSS configuration app/test/test_link_bonding_rssconf.c | 2 +- drivers/net/null/rte_eth_null.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) --

[PATCH 1/2] net/null: fix unit test fail on RSS

2023-11-09 Thread Jie Hai
The ethdev uses "dev_info->hash_key_size" to check RSS configuration. So drivers should report the correct info, This patch fixes it. For more details: https://bugs.dpdk.org/show_bug.cgi?id=1308 Fixes: bae3cfa520a7 ("ethdev: clarify RSS related fields usage") Cc: sta...@dpdk.org Signed-off-by: Ji

Re: [PATCH v3 10/10] test/bbdev: update python script parameters

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: +# This will become -t option for iter_max in next release +parser.add_argument("-x", "--iter-max", +type=int, +help="Max iterations", +default=6) No need for "-x", it is possible to only hav

Re: [PATCH v3 2/2] doc: update FlexRAN SDK links

2023-11-09 Thread Maxime Coquelin
On 10/28/23 00:03, Nicolas Chautru wrote: From: Hernan Vargas Update FlexRAN SDK module link to use FEC_SDK_23.07. Update compiler links to use ICX. Update build SDK build instructions. Signed-off-by: Hernan Vargas --- doc/guides/bbdevs/turbo_sw.rst | 53 +++--

RFC: default burst sizes in rte_config

2023-11-09 Thread Morten Brørup
> From: Morten Brørup [mailto:m...@smartsharesystems.com] > Sent: Wednesday, 8 November 2023 18.49 > > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Wednesday, 8 November 2023 17.52 > > [...] > > > > Would it make sense to have an rte_config.h value for maximum burst >

[RESEND v7 2/3] ring: add telemetry cmd to list rings

2023-11-09 Thread Jie Hai
Add a telemetry command to list the rings used in the system. An example using this command is shown below: --> /ring/list { "/ring/list": [ "HT_:7d:00.2", "MP_mb_pool_0" ] } Signed-off-by: Jie Hai Acked-by: Konstantin Ananyev Reviewed-by: Honnappa Nagarahalli Acked-by: Huisong

[RESEND v7 3/3] ring: add telemetry cmd for ring info

2023-11-09 Thread Jie Hai
This patch supports dump of ring information by its name. An example using this command is shown below: --> /ring/info,MP_mb_pool_0 { "/ring/info": { "name": "MP_mb_pool_0", "socket": 0, "flags": "0x0", "producer_type": "MP", "consumer_type": "MC", "size": 262144, "ma

[RESEND v7 1/3] ring: fix unmatched type definition and usage

2023-11-09 Thread Jie Hai
Field 'flags' of struct rte_ring is defined as int type. However, it is used as unsigned int. To ensure consistency, change the type of flags to unsigned int. Since these two types has the same byte size, this change is not an ABI change. Fixes: af75078fece3 ("first public release") Signed-off-by

[RESEND v7 0/3] add telemetry cmds for ring

2023-11-09 Thread Jie Hai
This patch set supports telemetry cmd to list rings and dump information of a ring by its name. v1->v2: 1. Add space after "switch". 2. Fix wrong strlen parameter. v2->v3: 1. Remove prefix "rte_" for static function. 2. Add Acked-by Konstantin Ananyev for PATCH 1. 3. Introduce functions to return

Next year of LTSes

2023-11-09 Thread Luca Boccassi
Hi, We should start thinking about the next year of LTSes and how to organize. 20.11 will be EOL after the next upcoming release being prepared now, as it's now 3 years old. So long, and thanks for all the fixes. Currently Kevin is taking care of 21.11 and Xueming of 22.11. Xueming, what do you

Re: [PATCH] event/dlb2: fix name check in selftest

2023-11-09 Thread Jerin Jacob
On Wed, Nov 8, 2023 at 7:02 AM Sevincer, Abdullah wrote: > > Acked-by: Abdullah Sevincer Applied to dpdk-next-eventdev/for-main. Thanks

RE: [RFC] mempool: CPU cache aligning mempool driver accesses

2023-11-09 Thread Morten Brørup
+TO: Andrew, mempool maintainer > From: Morten Brørup [mailto:m...@smartsharesystems.com] > Sent: Monday, 6 November 2023 11.29 > > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Sent: Monday, 6 November 2023 10.45 > > > > On Sat, Nov 04, 2023 at 06:29:40PM +0100, Morten Brørup

Re: [PATCH v3 1/2] baseband/acc: support ACC100 deRM corner case SDK

2023-11-09 Thread Maxime Coquelin
On 10/28/23 00:03, Nicolas Chautru wrote: From: Hernan Vargas Implement de-ratematch pre-processing for ACC100 SW corner cases. Some specific 5GUL FEC corner cases may cause unintended back pressure and in some cases a potential stability issue on the ACC100. The PMD can detect such code blo

[PATCH] doc/rel_notes: add note on libarchive dependencies

2023-11-09 Thread Bruce Richardson
Since DPDK now registers an explicit dependency on libarchive, rather than just putting -larchive in link args, we need to add a documentation note about potential missing dependencies when static linking. Signed-off-by: Bruce Richardson --- doc/guides/rel_notes/release_23_11.rst | 10 ++

Re: [PATCH v4] app/test: append 'allow' parameters to secondary processes

2023-11-09 Thread Bruce Richardson
On Wed, Sep 27, 2023 at 03:42:04AM +, Mingjin Ye wrote: > The 'allow' parameters are not passed to the secondary process, and all > devices will be loaded by default. When the primary process specifies > the 'allow' parameters and does not specify all devices that use the > vfio-pci driver, the

RE: [PATCH v4] net/iavf: fix mbuf release API selection

2023-11-09 Thread Zhang, Qi Z
> -Original Message- > From: Kaiwen Deng > Sent: Thursday, November 9, 2023 12:59 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; Deng, KaiwenX ; Wu, > Jingjing ; Xing, Beilei ; Zeng, > ZhichaoX > Subject: [PATCH v4] net/iavf: fix mbuf release API selectio

Re: [RESEND v7 1/3] ring: fix unmatched type definition and usage

2023-11-09 Thread lihuisong (C)
Acked-by: Huisong Li 在 2023/11/9 18:20, Jie Hai 写道: Field 'flags' of struct rte_ring is defined as int type. However, it is used as unsigned int. To ensure consistency, change the type of flags to unsigned int. Since these two types has the same byte size, this change is not an ABI change. Fix

Re: [RESEND v7 2/3] ring: add telemetry cmd to list rings

2023-11-09 Thread lihuisong (C)
Acked-by: Huisong Li 在 2023/11/9 18:20, Jie Hai 写道: Add a telemetry command to list the rings used in the system. An example using this command is shown below: --> /ring/list { "/ring/list": [ "HT_:7d:00.2", "MP_mb_pool_0" ] } Signed-off-by: Jie Hai Acked-by: Konstantin A

Re: [RESEND v7 3/3] ring: add telemetry cmd for ring info

2023-11-09 Thread lihuisong (C)
Acked-by: Huisong Li 在 2023/11/9 18:20, Jie Hai 写道: This patch supports dump of ring information by its name. An example using this command is shown below: --> /ring/info,MP_mb_pool_0 { "/ring/info": { "name": "MP_mb_pool_0", "socket": 0, "flags": "0x0", "producer_type":

[Bug 1312] When iterating through the mbufs, mbuf->nb_segs indicates there are 21 segments, but when reaching the 8th mbuf, its mbuf->next pointer is NULL

2023-11-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1312 Bug ID: 1312 Summary: When iterating through the mbufs, mbuf->nb_segs indicates there are 21 segments, but when reaching the 8th mbuf, its mbuf->next pointer is NULL Product: DPDK

Re: [PATCH v3 01/10] test/bbdev: fix python script subprocess

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: From: Hernan Vargas test-bbdev.py relying on non-recommended subprocess Popen. This can lead to instabilities where the process cannot be stopped with a sig TERM. Use subprocess run with proper timeout argument. Fixes: f714a18885a6 ("app/testbbdev: a

Re: [PATCH v3 02/10] test/bbdev: rename macros from acc200 to vrb

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: Renaming ACC200 macros to use generic intel vRAN Boost (VRB). No functional impact. Fixes: 69a9d9e139d2 ("baseband/acc: rename files from acc200 to vrb") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas Signed-off-by: Nicolas Chautru --- app/test-

Re: [PATCH v3 03/10] test/bbdev: handle exception for LLR generation

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: From: Hernan Vargas Add range limit to prevent LLR generation greater than the data buffer size. Fixes: 7831a9684356 ("test/bbdev: support BLER for 4G") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 6 +++

[PATCH] net/ena: fix coverity issues

2023-11-09 Thread shaibran
From: Shai Brandes Changed the rte_memcpy call to use the precomputed buf_size. Rearranged the ena adapter structure and removed redundant '&' operators as a precaution. Coverity issue: 405363 Coverity issue: 405357 Coverity issue: 405359 Fixes: 92401abfbcb9 ("net/ena: support connection trackin

Re: [PATCH 0/2] app/test: fix unit test fail on RSS

2023-11-09 Thread Ferruh Yigit
On 11/9/2023 10:05 AM, Jie Hai wrote: > This patch fixes some bugs on test_link_bonding_rssconf. > > Jie Hai (2): > net/null: fix unit test fail on RSS > app/test: fix uninitialized RSS configuration > For series, Acked-by: Ferruh Yigit Commit logs updated while merging. Series applied t

Re: [PATCH] net/ena: fix coverity issues

2023-11-09 Thread Ferruh Yigit
On 11/9/2023 2:08 PM, shaib...@amazon.com wrote: > From: Shai Brandes > > Changed the rte_memcpy call to use the precomputed buf_size. > Rearranged the ena adapter structure and removed redundant > '&' operators as a precaution. > What is the reason of the structure rearrange? > Coverity issu

RE: [PATCH] net/ena: fix coverity issues

2023-11-09 Thread Brandes, Shai
See inside > -Original Message- > From: Ferruh Yigit > Sent: Thursday, November 9, 2023 4:30 PM > To: Brandes, Shai > Cc: dev@dpdk.org; Beider, Ron ; Atrash, Wajeeh > ; Bernstein, Amit > Subject: RE: [EXTERNAL] [PATCH] net/ena: fix coverity issues > > CAUTION: This email originated fro

RE: [PATCH v3 10/10] test/bbdev: update python script parameters

2023-11-09 Thread Chautru, Nicolas
OK with me Maxime, thanks. > -Original Message- > From: Maxime Coquelin > Sent: Thursday, November 9, 2023 2:16 AM > To: Chautru, Nicolas ; dev@dpdk.org > Cc: hemant.agra...@nxp.com; Marchand, David > ; Vargas, Hernan > ; sta...@dpdk.org > Subject: Re: [PATCH v3 10/10] test/bbdev: update

Re: [PATCH v3 07/10] test/bbdev: add MLD support

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: From: Hernan Vargas Adding test-bbdev support for the MLD-TS processing specific to the VRB2 variant. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c | 519 + app/test-

Re: [PATCH v1 0/1] baseband/acc: fix for VRB1 PMD

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:45, Nicolas Chautru wrote: Fix bug for the VRB1 PMD in LDPC Encoder TB mode. Targeting the rc3 if possible. Nicolas Chautru (1): baseband/acc: fix for TB mode on VRB1 drivers/baseband/acc/rte_vrb_pmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Applied to

Re: [PATCH v3 0/2] FlexRAN SDK update for 23.11

2023-11-09 Thread Maxime Coquelin
On 10/28/23 00:03, Nicolas Chautru wrote: v3: rebase typo fixed. v2: rebase typo fixed. Upstreaming SDK workaround for ACC100 and updating documentation for new SDK release. Hernan Vargas (2): baseband/acc: support ACC100 deRM corner case SDK doc: update FlexRAN SDK links doc/gui

Re: [PATCH v3 00/10] test-bbdev changes for 23.11

2023-11-09 Thread Maxime Coquelin
On 11/4/23 00:34, Nicolas Chautru wrote: v3: python script argument fix marked as deprecation first, with formal fix in following release. Maxime let me know if you want to something more formal in the release notes to call it out, currently embedded in script and commit me

Re: [PATCH] net/ena: fix coverity issues

2023-11-09 Thread Ferruh Yigit
On 11/9/2023 3:25 PM, Brandes, Shai wrote: > See inside > >> -Original Message- >> From: Ferruh Yigit >> Sent: Thursday, November 9, 2023 4:30 PM >> To: Brandes, Shai >> Cc: dev@dpdk.org; Beider, Ron ; Atrash, Wajeeh >> ; Bernstein, Amit >> Subject: RE: [EXTERNAL] [PATCH] net/ena: fix c

RE: [PATCH v3 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Thursday, 9 November 2023 16.40 > > On Thu, 9 Nov 2023 08:50:10 +0100 > Morten Brørup wrote: > > > > Signed-off-by: Stephen Hemminger > > > --- > > > > Minor detail: getpid() returns int, so prefer %d over %u. > > Let me che

RE: [PATCH] net/ena: fix coverity issues

2023-11-09 Thread Brandes, Shai
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, November 9, 2023 5:54 PM > To: Brandes, Shai > Cc: dev@dpdk.org; Beider, Ron ; Atrash, Wajeeh > ; Bernstein, Amit > Subject: RE: [EXTERNAL] [PATCH] net/ena: fix coverity issues > > CAUTION: This email originated from outside

Re: [PATCH] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Ferruh Yigit
On 11/8/2023 4:34 PM, Gregory Etelson wrote: > Indirect actions list arguments parser was configured to place target > number into 64bit value, while the code provided 32bits memory. > Hi Gregory, Can you please give more details why 'id' needs to be 64 bits, with callstack or usecase etc? And p

RE: [PATCH v3 4/5] pcapng: avoid using alloca()

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Thursday, 9 November 2023 16.45 > > On Thu, 9 Nov 2023 09:21:22 +0100 > Morten Brørup wrote: > > > I can't find the definition of BUFSIZ. Please make sure to add a > comment to the definition of BUFSIZ mentioning - like in you

RE: [PATCH] config/x86: config support for AMD EPYC processors

2023-11-09 Thread Konstantin Ananyev
> Hi Konstantin, Morten, > > > -Original Message- > > From: Konstantin Ananyev > > Sent: Tuesday, November 7, 2023 8:03 PM > > To: Morten Brørup ; Thomas Monjalon > > ; Kevin Traynor ; Tummala, > > Sivaprasad ; David Marchand > > ; Yigit, Ferruh ; > > bruce.richard...@intel.com; konstan

Re: [RFC] eal: RFC to refactor rte_eal_init into sub-functions

2023-11-09 Thread Rahul Gupta
On (11/08/23 16:40), Thomas Monjalon wrote: > Date: Wed, 08 Nov 2023 16:40:07 +0100 > From: Thomas Monjalon > To: rahul gupta , Dmitry Kozlyuk > > Cc: Stephen Hemminger , Rahul Gupta > , dev@dpdk.org, > sovar...@linux.microsoft.com, ok...@kernel.org, > sujithsan...@microsoft.com, sowmini.vara

Re: [RFC] eal: RFC to refactor rte_eal_init into sub-functions

2023-11-09 Thread Bruce Richardson
On Thu, Nov 09, 2023 at 09:26:27AM -0800, Rahul Gupta wrote: > On (11/08/23 16:40), Thomas Monjalon wrote: > > Date: Wed, 08 Nov 2023 16:40:07 +0100 > > From: Thomas Monjalon > > To: rahul gupta , Dmitry Kozlyuk > > > > Cc: Stephen Hemminger , Rahul Gupta > > , dev@dpdk.org, > > sovar...@linux

[PATCH v4 0/5] dumpcap and pcapng fixes

2023-11-09 Thread Stephen Hemminger
This series has bugfixes and tests for dumpcap and pcapng. It should be in 23.11! It fixes issues related to timestamping. The design choices are to maximize performance in the primary process; and do all the time adjustment in the secondary (dumpcap) since the dumpcap needs to system calls anyway

[PATCH v4 1/5] pdump: fix setting rte_errno on mp error

2023-11-09 Thread Stephen Hemminger
The response from MP server sets err_value to negative on error. The convention for rte_errno is to use a positive value on error. This makes errors like duplicate registration show up with the correct error value. Fixes: 660098d61f57 ("pdump: use generic multi-process channel") Signed-off-by: Ste

[PATCH v4 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Stephen Hemminger
If dumpcap is run twice with each instance pointing a different interface, it would fail because of overlap in ring a pool names. Fix by putting process id in the name. It is still not allowed to do multiple invocations on the same interface because only one callback is allowed and only one copy o

[PATCH v4 3/5] pcapng: modify timestamp calculation

2023-11-09 Thread Stephen Hemminger
The computation of timestamp is best done in the part of pcapng library that is in secondary process. The secondary process is already doing a bunch of system calls which makes it not performance sensitive. This does change the rte_pcapng_copy() and rte_pcapng_write_stats() experimental API's. Sim

[PATCH v4 4/5] pcapng: avoid using alloca()

2023-11-09 Thread Stephen Hemminger
The function alloca() like VLA's has problems if the caller passes a large value. Instead use a fixed size buffer (2K) which will be more than sufficient for the info related blocks in the file. Add bounds checks as well. Signed-off-by: Stephen Hemminger Acked-by: Morten Brørup --- lib/pcapng/r

[PATCH v4 5/5] test: cleanups to pcapng test

2023-11-09 Thread Stephen Hemminger
Overhaul of the pcapng test: - promote it to be a fast test so it gets regularly run. - create null device and use i. - use UDP discard packets that are valid so that for debugging the resulting pcapng file can be looked at with wireshark. - do basic checks on resulting pcap file that l

[PATCH] event/dlb2: fix missing queue ordering capability flag

2023-11-09 Thread Bruce Richardson
The dlb2 driver did not advertise the fact that events could be enqueued to it for any queues, not just those in numerical sequence. Add the missing bit to the capabilities flag returned from the info_get() function. Fixes: d39e23f26e1e ("event/dlb2: fix advertized capabilities") Fixes: e7c9971a85

[PATCH] net/mlx5: fix use after free on Rx queue start

2023-11-09 Thread Dariusz Sosnowski
If RX queue is not started yet, then a mlx5_rxq_obj struct used for storing HW queue objects will be allocated and added to the list held in port's private data structure. After that allocation, Rx queue HW object configuration is done. If that configuration failed, then mlx5_rxq_obj struct is free

[PATCH] net/mlx5: fix unbind of incorrect hairpin queue

2023-11-09 Thread Dariusz Sosnowski
Let's take an application with the following configuration: - It uses 2 ports. - Each port has 3 Rx queues and 3 Tx queues. - On each port, Rx queues have a following purposes: - Rx queue 0 - SW queue, - Rx queue 1 - hairpin queue, bound to Tx queue on the same port, - Rx queue 2 - hairpin q

[PATCH] net/mlx5: fix expected hairpin queue states

2023-11-09 Thread Dariusz Sosnowski
This patch fixes the expected SQ and RQ states used in MODIFY_SQ and MODIFY_RQ during unbinding of the hairpin queues. When unbinding the queue objects, they are in RDY state and are transitioning to RST state, instead of going from RST to RST state. Also, this patch fixes the constants used for R

RE: [PATCH v3 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Thursday, 9 November 2023 18.16 > > On Thu, 9 Nov 2023 08:50:10 +0100 > Morten Brørup wrote: > > > > rte_exit(EXIT_FAILURE, > > > "Packet dump enable on %u:%s failed %s\n", > > >

Re: [PATCH] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Etelson, Gregory
Hello Ferruh, Indirect actions list arguments parser was configured to place target number into 64bit value, while the code provided 32bits memory. Hi Gregory, Can you please give more details why 'id' needs to be 64 bits, with callstack or usecase etc? And please describe what is the observ

RE: [PATCH v4 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Thursday, 9 November 2023 18.34 > > If dumpcap is run twice with each instance pointing a different > interface, it would fail because of overlap in ring a pool names. > Fix by putting process id in the name. > > It is still no

[PATCH v2] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Gregory Etelson
Indirect actions list arguments parser was configured to place target number into 64bit value, while the code provided 32bits memory. The patch updated variable size for translation results. Fixes: 72a3dec7126f ("ethdev: add indirect flow list action") Signed-off-by: Gregory Etelson --- v2: defi

[RFC] event/dsw: support explicit release only mode

2023-11-09 Thread Mattias Rönnblom
Add the RTE_EVENT_DEV_CAP_IMPLICIT_RELEASE_DISABLE capability to the DSW event device. This feature may be used by an EAL thread to pull more work from the work scheduler, without giving up the option to forward events originating from a previous dequeue batch. This in turn allows an EAL thread to

Re: [PATCH 0/5] net/hns3: fix and refactor mailbox code

2023-11-09 Thread Ferruh Yigit
On 11/8/2023 3:44 AM, Jie Hai wrote: > This patchset fixes failure on sync mailbox and refactors some codes on > mailbox. > > Dengdui Huang (5): > net/hns3: fix sync mailbox failure forever > net/hns3: refactor VF mailbox message struct > net/hns3: refactor PF mailbox message struct > net

Re: [PATCH 2/5] net/hns3: refactor VF mailbox message struct

2023-11-09 Thread Ferruh Yigit
On 11/8/2023 3:44 AM, Jie Hai wrote: > From: Dengdui Huang > > The data region in VF to PF mbx memssage command is > s/memssage/message/ Same for next patch > used to communicate with PF driver. And this data > region exists as an array. As a result, some complicated > feature commands, like

Re: [PATCH] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Ferruh Yigit
On 11/9/2023 6:22 PM, Etelson, Gregory wrote: > Hello Ferruh, > >>> Indirect actions list arguments parser was configured to place target >>> number into 64bit value, while the code provided 32bits memory. >>> >> >> Hi Gregory, >> >> Can you please give more details why 'id' needs to be 64 bits, w

Re: [PATCH v2] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Stephen Hemminger
On Thu, 9 Nov 2023 20:36:37 +0200 Gregory Etelson wrote: > diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c > index 0d521159e9..397f9bc3eb 100644 > --- a/app/test-pmd/cmdline_flow.c > +++ b/app/test-pmd/cmdline_flow.c > @@ -11331,7 +11331,7 @@ parse_indlst_id2ptr(struct cont

[PATCH v5 1/5] pdump: fix setting rte_errno on mp error

2023-11-09 Thread Stephen Hemminger
The response from MP server sets err_value to negative on error. The convention for rte_errno is to use a positive value on error. This makes errors like duplicate registration show up with the correct error value. Fixes: 660098d61f57 ("pdump: use generic multi-process channel") Signed-off-by: Ste

[PATCH v5 0/5] dumpcap and pcapng fixes

2023-11-09 Thread Stephen Hemminger
This series has bugfixes and tests for dumpcap and pcapng. It should be in 23.11! It fixes issues related to timestamping. The design choices are to maximize performance in the primary process; and do all the time adjustment in the secondary (dumpcap) since the dumpcap needs to system calls anyway

[PATCH v5 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Stephen Hemminger
If dumpcap is run twice with each instance pointing a different interface, it would fail because of overlap in ring a pool names. Fix by putting process id in the name. It is still not allowed to do multiple invocations on the same interface because only one callback is allowed and only one copy o

[PATCH v5 3/5] pcapng: modify timestamp calculation

2023-11-09 Thread Stephen Hemminger
The computation of timestamp is best done in the part of pcapng library that is in secondary process. The secondary process is already doing a bunch of system calls which makes it not performance sensitive. This does change the rte_pcapng_copy() and rte_pcapng_write_stats() experimental API's. Sim

[PATCH v5 4/5] pcapng: avoid using alloca()

2023-11-09 Thread Stephen Hemminger
The function alloca() like VLA's has problems if the caller passes a large value. Instead use a fixed size buffer (2K) which will be more than sufficient for the info related blocks in the file. Add bounds checks as well. Signed-off-by: Stephen Hemminger Acked-by: Morten Brørup --- lib/pcapng/r

[PATCH v5 5/5] test: cleanups to pcapng test

2023-11-09 Thread Stephen Hemminger
Overhaul of the pcapng test: - promote it to be a fast test so it gets regularly run. - create null device and use i. - use UDP discard packets that are valid so that for debugging the resulting pcapng file can be looked at with wireshark. - do basic checks on resulting pcap file that l

Re: [PATCH] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Etelson, Gregory
Hello Ferruh, Indirect actions list arguments parser was configured to place target number into 64bit value, while the code provided 32bits memory. Hi Gregory, Can you please give more details why 'id' needs to be 64 bits, with callstack or usecase etc? And please describe what is the observ

Re: [PATCH v2] app/testpmd: fix indirect action list parameters parsing

2023-11-09 Thread Bruce Richardson
On Thu, Nov 09, 2023 at 11:41:37AM -0800, Stephen Hemminger wrote: > On Thu, 9 Nov 2023 20:36:37 +0200 > Gregory Etelson wrote: > > > diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c > > index 0d521159e9..397f9bc3eb 100644 > > --- a/app/test-pmd/cmdline_flow.c > > +++ b/app/

RE: [PATCH v5 2/5] dumpcap: allow multiple invocations

2023-11-09 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Thursday, 9 November 2023 20.46 > > If dumpcap is run twice with each instance pointing a different > interface, it would fail because of overlap in ring a pool names. > Fix by putting process id in the name. > > It is still no

RE: [EXT] [PATCH 0/2] remove unnecessary null checks in OpenSSL usage

2023-11-09 Thread Akhil Goyal
> OpenSSL follows null free conventions > > Stephen Hemminger (2): > nullfree: add matches for null free cases from OpenSSL > crypto/openssl: remove unnecessary NULL checks before free > > devtools/cocci/nullfree.cocci| 9 + > drivers/crypto/openssl/rte_openssl_pmd.c

[PATCH] ethdev: add extension keyword to statement expression macro

2023-11-09 Thread Tyler Retzlaff
add missing __extension__ keyword to macros using gcc statement expression extension. Signed-off-by: Tyler Retzlaff --- lib/ethdev/rte_mtr.c | 10 +- lib/ethdev/rte_tm.c | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/ethdev/rte_mtr.c b/lib/ethdev/rte_mtr

RE: [PATCH v3] crypto/openssl: fix memory leaks in asym ops

2023-11-09 Thread Akhil Goyal
> Subject: [PATCH v3] crypto/openssl: fix memory leaks in asym ops > > Fix memory leaks in Asymmetric ops, as reported by valgrind. > > Signed-off-by: Gowrishankar Muthukrishnan > --- > v3: > - changes as suggested in v2. The patch conflicts with Stephen's patch to remove the null checks before

RE: [PATCH v2] test/cryptodev: add ECDH tests

2023-11-09 Thread Akhil Goyal
> Subject: [PATCH v2] test/cryptodev: add ECDH tests > > Add ECDH tests. > > Signed-off-by: Gowrishankar Muthukrishnan > Change-Id: I88099e2ba8e058fbb519a06d09ebb3ece7c7e27f > --- > v2: > - rebased due to patch conflict. Applied to dpdk-next-crypto Removed change-id while merging.

Re: RFC acceptable handling of VLAs across toolchains

2023-11-09 Thread Tyler Retzlaff
On Wed, Nov 08, 2023 at 08:51:54AM -0800, Stephen Hemminger wrote: > On Tue, 7 Nov 2023 11:32:20 -0800 > Tyler Retzlaff wrote: > > > hi folks, > > > > i'm seeking advice. we have use of VLAs which are now optional in > > standard C. some toolchains provide a conformant implementation and msvc >

RE: [EXT] [PATCH] crypto/mlx5: fix crypto dev leak

2023-11-09 Thread Akhil Goyal
> For the case crypto initialize failed, the allocated crypto dev should > be destroyed, otherwise the dev leaked. Current PMD returns directly > instead of releasing the dev. > > This commit fixes the crypto dev leak when initialize failed. > > Fixes: a27f6a2e1f30 ("crypto/mlx5: split AES-XTS")

[PATCH v4] examples/l2fwd-macsec: add MACsec forwarding application

2023-11-09 Thread Akhil Goyal
Added a new application based on l2fwd to demonstrate inline protocol offload MACsec performance using rte_security APIs. Example command: ./dpdk-l2fwd-macsec -a 0002:04:00.0 -a 0002:05:00.0 -c 0x6 -- -p 0x3 \ --mcs-tx-portmask 0x1 --mcs-rx-portmask 0x2 --mcs-port-config \ '(0,02:03:04:05:06:07,01:

Re: [PATCH v4] examples/l2fwd-macsec: add MACsec forwarding application

2023-11-09 Thread Thomas Monjalon
Hi Akhil, 09/11/2023 22:01, Akhil Goyal: > Added a new application based on l2fwd to demonstrate inline protocol > offload MACsec performance using rte_security APIs. In general we try to avoid adding a new example application. Does this one has been discussed already with the techboard? We need

[PATCH v2 0/1] dts: Add the ability to bind ports to drivers

2023-11-09 Thread jspewock
From: Jeremy Spewock Changes in this version address the comments on the last and change what was necessary. Now, we no longer modprobe the driver, but the decision was made to still make driver binding exclusive to the SUT for the time being due to the uncertainty of what binding drivers on the

[PATCH v2 1/1] dts: allow configuring MTU of ports

2023-11-09 Thread jspewock
From: Jeremy Spewock Adds methods in both os_session and linux session to allow for setting MTU of port interfaces in an OS agnostic way. Signed-off-by: Jeremy Spewock --- dts/framework/remote_session/linux_session.py | 7 +++ dts/framework/remote_session/os_session.py| 9 + 2

[PATCH v1 1/7] dts: Add scatter test suite

2023-11-09 Thread jspewock
From: Jeremy Spewock This test suite provides testing the support of scattered packets by Poll Mode Drivers using testpmd. It incorporates 5 different test cases which test the sending and receiving of packets with lengths that are less than the mbuf data buffer size, the same as the mbuf data bu

[PATCH v1 0/7] dts: Port scatter suite over

2023-11-09 Thread jspewock
From: Jeremy Spewock This patch ports over the functionality of the scatter testing suite from "old dts." The idea of the suite is the coverage it provides should be parity with the ethdev testing suite in old DTS. Depends-on: series-30228 ("dts: Add the ability to bind ports to drivers") Jerem

[PATCH v1 2/7] dts: add waiting for port up in testpmd

2023-11-09 Thread jspewock
From: Jeremy Spewock Added a method within the testpmd interactive shell that polls the status of ports and verifies that the link status on a given port is "up." Polling will continue until either the link comes up, or the timeout is reached. Signed-off-by: Jeremy Spewock --- .../remote_sessi

[PATCH v1 3/7] dts: add scatter to the yaml schema

2023-11-09 Thread jspewock
From: Jeremy Spewock Allow for scatter to be specificed in the configuration file. Signed-off-by: Jeremy Spewock --- 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/conf

[PATCH v1 4/7] dts: allow passing parameters into interactive apps

2023-11-09 Thread jspewock
From: Jeremy Spewock Modified interactive applications to allow for the ability to pass parameters into the app on start up. Also modified the way EAL parameters are handled so that the trailing "--" separator is added be default after all EAL parameters. Signed-off-by: Jeremy Spewock --- dts/

[PATCH v1 5/7] dts: add optional packet filtering to scapy sniffer

2023-11-09 Thread jspewock
From: Jeremy Spewock Added the options to filter out LLDP and ARP packets when sniffing for packets with scapy. This was done using BPF filters to ensure that the noise these packets provide does not interfere with test cases. Signed-off-by: Jeremy Spewock --- dts/framework/test_suite.py

[PATCH v1 6/7] dts: add pci addresses to EAL parameters

2023-11-09 Thread jspewock
From: Jeremy Spewock Added allow list to the EAL parameters created in DTS to ensure that only the relevent PCI devices are considered when launching DPDK applications. Signed-off-by: Jeremy Spewock --- dts/framework/testbed_model/sut_node.py | 9 + 1 file changed, 9 insertions(+) dif

[PATCH v1 7/7] dts: allow configuring MTU of ports

2023-11-09 Thread jspewock
From: Jeremy Spewock Adds methods in both os_session and linux session to allow for setting MTU of port interfaces in an OS agnostic way. Signed-off-by: Jeremy Spewock --- dts/framework/remote_session/linux_session.py | 7 +++ dts/framework/remote_session/os_session.py| 9 + 2

  1   2   >