Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread Thomas Monjalon
30/07/2023 19:12, Stephen Hemminger: > On Sat, 29 Jul 2023 19:12:05 -0700 > Stephen Hemminger wrote: > > > Deprecation and removal was announced in 22.11. > > Make it so. Would be good to summarize the reason here, and name replacements. Also it should not be completely removed. I think we were

[PATCH 0/3] version: 23.11-rc0

2023-07-31 Thread David Marchand
Prepare the new release. I chose to separate the compat code cleanup in the telemetry and vhost libraries for making it easier to review, though the 3 patches could be squashed in a single change. -- David Marchand David Marchand (3): version: 23.11-rc0 telemetry: remove v23 ABI compatibil

[PATCH 1/3] version: 23.11-rc0

2023-07-31 Thread David Marchand
Start a new release cycle with empty release notes. The ABI version becomes 24.0. The map files are updated to the new ABI major number (24). The ABI exceptions are dropped and CI ABI checks are disabled because compatibility is not preserved. The telemetry and vhost libraries compat code is clea

[PATCH 2/3] telemetry: remove v23 ABI compatibility

2023-07-31 Thread David Marchand
v23.11 is a ABI breaking release, remove compatibility code for the previous major ABI version. Signed-off-by: David Marchand --- lib/telemetry/meson.build | 1 - lib/telemetry/telemetry_data.c | 33 - lib/telemetry/telemetry_data.h | 6 -- lib/telemetr

[PATCH 3/3] vhost: remove v23 ABI compatibility

2023-07-31 Thread David Marchand
v23.11 is a ABI breaking release, remove compatibility code for the previous major ABI version. Signed-off-by: David Marchand --- lib/vhost/meson.build | 2 -- lib/vhost/socket.c| 59 +++ lib/vhost/version.map | 8 +- lib/vhost/vhost.h | 6 -

Re: [PATCH 1/3] version: 23.11-rc0

2023-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 11:43:53AM +0200, David Marchand wrote: > Start a new release cycle with empty release notes. > > The ABI version becomes 24.0. > The map files are updated to the new ABI major number (24). > The ABI exceptions are dropped and CI ABI checks are disabled because > compatibil

Re: [PATCH 2/3] telemetry: remove v23 ABI compatibility

2023-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 11:43:54AM +0200, David Marchand wrote: > v23.11 is a ABI breaking release, remove compatibility code for the > previous major ABI version. > > Signed-off-by: David Marchand > --- Acked-by: Bruce Richardson

Re: [PATCH 0/3] version: 23.11-rc0

2023-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 11:43:52AM +0200, David Marchand wrote: > Prepare the new release. > > I chose to separate the compat code cleanup in the telemetry and vhost > libraries for making it easier to review, though the 3 patches could be > squashed in a single change. > I actually think they ar

[PATCH v6 0/3] Split logging functionality out of EAL

2023-07-31 Thread Bruce Richardson
There is a general desire to reduce the size and scope of EAL. To this end, this patchset makes a (very) small step in that direction by taking the logging functionality out of EAL and putting it into its own library that can be built and maintained separately. As with the first RFC for this, the

[PATCH v6 1/3] eal/windows: move fnmatch function to header file

