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
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
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
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
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 -
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
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
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
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
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
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
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
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
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
> 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
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
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
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 ++
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
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 -
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
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
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
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
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
> 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
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
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
> 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
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.
>
>
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.
>
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.
>
https://bugs.dpdk.org/show_bug.cgi?id=1268
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Resolution|--- |FIXED
Status|
https://bugs.dpdk.org/show_bug.cgi?id=1259
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resoluti
https://bugs.dpdk.org/show_bug.cgi?id=1160
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resoluti
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
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
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
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/
> >
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
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.
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
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?
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?
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
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
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
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
> -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
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,
>
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
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
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
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
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
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
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
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
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-
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
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
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
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
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
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
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:
>
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
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
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()
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
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
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
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
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
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
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
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
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
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
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
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
> -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.
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
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
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
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
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
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
88 matches
Mail list logo