答复: Inquiry Regarding Sending Patches to DPDK

2024-08-15 Thread 王颢
Dear Morten, I have successfully resolved this problem. Prior to the tests, I overlooked the necessity of disabling smtpencryption. However, upon modifying my .gitconfig file as demonstrated below, everything now functions flawlessly. If IT allows anonymous email sending, then the 2FA problem w

[PATCH v2 0/2] examples/l3fwd fixes for ACL mode

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev As Song Jiale pointed outprevious fix is not enough to fix the problem he is observing with l3fwd in ACl mode: https://bugs.dpdk.org/show_bug.cgi?id=1502 This is a second attempt to fix it. Konstantin Ananyev (2): examples/l3fwd: fix read beyond array bondaries examp

[RFC 0/6] Stage-Ordered API and other extensions for ring library

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Konstantin Ananyev (6): ring: common functions for 'move head' ops ring: make copying functions generic ring/soring: introduce Staged Ordered Ring app/test: add unit tests for soring API examples/l3fwd: make ACL work in pipeline and eventdev modes ring: minimi

[RFC 1/6] ring: common functions for 'move head' ops

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: that change doesn't introduce any functional or performance changes. It is just a code-reordering for: - code deduplication - ability in future to re-use the same code to introduce new functionality For each sync mode corresponding move_prod_head() and mo

[RFC 2/6] ring: make copying functions generic

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: that change doesn't introduce any functional or performance changes. It is just a code-reordering for: - improve code modularity and re-usability - ability in future to re-use the same code to introduce new functionality There is no real need for enqueue_

[RFC 3/6] ring/soring: introduce Staged Ordered Ring

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues with multiple processing 'stages'. It is based on conventional DPDK rte_ring, re-uses many of its concepts, and even substantial part of its code. It can be viewed as an 'extension' of rte_ring fu

[RFC 4/6] app/test: add unit tests for soring API

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Add both functional and stess test-cases for soring API. Stress test serves as both functional and performance test of soring enqueue/dequeue/acquire/release operations under high contention (for both over committed and non-over committed scenarios). Signed-off-by: Eimea

[RFC 5/6] examples/l3fwd: make ACL work in pipeline and eventdev modes

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: This is a huge commit that is combined from several ones. For now, I submit it just for reference and demonstration purposes and will probably remove it in future versions. If will decide to go ahead with it, then it needs to be reworked and split into sever

[RFC 6/6] ring: minimize reads of the counterpart cache-line

2024-08-15 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: this change shouldn't affect rte_ring public API. Though as layout of public structures have changed - it is an ABI breakage. This is an attempt to implement rte_ring optimization that was suggested by Morten and discussed on this mailing list a while ago.

RE: [PATCH v2 0/2] examples/l3fwd fixes for ACL mode

2024-08-15 Thread Konstantin Ananyev
Sorry, that's a dup, sent by mistake this time. Please disregard. Konstantin > -Original Message- > From: Konstantin Ananyev > Sent: Thursday, August 15, 2024 9:53 AM > To: dev@dpdk.org > Cc: honnappa.nagaraha...@arm.com; jer...@marvell.com; hemant.agra...@nxp.com; > bruce.richard...@int

crc stripping for vf on same pf

2024-08-15 Thread Yaron Illouz
I have 2 pods running on same worker Pod1 send to pod2 Pod2 receive with 4 bytes less at end of packet This problem happens only if the 2 nic are on the same pf, If different pf, the problem doesn’t occurs I tried with dpdk21 and dpdk22 The code is using driver net_iavf nic e810c driver: ice fir

Re: 22.11.6 patches review and test

2024-08-15 Thread Luca Boccassi
On Wed, 31 Jul 2024 at 20:37, wrote: > > Hi all, > > Here is a list of patches targeted for stable release 22.11.6. > > The planned date for the final release is August 20th. > > Please help with testing and validation of your use cases and report > any issues/results with reply-all to this mail.

RE: [RFC 3/6] ring/soring: introduce Staged Ordered Ring

2024-08-15 Thread Morten Brørup
> From: Konstantin Ananyev > > Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues > with multiple processing 'stages'. > It is based on conventional DPDK rte_ring, re-uses many of its concepts, > and even substantial part of its code. > It can be viewed as an 'extension'

[PATCH] net/af_packet: add explicit flush for Tx

2024-08-15 Thread vignesh.purushotham.srinivas
From: Vignesh PS af_packet PMD uses system calls to transmit packets. Separate the transmit function into two different calls so its possible to avoid syscalls during transmit. Signed-off-by: Vignesh PS --- .mailmap | 1 + doc/guides/nics/af_packet.rst

