> Pallavi Kadam is no longer working on DPDK, so she has requested that her
> name be removed from the maintainers file.
>
> Signed-off-by: Bruce Richardson
> Acked-by: Pallavi Kadam
Applied, thanks.
17/10/2024 07:57, Mattias Rönnblom:
> Mattias Rönnblom (7):
> eal: add static per-lcore memory allocation facility
> eal: add lcore variable functional tests
> eal: add lcore variable performance test
> random: keep PRNG state in lcore variable
> power: keep per-lcore state in lcore varia
This was detected in UNH envs.
In Fedora 37 and other distributions, meson 0.57 breaks when calling
the unit tests (probably because of an incompatibility with Python 3.11):
$ meson test -C build --suite DPDK:fast-tests
ninja: Entering directory `/root/dpdk/build'
ninja: no work to do.
Exception
The checksum functions are used by both ipv4 and ipv6 functions. In
preparation of moving ipv6 symbols to a new header, move the checksum
related symbols to another dedicated header.
Update doxygen index accordingly.
Signed-off-by: Robin Jarry
Acked-by: Stephen Hemminger
---
doc/api/doxy-api-i
Hi everyone,
As discussed recently [1], here is a first draft of the IPv6 APIs rework. The
API change was announced before the 24.07 release [2]. This series is intended
for 24.11.
[1] http://inbox.dpdk.org/dev/d2sr8t1h39cj.jrqfi6jeh...@redhat.com/
[2]
https://git.dpdk.org/dpdk/commit/?id=835d4c
Acked-by: Patrick Robb
Replace ad-hoc uint8_t[16] array types in the API of rte_fib6 with
rte_ipv6_addr structures. Replace duplicate functions and macros with
common ones from rte_ip6.h. Update all code accordingly.
Signed-off-by: Robin Jarry
---
app/test-fib/main.c| 8 +-
app/test/test_fib6.c
There is currently no structure defined for IPv6 addresses. Introduce
one that is simply a uint8_t array of 16 elements. The idea is to ensure
this structure alignment is 1 so that it can be mapped directly on
unaligned packet memory.
Add utility functions and macros that use the newly added rte_i
The rte_ipv6_hdr uses ad-hoc uint8_t[16] arrays to represent addresses.
Replace these arrays with the newly added rte_ipv6_addr structure. Adapt
all code accordingly.
Signed-off-by: Robin Jarry
---
app/test-flow-perf/items_gen.c | 4 +--
app/test-pipeline/pipeline_hash.c| 4 +
Update rte_ipsec_sadv6_key to use rte_ipv6_addr structures instead of
uint8_t[16] arrays.
Signed-off-by: Robin Jarry
---
app/test-sad/main.c| 24 ++--
app/test/test_ipsec_sad.c | 46
doc/guides/prog_guide/ipsec_lib.rst| 4 +-
doc/guides/rel_notes
Replace ad-hoc uint8_t[16] arrays with rte_ipv6_addr structures. Replace
duplicated code with utils from rte_ip6.h.
Signed-off-by: Robin Jarry
---
app/graph/ethdev.c | 44 +++---
app/graph/ethdev.h | 9 ++---
app/graph/ip6_route.c
Update tcp6_flow_key to use rte_ipv6_addr structures instead of
uint8_t[16] arrays.
Signed-off-by: Robin Jarry
---
doc/guides/rel_notes/deprecation.rst | 2 --
doc/guides/rel_notes/release_24_11.rst | 2 ++
lib/gro/gro_tcp6.c | 8
lib/gro/gro_tcp6.h
For consistency with the rest of the code base, update
rte_security_ipsec_tunnel_param to use rte_ipv6_addr structures instead
of in6_addr.
Signed-off-by: Robin Jarry
---
doc/guides/rel_notes/release_24_11.rst | 2 ++
drivers/common/cnxk/cnxk_security.c| 14 ++
drivers/net/iavf/
Add more utilities to work with IPv6 addresses. These functions will be
required in order to help building IPv6 routing applications.
Signed-off-by: Robin Jarry
Acked-by: Stephen Hemminger
---
app/test/test_net_ip6.c | 68 +
lib/net/rte_ip6.h | 209 +++
Update rte_flow_tunnel, rte_flow_action_set_ipv6,
rte_flow_item_icmp6_nd_na and rte_flow_item_icmp6_nd_ns to use
rte_ipv6_addr structures instead of uint8_t[16] arrays.
Signed-off-by: Robin Jarry
---
app/test-flow-perf/actions_gen.c | 4 ++--
doc/guides/rel_notes/deprecation.rst | 1
Add a function to check the version in IPv6 headers.
Signed-off-by: Robin Jarry
---
app/test/test_net_ip6.c | 16
lib/net/rte_ip6.h | 16
2 files changed, 32 insertions(+)
diff --git a/app/test/test_net_ip6.c b/app/test/test_net_ip6.c
index 94033421ad0b..
Team,
Does setting mtu using rte_eth_dev_set_mtu limit the maximum size of the
packet received on the dpdk port to the configured mtu size?
On an intel machine with ixgbe port, with mtu set to 1500, no rx-offloads
enabled, ixgbe dpdk port is able to receive packets greater than 1500 size
and even
The previous commits introduced a new rte_ipv6_addr structure without
any alignment requirements. It is not compatible with the in6_addr POSIX
type available in netinet/in.h.
The main issue is that in6_addr is not uniform on all platforms which
causes unaligned access warnings when compiling witho
Replace ad-hoc uint8_t[16] array types in the API of rte_rib6 with
rte_ipv6_addr structures. Replace duplicate functions and macros with
common ones from rte_ip6.h. Update all code accordingly.
Signed-off-by: Robin Jarry
---
app/test/test_rib6.c | 55 ++--
doc/guides/r
Update rte_ipv6_tuple to use rte_ipv6_addr structures instead of
uint8_t[16] arrays.
Signed-off-by: Robin Jarry
---
app/test/test_thash.c | 46 ++
doc/guides/rel_notes/deprecation.rst | 2 --
doc/guides/rel_notes/release_24_11.rst | 2 ++
lib/hash/rte
Update rte_table_action_ipv6_header and rte_table_action_nat_params to
use rte_ipv6_addr structures instead of uint8_t[16] arrays.
For consistency, also update rte_swx_ipsec_sa_encap_params to use
rte_ipv6_addr instead of in6_addr.
Signed-off-by: Robin Jarry
---
doc/guides/rel_notes/deprecation
On Fri, Oct 18, 2024 at 04:05:44PM +0200, Robin Jarry wrote:
> The previous commits introduced a new rte_ipv6_addr structure without
> any alignment requirements. It is not compatible with the in6_addr POSIX
> type available in netinet/in.h.
>
> The main issue is that in6_addr is not uniform on al
The "Dynamic Device Personalization" package is loaded at initialization
time by the driver, but the specific package file loaded depends upon
what package file is found first by searching through a hard-coded list
of firmware paths. To enable greater control over the package loading,
we can add a
If the flow-director queue is stopped at some point during the running
of an application, the shutdown procedure for the port issues an error
as it tries to stop the queue a second time, and fails to do so. We can
eliminate this error by setting the tail-register pointer to NULL on
stop, and checki
This patchset contains a set of updates for the ice driver, a number of
which are in the area of the "rte_tm" APIs for Tx scheduling.
These patches were previously submitted as part of a larger set[1], but
separating them out here for easier review and merge ahead of the more
substantial changes f
Rather than assuming that each VSI can hold up to 256 queue pairs,
or the reported device limit, query the available nodes in the scheduler
tree to check that we are not overflowing the limit for number of
child scheduling nodes at each level. Do this by multiplying
max_children for each level beyo
The function to dump the TX scheduler topology only adds to the chart
nodes connected to TX queues or for the flow director VSI. Change the
function to work recursively from the root node and thereby include all
scheduler nodes, whether in use or not, in the dump.
Also, improve the output of the T
On Fri, 18 Oct 2024 22:19:35 +0530
Rajasekhar Pulluru wrote:
> Thanks Stephen.
>
> On Fri, Oct 18, 2024 at 10:13 PM Stephen Hemminger <
> step...@networkplumber.org> wrote:
>
> > On Fri, 18 Oct 2024 22:05:24 +0530
> > Rajasekhar Pulluru wrote:
> >
> > > Team,
> > > Does setting mtu using r
On Fri, 18 Oct 2024 13:29:03 +0530
Hanumanth Pothula wrote:
> The last argument passed to ssovf_parsekv() is an
> unsigned char*, but it is accessed as an integer.
> This can lead to an integer overflow.
>
> Hence, make ensure the argument is accessed as a char
> and for better error handling us
18/10/2024 03:09, fengchengwen:
> Hi Thomas and David,
>
> This patchset was already acked by Stephen.
> It missed in DPDK 24.07, hope merge in 24.11.
>
> Thanks
>
> On 2024/10/10 9:35, fengchengwen wrote:
> > Hi Thomas and David,
> >
> > Kindly ping for merge.
> >
> > On 2024/10/10 3:33, Step
https://bugs.dpdk.org/show_bug.cgi?id=1409
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resoluti
Some (newly introduced) use of "get_cross_property" was missed.
Convert to get_external_property.
Fixes: b0d0c84b3c0f ("build: replace deprecated function for cross compilation")
Signed-off-by: David Marchand
---
drivers/common/cnxk/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion
Hello Stephen,
On Wed, Oct 16, 2024 at 10:24 PM Stephen Hemminger
wrote:
>
> Improvements and unification of logging library.
> This version works on all platforms: Linux, Windows and FreeBSD.
>
> This is update to rework patch set. It adds several new features
> to the console log output.
>
>
On Fri, Oct 4, 2024 at 6:49 PM Bruce Richardson
wrote:
>
> On Wed, Jun 26, 2024 at 05:45:23AM +, Shaiq Wani wrote:
> > Set GRPCFG traffic class to value of 1 for best performance on current
> > generation of accelerators. Applicable to gen1 and gen2 devices.
> >
> > Signed-off-by: Shaiq Wani
A new DPDK release candidate is ready for testing:
https://git.dpdk.org/dpdk/tag/?id=v24.11-rc1
There are 630 new patches in this snapshot,
including many API/ABI compatibility breakages.
This release won't be ABI-compatible with previous ones.
Release notes:
https://doc.dpdk.org/
From: Shuanglin Wang
Modified return values of the several ULP utilities to comply C
coding standard. Like using macros EXIT_SUCCESS(0) and
EXIT_FAILURE(1) for the conventional status value for success
and failure, respectively. They are declared in the file stdlib.h.
Signed-off-by: Shuanglin W
On Fri, Oct 18, 2024 at 06:00:43PM +0200, David Marchand wrote:
> Some (newly introduced) use of "get_cross_property" was missed.
> Convert to get_external_property.
>
> Fixes: b0d0c84b3c0f ("build: replace deprecated function for cross
> compilation")
>
> Signed-off-by: David Marchand
> ---
Ac
> The last argument passed to ssovf_parsekv() is an
> unsigned char*, but it is accessed as an integer.
> This can lead to an integer overflow.
>
> Hence, make ensure the argument is accessed as a char
> and for better error handling use strtol instead of atoi.
>
> Signed-off-by: Hanumanth Pothul
On Fri, 18 Oct 2024 03:41:28 +
王颢 wrote:
> Dear Stephen,
>
> In r8169 pmd, mdelay and udelay are macros.
> #define mdelay rte_delay_ms
> #define udelay rte_delay_us
>
> Best Regards,
> Howard Wang
That kind of redefinition can lead to confusion, can it be avoided?
On Fri, 18 Oct 2024 05:45:18 +
王颢 wrote:
> Dear Stephen,
>
> As you can see, there are some issues with the current code regarding
> whitespace and CODE_INDENT. I used astyle to adjust the code format with the
> following command. However, I found that I could not fully meet the
> checkpa
On Fri, 18 Oct 2024 14:19:41 +0800
Jie Hai wrote:
> @@ -306,11 +324,16 @@ hns3_parse_devargs(struct rte_eth_dev *dev)
> &hns3_parse_dev_caps_mask, &dev_caps_mask);
> (void)rte_kvargs_process(kvlist, HNS3_DEVARG_MBX_TIME_LIMIT_MS,
> &hns3_par
Hi Maxime,
> -Original Message-
> From: Maxime Coquelin
> Sent: Friday, October 18, 2024 12:54 AM
> To: Chautru, Nicolas ; dev@dpdk.org
> Cc: hemant.agra...@nxp.com; Vargas, Hernan
> Subject: Re: [PATCH v1 1/2] baseband/acc: FFT support in VRB2 PRQ device
>
> Hi Nicolas,
>
> On 10/15/
Hey ARM folks,
Intel IPsec MB minimum version is being bumped to 1.4.
> -Original Message-
> From: Dooley, Brian
> Sent: Thursday 10 October 2024 11:13
> To: Ji, Kai ; De Lara Guarch, Pablo
>
> Cc: dev@dpdk.org; gak...@marvell.com; Dooley, Brian
>
> Subject: [PATCH v3] crypto/ipsec_mb:
Split IPv4 and IPv6 symbols in two separate headers. rte_ip4.h and
rte_ip6.h, respectively.
Update doxygen index accordingly.
Include rte_ip4.h and rte_ip6.h in rte_ip.h for backward compatibility
in applications.
Signed-off-by: Robin Jarry
Acked-by: Stephen Hemminger
---
doc/api/doxy-api-ind
On Fri, 18 Oct 2024 22:05:24 +0530
Rajasekhar Pulluru wrote:
> Team,
> Does setting mtu using rte_eth_dev_set_mtu limit the maximum size of the
> packet received on the dpdk port to the configured mtu size?
>
> On an intel machine with ixgbe port, with mtu set to 1500, no rx-offloads
> enabled,
On Tue, Jun 18, 2024 at 2:44 PM Morten Brørup
wrote:
> > From: Gregory Etelson [mailto:getel...@nvidia.com]
> >
> > DPDK IPv6 header definition combined the `version`, `traffic class`
> > and `flow label` header fields into a single 32 bits structure member
> > `vtc_flow`.
> >
> > The patch expan
On Fri, Oct 18, 2024 at 6:26 PM Bruce Richardson
wrote:
>
> On Fri, Oct 18, 2024 at 06:00:43PM +0200, David Marchand wrote:
> > Some (newly introduced) use of "get_cross_property" was missed.
> > Convert to get_external_property.
> >
> > Fixes: b0d0c84b3c0f ("build: replace deprecated function for
Thanks Stephen.
On Fri, Oct 18, 2024 at 10:13 PM Stephen Hemminger <
step...@networkplumber.org> wrote:
> On Fri, 18 Oct 2024 22:05:24 +0530
> Rajasekhar Pulluru wrote:
>
> > Team,
> > Does setting mtu using rte_eth_dev_set_mtu limit the maximum size of the
> > packet received on the dpdk port t
06/10/2024 23:09, Ferruh Yigit:
> On 10/6/2024 7:42 PM, Nandini Persad wrote:
> > This document was created to assist contributors in creating DPDK drivers
> > and provides suggestions and guidelines on how to upstream effectively.
> >
> > Signed-off-by: Ferruh Yigit
> > Signed-off-by: Nandini Pe
>
>
> > -Original Message-
> > From: Akhil Goyal
> > Sent: Friday, October 11, 2024 2:18 PM
> > To: Kusztal, ArkadiuszX ; dev@dpdk.org
> > Cc: Dooley, Brian
> > Subject: RE: [EXTERNAL] [PATCH v5 2/4] cryptodev: add ec points to sm2 op
> >
> > > In the case when PMD cannot support the fu
The previous commits introduced a new rte_ipv6_addr structure without
any alignment requirements. It is not compatible with the in6_addr POSIX
type available in netinet/in.h.
The main issue is that in6_addr is not uniform on all platforms which
causes unaligned access warnings when compiling witho
17/10/2024 17:10, Thomas Monjalon:
> From: Niall Meade
>
> Separate name, entries and key_len parameter checks in rte_hash_create().
> Also make the error messages more informative/verbose
> to help with debugging.
>
> Signed-off-by: Niall Meade
> Acked-by: Stephen Hemminger
> ---
> v4: format
On Fri, Oct 18, 2024 at 4:06 PM Robin Jarry wrote:
>
> Hi everyone,
>
> As discussed recently [1], here is a first draft of the IPv6 APIs rework. The
> API change was announced before the 24.07 release [2]. This series is intended
> for 24.11.
>
> [1] http://inbox.dpdk.org/dev/d2sr8t1h39cj.jrqfi6j
On Fri, 18 Oct 2024 14:40:37 +0530
Sriharsha Basavapatna wrote:
> This patch series introduces TruFlow functionality for Broadcom Thor2 NIC.
>
> TruFlow(TF) is the software library that exposes CFA HW resources to
> upper layer protocols or applications. This patch series implements the
> tfc (t
On Fri, Oct 18, 2024 at 3:57 PM David Marchand
wrote:
>
> This was detected in UNH envs.
>
> In Fedora 37 and other distributions, meson 0.57 breaks when calling
> the unit tests (probably because of an incompatibility with Python 3.11):
>
> $ meson test -C build --suite DPDK:fast-tests
> ninja: E
18/10/2024 22:11, Thomas Monjalon:
> A structure has been created for IPv6 addresses
> replacing the byte arrays of the IPv6 header.
>
> This change was failing the compilation:
> mrvl_flow.c:1055:29: error: incompatible type for argument 1 of 'memcmp'
>
> Instead of adapting the memcmp call, a n
A structure has been created for IPv6 addresses
replacing the byte arrays of the IPv6 header.
This change was failing the compilation:
mrvl_flow.c:1055:29: error: incompatible type for argument 1 of 'memcmp'
Instead of adapting the memcmp call, a new function is used
to compare an IPv6 address wi
Hi Stephen,
On 17/10/2024 04:23, Stephen Hemminger wrote:
On Wed, 16 Oct 2024 17:28:17 +0100
"Medvedkin, Vladimir" wrote:
Hi Stephen,
On 15/10/2024 23:29, Stephen Hemminger wrote:
On Fri, 11 Oct 2024 18:17:00 +
Vladimir Medvedkin wrote:
+
+uint32_t
+rte_thash_get_rand_poly(uint32_
On Thu, Aug 22, 2024 at 5:33 PM Alexander Kozyrev wrote:
>
> Support the IP Encapsulating Security Payload (ESP) in transport mode.
> Currently, we have RTE_PTYPE_TUNNEL_ESP for the ESP tunnel mode.
> Transport mode can be detected by parsing the "Next Header" field.
> The Next Header is TCP for t
18/10/2024 02:39, Morten Brørup:
> > From: Robin Jarry [mailto:rja...@redhat.com]
> > Sent: Friday, 18 October 2024 00.42
> >
> > Add more ICMP message types and codes based on RFC 792. Change the
> > namespace prefix from RTE_IP_ICMP_ to RTE_ICMP_ to allow
> > differentiation
> > between types an
On Fri, 18 Oct 2024 19:07:18 +0200
David Marchand wrote:
> Hello Stephen,
>
> On Wed, Oct 16, 2024 at 10:24 PM Stephen Hemminger
> wrote:
> >
> > Improvements and unification of logging library.
> > This version works on all platforms: Linux, Windows and FreeBSD.
> >
> > This is update to rewor
From: Long Li
The VSP assumes the packet doesn't have VLAN tags. When VLAN tag is
present in a TX packet, always strip it and use PPI to send VLAN info
through VSP packet.
Fixes: 4e9c73e96e83 ("net/netvsc: add Hyper-V network device")
Cc: Hui (Hui) Ling
Cc: Stephen Hemminger
Cc: Wei Hu
Cc: st
On 2024-10-18 17:37, Thomas Monjalon wrote:
17/10/2024 07:57, Mattias Rönnblom:
Mattias Rönnblom (7):
eal: add static per-lcore memory allocation facility
eal: add lcore variable functional tests
eal: add lcore variable performance test
random: keep PRNG state in lcore variable
po
Hello Joshua,
On Fri, Oct 18, 2024 at 1:42 AM Joshua Washington wrote:
>
> Currently, a number of integer types are typedef'd to their
> corresponding upserspace or RTE values. This can be problematic if these
> types are already defined somewhere else, as it would cause type
> collisions. This p
From: Vanshika Shukla
Introduces queue setup, release, start, and stop
APIs for ENETC4 RX and TX queues, enabling:
- Queue configuration and initialization
- Queue resource management (setup, release)
- Queue operation control (start, stop)
Signed-off-by: Apeksha Gupta
Signed-off-by: Gagandeep
From: Vanshika Shukla
This series introduces a new ENETC4 PMD driver for NXP's i.MX95
SoC, enabling basic network operations.
Vanshika Shukla (12):
net/enetc: Add initial ENETC4 PMD driver support
net/enetc: Add RX and TX queue APIs for ENETC4 PMD
net/enetc: Optimize ENETC4 data path
ne
From: Vanshika Shukla
Improves ENETC4 data path on i.MX95 Non-cache coherent platform by:
- Adding separate RX and TX functions.
- Reducing memory accesses
Signed-off-by: Apeksha Gupta
Signed-off-by: Gagandeep Singh
---
drivers/net/enetc/base/enetc4_hw.h | 2 +
drivers/net/enetc/enetc.h
From: Vanshika Shukla
Introduces support for:
- Up to 4 MAC addresses filtering
- Up to 4 VLAN filters
Enhances packet filtering capabilities for ENETC4 PMD.
Signed-off-by: Vanshika Shukla
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features/enetc4.ini | 2 +
drivers/net/enetc/base
From: Vanshika Shukla
This patch introduces a new ENETC4 PMD driver for NXP's i.MX95
SoC, enabling basic network operations. Key features include:
- Probe and teardown functions
- Hardware initialization for both Virtual Functions (VFs)
and Physical Function (PF)
Signed-off-by: Apeksha Gupta
From: Vanshika Shukla
This patch add support for:
- L3 (IPv4, IPv6) TX checksum offload
- L4 (TCP, UDP) TX checksum offload
- RX checksum validation for IPv4, IPv6, TCP, UDP
Signed-off-by: Apeksha Gupta
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features/enetc4.ini | 2 ++
drivers/n
From: Vanshika Shukla
Introduces support for multiple transmit and receive queues in ENETC4
PMD, enabling scalable packet processing, improved throughput, and
latency. Packet distribution is handled through Receive Side Scaling
(RSS).
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features
From: Vanshika Shukla
Enables ENETC4 PMD to handle multicast and promiscuous modes.
Signed-off-by: Vanshika Shukla
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features/enetc4.ini | 2 +
drivers/net/enetc/enetc.h | 5 +
drivers/net/enetc/enetc4_ethdev.c | 40 +
driv
From: Vanshika Shukla
Introduces Virtual Function (VF) to Physical Function (PF) messaging,
enabling VFs to communicate with the Linux PF driver for feature
enablement.
This patch also adds primary MAC address setup capability,
allowing VFs to configure their MAC addresses.
Signed-off-by: Vansh
From: Vanshika Shukla
This patch supports link event notifications for ENETC4 PMD, enabling:
- Link up/down event notifications
- Notification of link speed changes
Signed-off-by: Gagandeep Singh
Signed-off-by: Vanshika Shukla
---
doc/guides/nics/features/enetc4.ini | 1 +
drivers/net/enet
From: Vanshika Shukla
This patch add support for link update operation.
Signed-off-by: Vanshika Shukla
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features/enetc4.ini | 2 +
drivers/net/enetc/base/enetc4_hw.h | 9 ++
drivers/net/enetc/enetc.h | 25
drivers/net/enet
From: Vanshika Shukla
Introduces basic statistics collection for ENETC4 PMD, including:
- Packet transmit/receive counts
- Byte transmit/receive counts
- Error counters (TX/RX drops, errors)
Signed-off-by: Apeksha Gupta
Signed-off-by: Gagandeep Singh
---
doc/guides/nics/features/enetc4.ini |
From: Vanshika Shukla
Introduces packet type parsing for ENETC4 PMD, supporting:
- RTE_PTYPE_L2_ETHER (Ethernet II)
- RTE_PTYPE_L3_IPV4 (IPv4)
- RTE_PTYPE_L3_IPV6 (IPv6)
- RTE_PTYPE_L4_TCP (TCP)
- RTE_PTYPE_L4_UDP (UDP)
- RTE_PTYPE_L4_SCTP (SCTP)
- RTE_PTYPE_L4_ICMP (ICMP)
- RTE_PTYPE_L4_FRAG (I
From: Shuanglin Wang
Isolate external EM support as it is now defunct on Wh+.
Signed-off-by: Shuanglin Wang
Signed-off-by: Sriharsha Basavapatna
Reviewed-by: Shahaji Bhosle
Reviewed-by: Farah Smith
Reviewed-by: Ajit Khaparde
---
drivers/net/bnxt/tf_core/meson.build |2 -
drivers/ne
From: Shahaji Bhosle
FW tries to update the HWRM request data in the
delete case to update the mode bit and also
update invalid profile id. This update only
happens when the data is send over DMA. HWRM
requests are read only buffers and cannot be
updated. So driver now will always send WC
tcam se
From: Farah Smith
The maximum EM key size is 640 bits for Thor. But the lookup record
+ the key size is 679 bits. This value must be rounded up to a 128 bit
aligned number. So the size check should be 96 bytes rather than 80.
This fix allows keys > 601 bits to be successfully inserted.
Fixes:
From: Kishore Padmanabha
Added logic to add flows to wildcard tcam if flows fail to be added to
exact match table.
Signed-off-by: Kishore Padmanabha
Reviewed-by: Michael Baucom
Reviewed-by: Ajit Khaparde
Reviewed-by: Shahaji Bhosle
Signed-off-by: Sriharsha Basavapatna
---
drivers/net/bnxt/
From: Shahaji Bhosle
Max entries per session were not getting initialized
to 0, when the sessions were closed.
Reset max entries counter session when the session is initialized
Fixes: 97435d7906d7 ("net/bnxt: update Truflow core")
Signed-off-by: Shahaji Bhosle
Signed-off-by: Sriharsha Basavapat
From: Mike Baucom
Update to VFR code to:
- add the endpoint (efid) to the session
- modify the generic tables to write the l2 context id
- tfc session code changes to allow the efid to be added to the sid
- release both rfid and efid from afm
This patch includes a few related changes:
Thor2 cha
From: Kishore Padmanabha
If application does not specify mask in a field description then
use the default mask values from dpdk header files.
This patch also includes the following related changes.
fix stats collection for shared session
The stats accumulation was being performed on def
From: Kishore Padmanabha
Added support to generate recipe id generation.
This patch includes a few related changes:
fix segfault in the wildcard recipe process
The recipe id is being passed as 8 bit instead of 64bit
causing the crash.
Ported code using default_non_ha resource
From: Kishore Padmanabha
The locking for the parent child counters need to be done till the
stats are retrieved. Also the OVS is creating multiple F1 flows for
same tunnel hence reference count needs to be maintined for the F1
flows.
Fix name conflicts for class and action tables. Matcher alloca
From: Shahaji Bhosle
Add hooks in the hwrm and ulp layer to enable,
custom tunnel header support on wh+ generic app(ovs).
Signed-off-by: Shahaji Bhosle
Signed-off-by: Sriharsha Basavapatna
Reviewed-by: Kishore Padmanabha
Reviewed-by: Ajit Khaparde
---
drivers/net/bnxt/bnxt.h| 4
From: Kishore Padmanabha
Added support for the vf to vf flow offload for the whitney platform.
It includes the change of the pipeline from using vlan tags to using
custom L2 encap and decap of the packets.
Signed-off-by: Kishore Padmanabha
Signed-off-by: Sriharsha Basavapatna
Reviewed-by: Shah
From: Manish Kurup
1. ULP fixes to enable primitives to support mirroring
2. RTE parser changes to support and use multiple ports in RTE
input msgs
3. Template changes required to support ingress mirroring
4. Template changes required to support egress mirroring
(using VFR pipeline)
Signed
From: Mike Baucom
Template compiler modifications for v3 api:
Compile named/unnamed shared app resources for the applications
that are capable.
Change app id signature with base zero offset:
The app id is used in the calculation of the matching signatures
and as app id value incr
From: Jay Ding
Implement action read and clear support. Change flow
query count to reset the count after read in ULP.
Update cli cmds accordingly.
Fixed bnxt_mpc_xmit() to pad the mpc message to be
multiple of 16 bytes.
Signed-off-by: Jay Ding
Signed-off-by: Sriharsha Basavapatna
Reviewed-by:
Recheck-request: iol-unit-amd64-testing
From: Kishore Padmanabha
This patch provides the following changes.
support generic template items
Add support for jump action, dynamic tunnels and
flow priority to thor2 platform.
fix generic application template
The queue action is enabled for Thor2 platform.
E
From: Kishore Padmanabha
This patch updates template files for the following list
of changes, that are being added in the next patch.
dynamic support for VF representor mode (template files only)
The configurable VF representor mode is removed and it is
dynamic. The action record
On 10/15/24 00:30, Nicolas Chautru wrote:
Making the decoder more robust by forcing a default
6 bits LLR saturation to LDPC Decoder input.
Signed-off-by: Nicolas Chautru
---
drivers/baseband/acc/rte_vrb_pmd.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/baseband/acc/rte_
Recheck-request: iol-unit-amd64-testing
13/10/2024 10:35, Morten Brørup:
> Ethernet packets can be VLAN tagged, i.e. an Ethernet header can have a
> VLAN tag (a.k.a. VLAN header) embedded.
> Since the Ethernet header is 2 byte aligned, and the VLAN tag is directly
> related to the Ethernet header, the VLAN tag is also 2 byte aligned, so
For consistency with the rest of the code base, update
rte_security_ipsec_tunnel_param to use rte_ipv6_addr structures instead
of in6_addr.
Signed-off-by: Robin Jarry
---
doc/guides/rel_notes/release_24_11.rst | 2 ++
drivers/common/cnxk/cnxk_security.c| 14 ++
drivers/net/iavf/
>17/10/2024 17:10, Thomas Monjalon:
>> From: Niall Meade
>>
>> Separate name, entries and key_len parameter checks in rte_hash_create().
>> Also make the error messages more informative/verbose
>> to help with debugging.
>>
>> Signed-off-by: Niall Meade
>> Acked-by: Stephen Hemminger
>> ---
>> v
From: Shuanglin Wang
TF supports the flow scale query feature for OVS application.
The resource usage is tracked when opening a TF session
or adding/deleting a flow. The resources includes WC TCAM,
EM, Action, Counter, Meter, ACT_ENCAP, ACT_ENCAP, and SP_SMAC.
User can query the resource usage us
1 - 100 of 134 matches
Mail list logo