2023-07-31 Thread Bruce Richardson
To allow the fnmatch function to be shared between libraries, without having to export it into the public namespace (since it's not prefixed with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows fnmatch function to be static and limited in scope to the current file, preventing dup

[PATCH v6 2/3] log: separate logging functions out of EAL

2023-07-31 Thread Bruce Richardson
Move the logging capability to a separate library, free from EAL. Rename files as appropriate, and use meson.build to select the correct file to be built for each operating system, rather than having a subdir per-os. Add new documentation section in programmers guide to cover logging in more detail

[PATCH v6 3/3] telemetry: use standard logging

2023-07-31 Thread Bruce Richardson
Now that logging is moved out of EAL, we don't need injection of the logtype and logging function from EAL to telemetry library, simplifying things. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Tyler Retzlaff --- lib/eal/freebsd/eal.c | 6 +- lib/eal/linu

Re: [PATCH 0/3] version: 23.11-rc0

2023-07-31 Thread Thomas Monjalon
31/07/2023 12:02, Bruce Richardson: > On Mon, Jul 31, 2023 at 11:43:52AM +0200, David Marchand wrote: > > Prepare the new release. > > > > I chose to separate the compat code cleanup in the telemetry and vhost > > libraries for making it easier to review, though the 3 patches could be > > squashed

[PATCH] build: update DPDK to use C11 standard

2023-07-31 Thread Bruce Richardson
As previously announced, DPDK 23.11 will require a C11 supporting compiler and will use the C11 standard in all builds. Signed-off-by: Bruce Richardson --- When moving the information about the new requirement to the release notes, a change like this doesn't seem to fit into any existing sectio

RE: [PATCH] build: update DPDK to use C11 standard

2023-07-31 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Monday, 31 July 2023 12.39 > > As previously announced, DPDK 23.11 will require a C11 supporting > compiler and will use the C11 standard in all builds. > > Signed-off-by: Bruce Richardson > > --- Acked-by: Morten Brørup

[PATCH v2 1/7] drivers: changes for dmadev driver

2023-07-31 Thread Amit Prakash Shukla
Dmadev driver changes to align with dpdk spec. Signed-off-by: Amit Prakash Shukla --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk/cnxk_dmadev.c | 464 - drivers/dma/cnxk/cnxk_dmadev.h | 24 +- 2 files changed, 294 insertions(+), 1

[PATCH v2 2/7] dma/cnxk: add DMA devops for all models of cn10xxx

2023-07-31 Thread Amit Prakash Shukla
Valid function pointers are set for DMA device operations i.e. cn10k_dmadev_ops are used for all cn10k devices. Signed-off-by: Radha Mohan Chintakuntla Signed-off-by: Amit Prakash Shukla --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk/cnxk_dmadev.c | 2 ++ 1 fil

[PATCH v2 3/7] dma/cnxk: update func field based on transfer type

2023-07-31 Thread Amit Prakash Shukla
Use pfid and vfid of src_port for incoming DMA transfers and dst_port for outgoing DMA transfers. Signed-off-by: Radha Mohan Chintakuntla Signed-off-by: Amit Prakash Shukla --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk/cnxk_dmadev.c | 26 ++

[PATCH v2 4/7] dma/cnxk: increase vchan per queue to max 4

2023-07-31 Thread Amit Prakash Shukla
To support multiple directions in same queue make use of multiple vchan per queue. Each vchan can be configured in some direction and used. Signed-off-by: Amit Prakash Shukla Signed-off-by: Radha Mohan Chintakuntla --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk

[PATCH v2 5/7] dma/cnxk: vchan support enhancement

2023-07-31 Thread Amit Prakash Shukla
Code changes to realign dpi private structure based on vchan. Changeset also resets DMA dev stats while starting dma device. Signed-off-by: Amit Prakash Shukla --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk/cnxk_dmadev.c | 210 -

[PATCH v2 6/7] common/cnxk: use unique name for DPI memzone

2023-07-31 Thread Amit Prakash Shukla
roc_dpi was using vfid as part of name for memzone allocation. This led to memzone allocation failure in case of multiple physical functions. vfid is not unique by itself since multiple physical functions can have the same virtual function indices. So use complete DBDF as part of memzone name to ma

[PATCH v2 7/7] dma/cnxk: add completion ring tail wrap check

2023-07-31 Thread Amit Prakash Shukla
From: Vamsi Attunuru Adds a check to avoid tail wrap when completion desc ring is full. Also patch increase max desc size to 2048. Signed-off-by: Vamsi Attunuru --- v2: - Fix for bugs observed in v1. - Squashed few commits. drivers/dma/cnxk/cnxk_dmadev.c | 22 -- drivers/d

Re: [PATCH v4] eal: non-temporal memcpy

2023-07-31 Thread Thomas Monjalon
Hello, What's the status of this feature? 10/10/2022 08:46, Morten Brørup: > This patch provides a function for memory copy using non-temporal store, > load or both, controlled by flags passed to the function. > > Applications sometimes copy data to another memory location, which is only > used

Re: [PATCH v12 1/2] mempool cache: add zero-copy get and put functions

2023-07-31 Thread Thomas Monjalon
Olivier, Andrew, any comments? 21/07/2023 18:28, Dharmik Thakkar: > From: Morten Brørup > > Zero-copy access to mempool caches is beneficial for PMD performance. > Furthermore, having a zero-copy mempool API is considered a precondition > for fixing a certain category of bugs, present in some P

Re: [PATCH 0/1] mempool: implement index-based per core cache

2023-07-31 Thread Thomas Monjalon
The v2 was not sent, and Stephen dropped the patch from patchwork. Do we abandon this feature? Should I remove it from the roadmap? 06/07/2023 19:43, Stephen Hemminger: > On Thu, 13 Jan 2022 05:31:18 + > Dharmik Thakkar wrote: > > > Hi, > > > > Thank you for your valuable review comments

RE: [PATCH v4] eal: non-temporal memcpy

2023-07-31 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, 31 July 2023 14.14 > > Hello, > > What's the status of this feature? I haven't given up on upstreaming this feature, but there doesn't seem to be much demand for it, so working on it has low priority. > > > 10/10/2022 08:46

Re: [RFC] ring: further performance improvements with C11

2023-07-31 Thread Thomas Monjalon
15/06/2023 22:13, Wathsala Vithanage: > For improved performance over the current C11 based ring implementation > following changes were made. > (1) Replace tail store with RELEASE semantics in __rte_ring_update_tail > with a RELEASE fence. Replace load of the tail with ACQUIRE semantics > in __rt

Re: [PATCH v11 0/4] add support for self monitoring

2023-07-31 Thread Thomas Monjalon
Ping for update What is the status of this feature? 04/05/2023 10:02, David Marchand: > Hello Tomasz, > > On Thu, Feb 16, 2023 at 6:55 PM Tomasz Duszynski > wrote: > > > > This series adds self monitoring support i.e allows to configure and > > read performance measurement unit (PMU) counters

RE: [PATCH 0/1] mempool: implement index-based per core cache

2023-07-31 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, 31 July 2023 14.24 > > The v2 was not sent, and Stephen dropped the patch from patchwork. > > Do we abandon this feature? +1, because I think that the zero-copy mempool cache access functions make this patch irrelevant. > Sho

Re: [dpdk-dev] [PATCH ] common/cnxk: fix setting default flow action

2023-07-31 Thread Jerin Jacob
On Mon, Jul 31, 2023 at 8:26 AM wrote: > > From: Satheesh Paul > > For MCAM rules with PF/VF action, the PF's default rule action is > is copied and overwritten over the user provided action. Fixing this > by setting default action only if no other action (like queue) is > specified by user. > >

Re: [PATCH v4] dmadev: add tracepoints

2023-07-31 Thread Thomas Monjalon
10/07/2023 09:50, fengchengwen: > Hi Thomas, > > On 2023/7/10 14:49, Thomas Monjalon wrote: > > 09/07/2023 05:23, fengchengwen: > >> Hi Thomas, > >> > >> On 2023/7/7 18:40, Thomas Monjalon wrote: > >>> 26/05/2023 10:42, Chengwen Feng: > Add tracepoints at important APIs for tracing support. >

Re: [dpdk-dev] [PATCH 1/3] mbuf: add Tx offloads for packet marking

2023-07-31 Thread Thomas Monjalon
Please can you remind what was decided for this feature? I think I should remove it from the roadmap. 17/04/2020 09:22, Nithin Dabilpuram: > From: Nithin Dabilpuram > > Introduce PKT_TX_MARK_IP_DSCP, PKT_TX_MARK_IP_ECN > and PKT_TX_MARK_VLAN_DEI Tx offload flags to support > packet marking. >

[Bug 1268] dma/idxd appends extra characters which makes test-dma-perf to fail.

2023-07-31 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1268 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|

[Bug 1259] [dpdk-23.07] vf_smoke: vf cannot forward packets

2023-07-31 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1259 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resoluti

[Bug 1160] IPv4 FIB 0.0.0.0/0 route doesn't work when first route added to FIB and using TBL24_8

2023-07-31 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1160 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resoluti

Re: [dpdk-dev] Marvell DPDK v20.08 Roadmap

2023-07-31 Thread Thomas Monjalon
29/05/2020 14:50, Jerin Kollanukkaran: > octeontx2 network PMD: > ~~ > 12) Add devargs for locking the NDC context for NIX. > http://patches.dpdk.org/patch/67489/ > > 13) Add packet mirroring support It seems packet mirroring never got implemented? octeontx2 has been replaced

