Hi,
> -Original Message-
> From: Michael Baum
> Sent: Wednesday, June 14, 2023 8:53 AM
> To: dev@dpdk.org
> Cc: Matan Azrad ; Raslan Darawsheh
> ; Slava Ovsiienko
> Subject: [PATCH 0/2] net/mlx5: add modify MPLS support
>
> Add support for MPLS header modification.
>
> RFC:
> https://p
On Wed, Jun 21, 2023 at 07:00:55PM +0200, David Marchand wrote:
> kni dependency to IOVA configuration does not need to be expressed in
> the top level lib/meson.build file.
>
> Signed-off-by: David Marchand
> ---
> lib/kni/meson.build | 5 +
> lib/meson.build | 3 ---
> 2 files changed,
On Wed, Jun 21, 2023 at 07:00:56PM +0200, David Marchand wrote:
> The enabled_libs variable is renamed and moved to the top level
> meson.build file, for sake of consistency wrt to drivers and
> applications similar variables.
>
> Signed-off-by: David Marchand
> ---
Acked-by: Bruce Richardson
A
On Wed, Jun 21, 2023 at 07:00:57PM +0200, David Marchand wrote:
> 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 e
On Wed, Jun 21, 2023 at 07:00:58PM +0200, David Marchand wrote:
> 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
On Thu, Jun 22, 2023 at 09:43:18AM +0100, Bruce Richardson wrote:
> On Wed, Jun 21, 2023 at 07:00:57PM +0200, David Marchand wrote:
> > Rework deprecated libraries selection by introducing a new configuration
> > option.
> >
> > This breaks existing configurations that were relying on disable_libs
On 6/15/2023 5:14 PM, Nipun Gupta wrote:
> Add myself as co-maintainer of PCI bus driver
>
> Signed-off-by: Nipun Gupta
> ---
> This patch is based on top of:
> http://patches.dpdk.org/project/dpdk/patch/20230613065738.42370-1-chenbo@intel.com/
>
> MAINTAINERS | 1 +
> 1 file changed, 1 ins
On Wed, Jun 21, 2023 at 07:00:54PM +0200, David Marchand wrote:
> 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 r
If the prefix for the rss hash was not chosen the
ENOTSUP error should be returned. Before this patch
the zero code was returned in case of an error.
Fixes: f784cdc5cbb1 ("common/sfc_efx/base: provide control to deliver RSS hash")
Signed-off-by: Artemii Morozov
Reviewed-by: Andy Moreton
---
v3:
On 6/22/23 12:13, Artemii Morozov wrote:
If the prefix for the rss hash was not chosen the
rss -> RSS
ENOTSUP error should be returned. Before this patch
the zero code was returned in case of an error.
Fixes: f784cdc5cbb1 ("common/sfc_efx/base: provide control to deliver RSS hash")
I guess
On Wed, Jun 21, 2023 at 11:54 AM David Marchand
wrote:
> On Tue, Jun 20, 2023 at 5:05 PM Bruce Richardson
> wrote:
> >
> > On Tue, Jun 20, 2023 at 04:33:15PM +0200, Thomas Monjalon wrote:
> > > 20/06/2023 11:03, Bruce Richardson:
> > > > On Tue, Jun 20, 2023 at 10:48:50AM +0200, David Marchand w
If the prefix for the RSS hash was not chosen the
ENOTSUP error should be returned. Before this patch
the zero code was returned in case of an error.
Fixes: f784cdc5cbb1 ("common/sfc_efx/base: provide control to deliver RSS hash")
Cc: sta...@dpdk.org
Signed-off-by: Artemii Morozov
Reviewed-by: A
On 6/22/23 06:47, Denis Pryazhennikov wrote:
From: Sandilya Bhagi
NIC Partitioning mode in SFC devices means multiple PFs
per network port. When NIC Partitioning is configured,
apart from the privileged adapter(s) the other
unprivileged adapter(s) will share the same physical port.
Determining
On 6/22/23 06:47, Denis Pryazhennikov wrote:
Configurable Rx CRC stripping is allowed only if
running firmware variant supports it and if NIC is
configured with single PF per port and without VFs.
When KEEP_CRC is supported, CRC will be part of
the packet payload. The packet length will also
cont
From: Sathesh Edara
Add backward compatibility support between VF
and PF mailbox messages.
Signed-off-by: Sathesh Edara
Signed-off-by: Vamsi Attunuru
---
drivers/net/octeon_ep/otx_ep_common.h | 3 +++
drivers/net/octeon_ep/otx_ep_ethdev.c | 6 +
drivers/net/octeon_ep/otx_ep_mbox.c | 3
On 6/22/2023 10:31 AM, Artemii Morozov wrote:
> If the prefix for the RSS hash was not chosen the
> ENOTSUP error should be returned. Before this patch
> the zero code was returned in case of an error.
>
What is the impact of the problem to user?
Previously 'efx_rx_qcreate_internal()' was return
This patch series adds VLAN stripping offload. Note that this
offload are device level offload.
v6:
* highlight that efx_port_vlan_strip_set() must be called before any filter
insertion
* avoid an extra check if offload is not requested
v5:
* fixed problems with naming
* fixed problems
These changes are necessary in order to add support for stripping
VLAN tags in the future.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
---
drivers/common/sfc_efx/base/ef10_nic.c | 6 ++
drivers/common/sfc_efx/base/efx.h | 1 +
drivers/common/sfc_
This API allows to get number of installed filters. This will
be used in the future patches.
Signed-off-by: Artemii Morozov
---
drivers/common/sfc_efx/base/ef10_filter.c | 20 +
drivers/common/sfc_efx/base/ef10_impl.h | 6 +
drivers/common/sfc_efx/base/efx_filter.c | 27 +
To enable VLAN stripping, two conditions must be met:
the corresponding flag must be set and the appropriate
Rx prefix should be requested.
VLAN stripping is supported on EF100.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
---
drivers/common/sfc_efx/base/ef1
Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
VLAN stripping is supported for ef100 datapath only. This is device
level offload.
Signed-off-by: Artemii Morozov
Reviewed-by: Viacheslav Galaktionov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
---
doc/guides/nics/sfc
This patch series adds support for RTE_ETH_RX_OFFLOAD_KEEP_CRC
offload in the SFC driver.
Changes in v2:
* Applied review notes;
* Fixed stats handling;
* Added missing release notes to [4/4].
Changes in v3:
* Fixed wrong indents in [1/4].
Denis Pryazhennikov (3):
common/sfc_efx/base: detect a
From: Sandilya Bhagi
NIC Partitioning mode in SFC devices means multiple PFs
per network port. When NIC Partitioning is configured,
apart from the privileged adapter(s) the other
unprivileged adapter(s) will share the same physical port.
Determining NIC Partitioning mode is required to take
neces
From: Roman Zhukov
A new variable was added to efx_nic_cfg_s to detect and
report if FCS is supported by FW.
Signed-off-by: Roman Zhukov
Signed-off-by: Denis Pryazhennikov
Reviewed-by: Viacheslav Galaktionov
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_nic.c | 6 ++
From: Roman Zhukov
Signed-off-by: Denis Pryazhennikov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_mac.c | 5 +--
drivers/common/sfc_efx/base/efx.h | 5 +++
drivers/common/sfc_efx/base/efx_impl.h | 1 +
drivers/common/sfc_efx/base/efx_mac.c
Configurable Rx CRC stripping is allowed only if
running firmware variant supports it and if NIC is
configured with single PF per port and without VFs.
When KEEP_CRC is supported, CRC will be part of
the packet payload. The packet length will also
contain CRC length. At the same time, CRC length
sh
On 6/22/23 14:31, Artemii Morozov wrote:
These changes are necessary in order to add support for stripping
VLAN tags in the future.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchenko
From: Sandilya Bhagi
NIC Partitioning mode in SFC devices means multiple PFs
per network port. When NIC Partitioning is configured,
apart from the privileged adapter(s) the other
unprivileged adapter(s) will share the same physical port.
Determining NIC Partitioning mode is required to take
neces
This patch series adds support for RTE_ETH_RX_OFFLOAD_KEEP_CRC
offload in the SFC driver.
Changes in v2:
* Applied review notes;
* Fixed stats handling;
* Added missing release notes to [4/4].
Changes in v3:
* Fixed wrong indents in [1/4].
Changes in v4:
* Fixed "From" section in [3/4].
Denis P
From: Roman Zhukov
A new variable was added to efx_nic_cfg_s to detect and
report if FCS is supported by FW.
Signed-off-by: Roman Zhukov
Signed-off-by: Denis Pryazhennikov
Reviewed-by: Viacheslav Galaktionov
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_nic.c | 6 ++
From: Roman Zhukov
Drivers cannot determine if received packet includes the FCS or not.
Only packets with an external port have the FCS included and functions
without link control privilege cannot determine the MAC configuration.
This patch is trying to make assumptions that: if PF is the only fu
Configurable Rx CRC stripping is allowed only if
running firmware variant supports it and if NIC is
configured with single PF per port and without VFs.
When KEEP_CRC is supported, CRC will be part of
the packet payload. The packet length will also
contain CRC length. At the same time, CRC length
sh
On 6/22/23 14:31, Artemii Morozov wrote:
This API allows to get number of installed filters. This will
be used in the future patches.
Signed-off-by: Artemii Morozov
---
drivers/common/sfc_efx/base/ef10_filter.c | 20 +
drivers/common/sfc_efx/base/ef10_impl.h | 6 +
dr
On 6/22/23 14:31, Artemii Morozov wrote:
To enable VLAN stripping, two conditions must be met:
the corresponding flag must be set and the appropriate
Rx prefix should be requested.
VLAN stripping is supported on EF100.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Mo
On 6/22/23 14:31, Artemii Morozov wrote:
Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
VLAN stripping is supported for ef100 datapath only. This is device
level offload.
Signed-off-by: Artemii Morozov
Reviewed-by: Viacheslav Galaktionov
Reviewed-by: Ivan Malov
Reviewed
Hi,
> -Original Message-
> From: Erez Ferber
> Sent: Wednesday, May 24, 2023 3:02 PM
> To: dev@dpdk.org
> Cc: Slava Ovsiienko ; Matan Azrad
> ; Raslan Darawsheh ; Erez Ferber
> ; sta...@dpdk.org
> Subject: [PATCH] common/mlx5: adjust fork call with the new kernel API
>
> From: Erez Ferbe
If the prefix for the RSS hash was not chosen the ENOTSUP error should
be returned.
Before this patch success was returned for this case causing Rx queue
creation to fail.
Fixing return value to indicate failure.
Fixes: f784cdc5cbb1 ("common/sfc_efx/base: provide control to deliver RSS hash")
Cc
On 6/22/2023 12:47 PM, Denis Pryazhennikov wrote:
> This patch series adds support for RTE_ETH_RX_OFFLOAD_KEEP_CRC
> offload in the SFC driver.
>
> Changes in v2:
> * Applied review notes;
> * Fixed stats handling;
> * Added missing release notes to [4/4].
>
> Changes in v3:
> * Fixed wrong inden
On 6/22/2023 1:31 PM, Artemii Morozov wrote:
> If the prefix for the RSS hash was not chosen the ENOTSUP error should
> be returned.
>
> Before this patch success was returned for this case causing Rx queue
> creation to fail.
>
> Fixing return value to indicate failure.
>
It looks like you use
From: David Marchand
cpu_set_t definition requires _GNU_SOURCE.
Fixes: e0473c6d5b18 ("eal: fix build with musl")
Cc: sta...@dpdk.org
Signed-off-by: David Marchand
---
This patch was missing in the patchset to make all examples compile.
It will be merged with others from:
"Test examples
On 6/22/23 17:13, Ferruh Yigit wrote:
On 6/22/2023 1:31 PM, Artemii Morozov wrote:
If the prefix for the RSS hash was not chosen the ENOTSUP error should
be returned.
Before this patch success was returned for this case causing Rx queue
creation to fail.
Fixing return value to indicate failu
20/06/2023 16:07, David Marchand:
> As DPDK provides examples compiled with makefiles, we need some tests in
> the CI. So far, a few maintainers have been testing them but a simple
> issue has been missed for some time and there was no way to try to build
> all examples that were built with meson.
22/06/2023 15:48, Thomas Monjalon:
> From: David Marchand
>
> cpu_set_t definition requires _GNU_SOURCE.
>
> Fixes: e0473c6d5b18 ("eal: fix build with musl")
> Cc: sta...@dpdk.org
>
> Signed-off-by: David Marchand
> ---
> This patch was missing in the patchset to make all examples compile.
> I
DPDK still has many libraries which cannot be disabled as part of a
build. With the ongoing work to make it easier to only build a subset
of the libraries in DPDK, we can also work to expand the list of
libraries which can be enabled/disabled as desired.
This patch addresses a number of the "low-h
Apart from ethdev and cryptodev, which have lots of components and tests
which depend on them, we can make the device class libraries optional
without too much work.
This patch marks:
* bbdev,
* compressdev,
* dmadev,
* eventdev,
* mldev,
* rawdev,
* regexdev
optional, and ensures that DPDK - incl
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 9 +
lib/meson.build | 1 +
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index 780005f320..bed6acfdaf 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 10 +++---
lib/meson.build | 1 +
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index bed6acfdaf..d8ad8b1d97 100644
--- a/app/test/meson.build
+++ b/app/test/meson.bui
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 8
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index d8ad8b1d97..ab5bd370bf 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 9 +
lib/meson.build | 1 +
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index ab5bd370bf..749e929945 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 6 --
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index 749e929945..e8dbbadd5e 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@
Signed-off-by: Bruce Richardson
---
app/test/meson.build | 6 --
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index e8dbbadd5e..13bd752002 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@
> From: Bruce Richardson [mailto:bruce.richard...@intel.com]
> Sent: Thursday, 22 June 2023 15.49
>
> DPDK still has many libraries which cannot be disabled as part of a
> build. With the ongoing work to make it easier to only build a subset
> of the libraries in DPDK, we can also work to expand t
DPDK still has many libraries which cannot be disabled as part of a
build. With the ongoing work to make it easier to only build a subset
of the libraries in DPDK, we can also work to expand the list of
libraries which can be enabled/disabled as desired.
This patch addresses a number of the "low-h
Apart from ethdev and cryptodev, which have lots of components and tests
which depend on them, we can make the device class libraries optional
without too much work.
This patch marks:
* bbdev,
* compressdev,
* dmadev,
* eventdev,
* mldev,
* rawdev,
* regexdev
optional, and ensures that DPDK - incl
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 9 +
lib/meson.build | 1 +
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/app/test/meson
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 10 +++---
lib/meson.build | 1 +
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/app/test/me
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 8
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/app/test/meson.
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 9 +
lib/meson.build | 1 +
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/app/test/meson
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 6 --
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/app/test/meson.bu
This library is not essential for most DPDK uses, so mark it as optional
in the build config.
Signed-off-by: Bruce Richardson
Acked-by: Morten Brørup
---
app/test/meson.build | 6 --
lib/meson.build | 1 +
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/app/test/meson.bu
On 6/22/2023 1:31 PM, Artemii Morozov wrote:
> If the prefix for the RSS hash was not chosen the ENOTSUP error should
> be returned.
>
> Before this patch success was returned for this case causing Rx queue
> creation to fail.
>
> Fixing return value to indicate failure.
>
> Fixes: f784cdc5cbb1
This patch series adds VLAN stripping offload. Note that this
offload are device level offload.
v7:
* raise an error if there is no callback for efo_get_count
* fix alignment
* remove the extra check
v6:
* highlight that efx_port_vlan_strip_set() must be called before any filter
insertio
These changes are necessary in order to add support for stripping
VLAN tags in the future.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_nic.c | 6 ++
drivers/common/sfc_efx/base/efx.h
This API allows to get number of installed filters. This will
be used in the future patches.
Signed-off-by: Artemii Morozov
---
drivers/common/sfc_efx/base/ef10_filter.c | 20 ++
drivers/common/sfc_efx/base/ef10_impl.h | 6 +
drivers/common/sfc_efx/base/efx_filter.c | 32
To enable VLAN stripping, two conditions must be met:
the corresponding flag must be set and the appropriate
Rx prefix should be requested.
VLAN stripping is supported on EF100.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
---
drivers/common/sfc_efx/base/ef1
Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
VLAN stripping is supported for ef100 datapath only. This is device
level offload.
Signed-off-by: Artemii Morozov
Reviewed-by: Viacheslav Galaktionov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
---
doc/guides/nics/sfc
On 2/9/2023 6:36 AM, Chengwen Feng wrote:
This patch supports rte_memarea_alloc() and rte_memarea_free() API.
Signed-off-by: Chengwen Feng
Reviewed-by: Dongdong Liu
Acked-by: Morten Brørup
---
General note: this patchset could benefit from a bit more comments. I
don't suggest commenting ev
On 6/22/23 18:11, Artemii Morozov wrote:
To enable VLAN stripping, two conditions must be met:
the corresponding flag must be set and the appropriate
Rx prefix should be requested.
VLAN stripping is supported on EF100.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Mo
On 6/22/23 18:11, Artemii Morozov wrote:
Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
VLAN stripping is supported for ef100 datapath only. This is device
level offload.
Signed-off-by: Artemii Morozov
Reviewed-by: Viacheslav Galaktionov
Reviewed-by: Ivan Malov
Reviewed
On 6/22/23 18:11, Artemii Morozov wrote:
This API allows to get number of installed filters. This will
be used in the future patches.
Signed-off-by: Artemii Morozov
Acked-by: Andrew Rybchenko
However, it would be good if it is reviewed as well by Andy and Ivan.
On 2/9/2023 6:36 AM, Chengwen Feng wrote:
This patch supports rte_memarea_dump() API which could be used for
debug.
Signed-off-by: Chengwen Feng
Reviewed-by: Dongdong Liu
Acked-by: Morten Brørup
---
Provisionally,
Acked-by: Anatoly Burakov
As long as below is addressed.
+static void
+m
On 6/22/2023 4:11 PM, Artemii Morozov wrote:
> Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
> VLAN stripping is supported for ef100 datapath only. This is device
> level offload.
>
> Signed-off-by: Artemii Morozov
> Reviewed-by: Viacheslav Galaktionov
> Reviewed-by: Ivan
Hi All,
We are observing the following issue with DPDK22.11. We didn’t find any
upstream patches for this issue on the DPDK github. Is there any known
issue, please let us know.
*Issue:*
On Azure platform, we are unable to configure more than 4 queues. When we
try to configure more than 4 queu
> -Original Message-
> From: Jie Hai
> Sent: Friday, June 9, 2023 12:04 PM
> To: Aman Singh ; Yuying Zhang
> ; Anatoly Burakov ;
> Matan Azrad ; Dmitry Kozlyuk
>
> Cc: dev@dpdk.org; liudongdo...@huawei.com; shiyangx...@intel.com;
> ferruh.yi...@amd.com
> Subject: [PATCH v4] app/testpmd: f
22/06/2023 11:09, Bruce Richardson:
> On Wed, Jun 21, 2023 at 07:00:54PM +0200, David Marchand wrote:
> > 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 l
20/06/2023 10:20, Jerin Jacob:
> On Tue, Jun 20, 2023 at 1:40 PM Bruce Richardson
> wrote:
> >
> > On Mon, Jun 19, 2023 at 10:46:50PM +0200, David Marchand wrote:
> > > Allow disabling of the graph library in builds.
> > >
> > > Signed-off-by: David Marchand
> > > ---
> > > app/test/meson.build
19/06/2023 16:19, Bruce Richardson:
> On Mon, Jun 19, 2023 at 09:37:09AM +0200, David Marchand wrote:
> > On Thu, Jun 15, 2023 at 5:15 PM Bruce Richardson
> > wrote:
> > >
> > > On Thu, Jun 15, 2023 at 03:49:42PM +0200, David Marchand wrote:
> > > > /**< is for post annotations.
> > > >
> > > > Fi
20/06/2023 16:21, Aaron Conole:
> David Marchand writes:
>
> > In repositories where multiple branches run the ABI checks using
> > different versions of libabigail (for example, a 22.11 branch using
> > libabigail-1.8 and a main branch using libabigail-2.1), a collision
> > happens on the libabi
21/06/2023 12:01, Volodymyr Fialko:
> Currently, in the case when we search for a bit set after a particular
> value, the bitmap has to be scanned from the beginning and
> rte_bitmap_scan() has to be called multiple times until we hit the value.
>
> Add a new rte_bitmap_scan_from_offset() function
On 2023-06-21 08:44, Ruifeng Wang wrote:
The rte_smp_xx() APIs are deprecated. But it is not mentioned
in the function header.
Added notes in function header for clarification.
Signed-off-by: Ruifeng Wang
---
lib/eal/include/generic/rte_atomic.h | 15 +++
1 file changed, 15 inser
09/06/2023 16:51, Bruce Richardson:
> After doing a build, to install DPDK system-wide our documentation
> recommended using the "ninja install" command. However, for anyone
> building as a non-root user and only installing as root, the "meson
> install" command is a better alternative, as it provi
Hi, @olivier.m...@6wind.com
On Sun, 11 Jun 2023, 1:17 am Tanzeel-inline,
wrote:
> None of the foundational NICs currently supports MPLS insertion and
> stripping, this functionality can help users who rely on MPLS in their
> network application.
>
> Signed-off-by: Tanzeel Ahmed
>
> ---
>
> Thi
I want to report a possible regression from this patch series seen from CI
testing on our Intel 82599ES 10G NIC, which we failed to report to
patchwork when this initially went under CI due to a bug in our Jenkins
reporting scripts. Use of the ixgbe driver appears to be affected. Tyler I
apologize
On Thu, Jun 22, 2023 at 4:48 PM Vamsi Attunuru wrote:
>
> From: Sathesh Edara
>
> Add backward compatibility support between VF
> and PF mailbox messages.
>
> Signed-off-by: Sathesh Edara
> Signed-off-by: Vamsi Attunuru
Applied to dpdk-next-net-mrvl/for-next-net. Thanks
> ---
> drivers/net/
This patch series adds VLAN stripping offload. Note that this
offload are device level offload.
v8:
* fix minor issues
* update the release notes
v7:
* raise an error if there is no callback for efo_get_count
* fix alignment
* remove the extra check
v6:
* highlight that efx_port_vlan
These changes are necessary in order to add support for stripping
VLAN tags in the future.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_nic.c | 6 ++
drivers/common/sfc_efx/base/efx.h
This API allows to get number of installed filters. This will
be used in the future patches.
Signed-off-by: Artemii Morozov
Acked-by: Andrew Rybchenko
---
drivers/common/sfc_efx/base/ef10_filter.c | 20 ++
drivers/common/sfc_efx/base/ef10_impl.h | 6 +
drivers/common/sfc_efx/
To enable VLAN stripping, two conditions must be met:
the corresponding flag must be set and the appropriate
Rx prefix should be requested.
VLAN stripping is supported on EF100.
Signed-off-by: Artemii Morozov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchenko
---
dri
Extract VLAN TCI provided by the HW in the prefix and put it to mbuf.
VLAN stripping is supported for ef100 datapath only. This is device
level offload.
Signed-off-by: Artemii Morozov
Reviewed-by: Viacheslav Galaktionov
Reviewed-by: Ivan Malov
Reviewed-by: Andy Moreton
Acked-by: Andrew Rybchen
Hi Cheng,
Thanks for the new version. Please see inline.
Thanks,
Anoob
> -Original Message-
> From: Cheng Jiang
> Sent: Tuesday, June 20, 2023 12:24 PM
> To: tho...@monjalon.net; bruce.richard...@intel.com;
> m...@smartsharesystems.com; chenbo@intel.com; Amit Prakash Shukla
> ; Anoo
90 matches
Mail list logo