[PATCH] net/bonding: add user callback for bond xmit policy

2024-08-15 Thread vignesh.purushotham.srinivas
From: Vignesh PS Add support to bonding PMD to allow user callback function registration for TX transmit policy. Signed-off-by: Vignesh PS --- .mailmap| 1 + drivers/net/bonding/eth_bond_private.h | 6 ++ drivers/net/bonding/rte_eth_bond.h | 17 +

RE: [RFC 3/6] ring/soring: introduce Staged Ordered Ring

2024-08-15 Thread Konstantin Ananyev
> > From: Konstantin Ananyev > > > > Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues > > with multiple processing 'stages'. > > It is based on conventional DPDK rte_ring, re-uses many of its concepts, > > and even substantial part of its code. > > It can be viewed as

RE: [RFC 3/6] ring/soring: introduce Staged Ordered Ring

2024-08-15 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > > From: Konstantin Ananyev > > > > > > Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' > queues > > > with multiple processing 'stages'. > > > It is based on conventional DPDK rte_ring, re-uses many of it

[PATCH] app/testpmd: add L4 port to verbose output

2024-08-15 Thread Alex Chapman
To help distinguish packets we want to add more identifiable information and print port number for all packets. This will make packet metadata more uniform as previously it only printed port number for encapsulated packets. Bugzilla-ID: 1517 Signed-off-by: Alex Chapman Reviewed-by: Luca Vizzarro

Re: [PATCH] app/testpmd: add L4 port to verbose output

2024-08-15 Thread Stephen Hemminger
On Thu, 15 Aug 2024 15:20:51 +0100 Alex Chapman wrote: > To help distinguish packets we want to add more identifiable > information and print port number for all packets. > This will make packet metadata more uniform as previously it > only printed port number for encapsulated packets. > > Bugzi

Re: [PATCH] net/bonding: add user callback for bond xmit policy

2024-08-15 Thread Patrick Robb
Recheck-request: iol-marvell-Functional Putting in a retest for this.

RE: 22.11.6 patches review and test

2024-08-15 Thread Ali Alnubani
> -Original Message- > From: Luca Boccassi > Sent: Thursday, August 15, 2024 2:11 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Ali Alnubani ; John McNamara > ; Raslan Darawsheh ; NBU- > Contact-Thomas Monjalon (EXTERNAL) > Subject: Re: 22.11.6 patches review and test > > On Wed, 31 Jul 2

Re: 22.11.6 patches review and test

2024-08-15 Thread Luca Boccassi
On Thu, 15 Aug 2024 at 17:19, Ali Alnubani wrote: > > > -Original Message- > > From: Luca Boccassi > > Sent: Thursday, August 15, 2024 2:11 PM > > To: sta...@dpdk.org > > Cc: dev@dpdk.org; Ali Alnubani ; John McNamara > > ; Raslan Darawsheh ; NBU- > > Contact-Thomas Monjalon (EXTERNAL) >

Re: [dpdk-dev] [PATCH v3 5/5] devtools: test different build types

2024-08-15 Thread Stephen Hemminger
On Sun, 8 Aug 2021 14:51:38 +0200 Thomas Monjalon wrote: > All builds were of type debugoptimized. > It is kept only for builds having an ABI check. > Others will have the default build type (release), > except if specified differently as in the x86 generic build > which will be a test of the no

DTS WG Meeting Minutes - August 15, 2024

2024-08-15 Thread Patrick Robb
# August 15, 2024 Attendees * Patrick Robb * Jeremy Spewock * Alex Chapman * Juraj Linkeš * Tomas Durovec * Dean Marx * Luca Vizzarro * Paul Szczepanek * Nicholas Pratte

Ethdev tracepoints optimization

2024-08-15 Thread Adel Belkhiri
Hi DPDK Community, I am currently working on developing performance analyses for applications using the ethdev library. These analyses are being implemented in Trace Compass, an open-source performance analyzer. One of the views I’ve implemented shows the rate of traffic received or sent by an eth

RE: [EXTERNAL] Re: [PATCH v5 1/1] examples/l2fwd-jobstats: fix lock availability

2024-08-15 Thread Rakesh Kudurumalla
> -Original Message- > From: Stephen Hemminger > Sent: Sunday, August 11, 2024 9:47 PM > To: Rakesh Kudurumalla > Cc: ferruh.yi...@amd.com; andrew.rybche...@oktetlabs.ru; > or...@nvidia.com; tho...@monjalon.net; dev@dpdk.org; Jerin Jacob > ; Nithin Kumar Dabilpuram > ; sta...@dpdk.org