Re: [dpdk-dev] Marvell DPDK v20.08 Roadmap

2023-07-31 Thread Jerin Jacob
On Mon, Jul 31, 2023 at 6:36 PM Thomas Monjalon wrote: > > 29/05/2020 14:50, Jerin Kollanukkaran: > > octeontx2 network PMD: > > ~~ > > 12) Add devargs for locking the NDC context for NIX. > > http://patches.dpdk.org/patch/67489/ > > > > 13) Add packet mirroring support > > It

[PATCH] test/event: remove timer state check

2023-07-31 Thread pbhagavatula
From: Pavan Nikhilesh Remove checking if timer state is set to RTE_EVENT_TIMER_NOT_ARMED after the timer has expired as certain timer device implementations might not have access to the rte_event_timer handle of a timer event. Signed-off-by: Pavan Nikhilesh --- app/test/test_event_timer_adapte

Re: [dpdk-dev] Marvell DPDK v20.08 Roadmap

2023-07-31 Thread Thomas Monjalon
31/07/2023 15:08, Jerin Jacob: > On Mon, Jul 31, 2023 at 6:36 PM Thomas Monjalon wrote: > > > > 29/05/2020 14:50, Jerin Kollanukkaran: > > > octeontx2 network PMD: > > > ~~ > > > 12) Add devargs for locking the NDC context for NIX. > > > http://patches.dpdk.org/patch/67489/ > >

Re: [PATCH 0/3] version: 23.11-rc0

2023-07-31 Thread David Marchand
On Mon, Jul 31, 2023 at 11:44 AM David Marchand wrote: > > Prepare the new release. > > I chose to separate the compat code cleanup in the telemetry and vhost > libraries for making it easier to review, though the 3 patches could be > squashed in a single change. Series applied. Here we go. If n

Re: [dpdk-dev] Marvell DPDK 20.11 Roadmap

2023-07-31 Thread Thomas Monjalon
23/08/2020 10:36, Jerin Jacob Kollanukkaran: > Qede network PMD: > ~ > 14) SRIOV-PF support > 15) rte_flow support > 16) PMD changed to support next generation HW The 2 last items are still in the online roadmap. I don't expect more changes, so I will remove them from the roadmap.

Re: [PATCH v6 00/26] Net/SPNIC: support SPNIC into DPDK 22.03

2023-07-31 Thread Thomas Monjalon
13/04/2023 11:02, Ferruh Yigit: > On 2/18/2022 9:30 AM, Yanling Song wrote: > > On Sun, 13 Feb 2022 19:07:09 +0100 > > Thomas Monjalon wrote: > >> If you don't want to keep a copyright, don't copy the code. > >> > > Got it. We will modify the code to meet the requirement of community > > and upstr

Re: Intel roadmap for 22.07

2023-07-31 Thread Thomas Monjalon
24/03/2022 09:32, Mcnamara, John: > * QAT PMD remove deprecated dependency on openssl 1.x Was this really done? I'm lost in QAT dependency. Should I remove this item from the online roadmap?

Re: [dpdk-dev] [PATCH] update Intel roadmap for 21.11

2023-07-31 Thread Thomas Monjalon
Hello, 03/09/2021 17:15, Ferruh Yigit: > +- control adapter and RX adapter enhancements in DLB driver Any news about this feature? Was it implemented? Should I remove it from the online roadmap?

Re: [PATCH v1] maintainers: update maintainer for DLB Driver

2023-07-31 Thread Thomas Monjalon
10/07/2023 21:52, Sevincer, Abdullah: > 28/06/2023 01:21, Thomas Monjalon: > > 26/06/2023 10:04, Abdullah Sevincer: > > > Abdullah Sevincer is now maintainer for DLB Driver. > > > > > > Signed-off-by: Abdullah Sevincer > > > --- > > > > > > Intel DLB2 > > > > > > -M: Timothy McDaniel > > > +M

[PATCH v7 0/2] Select optional libraries

2023-07-31 Thread David Marchand
This series is one implementation to try and please users who want to select more easily which parts of DPDK are built. It introduces a change in behavior for enabling deprecated libraries: this series is aimed at the next release but sent early as a demo of what changes are required. A deprecati

[PATCH v7 1/2] build: select deprecated libraries

2023-07-31 Thread David Marchand
Rework deprecated libraries selection by introducing a new configuration option. This breaks existing configurations that were relying on disable_libs='' for enabling deprecated libraries. On the other hand, it will make enabling optional libraries more straightforward by taking the deprecated lib

[PATCH v7 2/2] build: select optional libraries

2023-07-31 Thread David Marchand
There is currently no way to know which libraries are optional. Introduce a enable_libs option (close to what we have for drivers) so that packagers or projects consuming DPDK can more easily select the optional libraries that matter to them and disable other optional libraries. Signed-off-by: Dav

RE: [PATCH 0/1] mempool: implement index-based per core cache

2023-07-31 Thread Dharmik Jayesh Thakkar
> -Original Message- > From: Morten Brørup > Sent: Monday, July 31, 2023 7:33 AM > To: tho...@monjalon.net; Dharmik Jayesh Thakkar > > Cc: dev@dpdk.org; Jerin Jacob ; Bruce Richardson > ; Honnappa Nagarahalli > ; nd ; Ruifeng Wang > ; Stephen Hemminger > ; olivier.m...@6wind.com; > and

Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread Stephen Hemminger
On Mon, 31 Jul 2023 10:40:35 +0200 Thomas Monjalon wrote: > 30/07/2023 19:12, Stephen Hemminger: > > On Sat, 29 Jul 2023 19:12:05 -0700 > > Stephen Hemminger wrote: > > > > > Deprecation and removal was announced in 22.11. > > > Make it so. > > Would be good to summarize the reason here, >

Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread David Marchand
On Mon, Jul 31, 2023 at 5:13 PM Stephen Hemminger wrote: > > > 2. The OVSrobot is looking into the port library to see the kni symbols. > > > But port is marked as deprecated already. > > > Perhaps we should just pull out port first? > > > > No we must support it until it is removed. > > You shoul

Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread Thomas Monjalon
31/07/2023 17:13, Stephen Hemminger: > On Mon, 31 Jul 2023 10:40:35 +0200 > Thomas Monjalon wrote: > > > 30/07/2023 19:12, Stephen Hemminger: > > > On Sat, 29 Jul 2023 19:12:05 -0700 > > > Stephen Hemminger wrote: > > > > > > > Deprecation and removal was announced in 22.11. > > > > Make it s

[PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-07-31 Thread Bruce Richardson
To allow the fnmatch function to be shared between libraries, without having to export it into the public namespace (since it's not prefixed with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows fnmatch function to be static and limited in scope to the current file, preventing dup

[PATCH v7 0/3] Split logging functionality out of EAL

2023-07-31 Thread Bruce Richardson
There is a general desire to reduce the size and scope of EAL. To this end, this patchset makes a (very) small step in that direction by taking the logging functionality out of EAL and putting it into its own library that can be built and maintained separately. As with the first RFC for this, the

[PATCH v7 2/3] log: separate logging functions out of EAL

2023-07-31 Thread Bruce Richardson
Move the logging capability to a separate library, free from EAL. Rename files as appropriate, and use meson.build to select the correct file to be built for each operating system, rather than having a subdir per-os. Add new documentation section in programmers guide to cover logging in more detail

[PATCH v7 3/3] telemetry: use standard logging

2023-07-31 Thread Bruce Richardson
Now that logging is moved out of EAL, we don't need injection of the logtype and logging function from EAL to telemetry library, simplifying things. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Tyler Retzlaff --- lib/eal/freebsd/eal.c | 6 +- lib/eal/linu

[PATCH v2] build: update DPDK to use C11 standard

2023-07-31 Thread Bruce Richardson
As previously announced, DPDK 23.11 will require a C11 supporting compiler and will use the C11 standard in all builds. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- V2: * Resubmit now that 23.11-rc0 patch applied * Add _POSIX_C_SOURCE macro to eal_common_errno.c to get POSIX de

[PATCH] cmdline: remove cmdline_poll()

2023-07-31 Thread Stephen Hemminger
The API functions cmdline_poll() was unused by any project, untested, and it was buggy. Remove it from 23.11 release. Signed-off-by: Stephen Hemminger --- doc/guides/rel_notes/release_23_11.rst | 10 +--- lib/cmdline/cmdline.c | 34 - lib/cmdline/cmdline.h

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-07-31 Thread David Marchand
On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson wrote: > diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in > index 1a4210b948..40f7dd2877 100644 > --- a/doc/api/doxy-api.conf.in > +++ b/doc/api/doxy-api.conf.in > @@ -52,6 +52,7 @@ INPUT = > @TOPDIR@/doc/api/doxy-

Re: [PATCH v2] build: update DPDK to use C11 standard

2023-07-31 Thread Tyler Retzlaff
On Mon, Jul 31, 2023 at 04:58:02PM +0100, Bruce Richardson wrote: > As previously announced, DPDK 23.11 will require a C11 supporting > compiler and will use the C11 standard in all builds. > > Signed-off-by: Bruce Richardson > Acked-by: Morten Brørup > > --- Acked-by: Tyler Retzlaff

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 06:22:40PM +0200, David Marchand wrote: > On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson > wrote: > > diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in > > index 1a4210b948..40f7dd2877 100644 > > --- a/doc/api/doxy-api.conf.in > > +++ b/doc/api/doxy-api.con

Re: [PATCH] cmdline: remove cmdline_poll()

2023-07-31 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 09:12:32AM -0700, Stephen Hemminger wrote: > The API functions cmdline_poll() was unused by any project, > untested, and it was buggy. Remove it from 23.11 release. > > Signed-off-by: Stephen Hemminger > --- > doc/guides/rel_notes/release_23_11.rst | 10 +--- > lib/cmdlin

Re: [PATCH v2] build: update DPDK to use C11 standard

2023-07-31 Thread Tyler Retzlaff
On Mon, Jul 31, 2023 at 04:58:02PM +0100, Bruce Richardson wrote: > As previously announced, DPDK 23.11 will require a C11 supporting > compiler and will use the C11 standard in all builds. > > Signed-off-by: Bruce Richardson > Acked-by: Morten Brørup > > --- > V2: > * Resubmit now that 23.11-r

[PATCH v3] build: update DPDK to use C11 standard

2023-07-31 Thread Bruce Richardson
As previously announced, DPDK 23.11 will require a C11 supporting compiler and will use the C11 standard in all builds. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Tyler Retzlaff --- V3: * remove (now unneeded) use of -std=gnu99 in failsafe net driver. V2: * Resubmit now

Registration reminder for DPDK Dublin Summit

2023-07-31 Thread Nathan Southern
Good afternoon DPDK Community, September 12-13, 2023 we will have the DPDK Summit at the Gibson Hotel in Point Square in Dublin. Once again, registration and attendance for this event are *free!* The schedule is posted here, and we have a dynamic two-day line-up of speakers: https://events.linux

Re: [PATCH v3] build: update DPDK to use C11 standard

2023-07-31 Thread Tyler Retzlaff
On Mon, Jul 31, 2023 at 05:58:11PM +0100, Bruce Richardson wrote: > As previously announced, DPDK 23.11 will require a C11 supporting > compiler and will use the C11 standard in all builds. > > Signed-off-by: Bruce Richardson > Acked-by: Morten Brørup > Acked-by: Tyler Retzlaff > > --- > V3: >

Re: [PATCH 1/3] version: 23.11-rc0

2023-07-31 Thread Aaron Conole
David Marchand writes: > Start a new release cycle with empty release notes. > > The ABI version becomes 24.0. > The map files are updated to the new ABI major number (24). > The ABI exceptions are dropped and CI ABI checks are disabled because > compatibility is not preserved. > > The telemetry

Re: [PATCH v7 1/2] build: select deprecated libraries

2023-07-31 Thread Aaron Conole
David Marchand writes: > Rework deprecated libraries selection by introducing a new configuration > option. > > This breaks existing configurations that were relying on disable_libs='' > for enabling deprecated libraries. > On the other hand, it will make enabling optional libraries more > straig

Re: [PATCH v4] ethdev: advertise flow restore in mbuf

2023-07-31 Thread Ilya Maximets
On 6/21/23 16:43, David Marchand wrote: > As reported by Ilya [1], unconditionally calling > rte_flow_get_restore_info() impacts an application performance for drivers > that do not provide this ops. > It could also impact processing of packets that require no call to > rte_flow_get_restore_info()

[PATCH] flow_classify: remove library

2023-07-31 Thread Stephen Hemminger
The flow_classify library was marked for removal last year because there was no maintainer and the functionality is limited. Signed-off-by: Stephen Hemminger --- MAINTAINERS | 7 - app/test/meson.build | 4 - app/test/test_flow_class

[PATCH 1/4] build: require minimum c11 compiler

2023-07-31 Thread Tyler Retzlaff
Update top level meson.build to require c_std=c11 and remove use of -std=gnu99. Signed-off-by: Tyler Retzlaff --- drivers/net/failsafe/meson.build | 1 - lib/eal/common/eal_common_errno.c | 1 + meson.build | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH 0/4] eal: update public API to use stdatomic atomics

2023-07-31 Thread Tyler Retzlaff
Update EAL public API to use standard C11 atomics. In accordance with technical board discussion February 2023. http://mails.dpdk.org/archives/dev/2023-February/263516.html This initial series makes no attempt to adapt every use of builtin atomics from GCC it intends only to adapt the public API o

[PATCH 2/4] devtools: forbid use of GCC atomic builtins

2023-07-31 Thread Tyler Retzlaff
Refrain from using compiler __atomic_xxx builtins DPDK now uses standard C11 atomics atomic_xxx. Signed-off-by: Tyler Retzlaff --- devtools/checkpatches.sh | 8 1 file changed, 8 insertions(+) diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh index 43f5e36..a32f02e 10075

[PATCH 4/4] eal: adapt rte spinlock and rwlock APIs to use C11 atomics

2023-07-31 Thread Tyler Retzlaff
Adapt rte_spinlock.h and rte_rwlock.h APIs to use standard C11 atomics. Update consumers of the spinlock and rwlock APIs for the API break. Signed-off-by: Tyler Retzlaff --- lib/eal/include/generic/rte_rwlock.h | 46 ++ lib/eal/include/generic/rte_spinlock.h | 2

[PATCH 3/4] eal: adapt rte pause APIs to use C11 atomics

2023-07-31 Thread Tyler Retzlaff
Adapt rte_pause.h APIs to use standard C11 atomics. Update consumers of the pause APIs for the API break. Signed-off-by: Tyler Retzlaff --- app/test-bbdev/test_bbdev_perf.c | 123 --- app/test/test_func_reentrancy.c | 8 +- app/test/test_mcslock.c

Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread Stephen Hemminger
On Mon, 31 Jul 2023 10:40:35 +0200 Thomas Monjalon wrote: > > 2. The OVSrobot is looking into the port library to see the kni symbols. > > But port is marked as deprecated already. > > Perhaps we should just pull out port first? > > No we must support it until it is removed. > You should eithe

RE: Running DPDK on ARM on Mac w/ Apple Silicon?

2023-07-31 Thread Dharmik Jayesh Thakkar
Hi, Have you tried with docker container? I have run DPDK test suite on Mac w/ Apple Silicon with ubuntu docker container. Thank you! Best, Dharmik Thakkar From: Misha Sent: Sunday, July 30, 2023 3:49 AM To: dev@dpdk.org Subject: Running DPDK on ARM on Mac w/ Apple Silicon? Guys I apologize

Re: [PATCH v2] kni: remove deprecated kernel network interface

2023-07-31 Thread Thomas Monjalon
31/07/2023 23:12, Stephen Hemminger: > On Mon, 31 Jul 2023 10:40:35 +0200 > Thomas Monjalon wrote: > > > > 2. The OVSrobot is looking into the port library to see the kni symbols. > > > But port is marked as deprecated already. > > > Perhaps we should just pull out port first? > > > > No we mu

Re: [PATCH v3] build: update DPDK to use C11 standard

2023-07-31 Thread Patrick Robb
Hi Bruce, I see some failures for this series for our Ubuntu 20.04 containers. And, our DTS testbeds which are on ubuntu 20.04 are skipping running testsuites because they can't compile DPDK. So, that's why it has some missing results for a couple of the Intel NICs. For context, I'll paste below w

[PATCH] net/iavf: add devargs to enable vf auto-reset

2023-07-31 Thread Shiyang He
Originally, the iavf PMD does not perform special actions when it receives a PF-to-VF reset event, resulting in vf being offline and unavailable. This patch enables vf auto-reset by setting 'watchdog_period' devargs to true. The iavf PMD will perform an automatic reset to bring the vf back online

[PATCH] app/testpmd: add flush multicast MAC address command

2023-07-31 Thread Dengdui Huang
Add command to flush multicast MAC address Usage: mcast_addr flush : flush multicast MAC address on port_id Signed-off-by: Dengdui Huang --- app/test-pmd/cmdline.c | 43 + app/test-pmd/config.c | 18 + app/test-pmd/t

RE: [PATCH] doc: announce ethdev operation struct changes

2023-07-31 Thread Feifei Wang
> -Original Message- > From: Morten Brørup > Sent: Friday, July 28, 2023 11:55 PM > To: tho...@monjalon.net > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Feifei Wang ; > Ruifeng Wang ; Feifei Wang > ; ferruh.yi...@amd.com; > konstantin.anan...@huawei.com; andrew.rybche...@oktetlabs.

[PATCH v2 1/4] build: require minimum c11 compiler

2023-07-31 Thread Tyler Retzlaff
Update top level meson.build to require c_std=c11 and remove use of -std=gnu99. Signed-off-by: Tyler Retzlaff --- drivers/net/failsafe/meson.build | 1 - lib/eal/common/eal_common_errno.c | 1 + meson.build | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git

[PATCH v2 2/4] devtools: forbid use of GCC atomic builtins

2023-07-31 Thread Tyler Retzlaff
Refrain from using compiler __atomic_xxx builtins DPDK now uses standard C11 atomics atomic_xxx. Signed-off-by: Tyler Retzlaff --- devtools/checkpatches.sh | 8 1 file changed, 8 insertions(+) diff --git a/devtools/checkpatches.sh b/devtools/checkpatches.sh index 43f5e36..a32f02e 10075

[PATCH v2 0/4] eal: update public API to use stdatomic atomics

2023-07-31 Thread Tyler Retzlaff
Update EAL public API to use standard C11 atomics. In accordance with technical board discussion February 2023. http://mails.dpdk.org/archives/dev/2023-February/263516.html This initial series makes no attempt to adapt every use of builtin atomics from GCC it intends only to adapt the public API o

[PATCH v2 4/4] eal: adapt rte spinlock and rwlock APIs to use C11 atomics

2023-07-31 Thread Tyler Retzlaff
Adapt rte_spinlock.h and rte_rwlock.h APIs to use standard C11 atomics. Update consumers of the spinlock and rwlock APIs for the API break. Signed-off-by: Tyler Retzlaff --- lib/eal/include/generic/rte_rwlock.h | 46 ++ lib/eal/include/generic/rte_spinlock.h | 2

[PATCH v2 3/4] eal: adapt rte pause APIs to use C11 atomics

2023-07-31 Thread Tyler Retzlaff
Adapt rte_pause.h APIs to use standard C11 atomics. Update consumers of the pause APIs for the API break. Signed-off-by: Tyler Retzlaff --- app/test-bbdev/test_bbdev_perf.c | 123 --- app/test/test_func_reentrancy.c | 8 +- app/test/test_mcslock.c

[PATCH v1] eventdev/crypto: flush ops when circ buffer is full

2023-07-31 Thread Ganapati Kundapura
crypto ops from the circ buffer are not getting flushed to crypto dev when crypto dev becomes busy and circ buffer gets full. This patch flushes ops from circ buffer when circ buffer is full instead of returning without flushing. Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_e