Re: [RFC PATCH v4 2/3] bus/pci: introduce the PCIe TLP Processing Hints API

2025-05-18 Thread David Marchand
On Sat, May 17, 2025 at 5:18 PM Wathsala Vithanage wrote: > diff --git a/drivers/bus/pci/linux/pci.c b/drivers/bus/pci/linux/pci.c > index c20d159218..463c06ad64 100644 > --- a/drivers/bus/pci/linux/pci.c > +++ b/drivers/bus/pci/linux/pci.c > @@ -814,3 +814,97 @@ rte_pci_ioport_unmap(struct rte_pc

RE: [PATCH] doc: add limitation in using segment-sz in crypto-perf

2025-05-18 Thread Hemant Agrawal
> -Original Message- > From: Anoob Joseph > Sent: 16 May 2025 20:11 > To: Akhil Goyal ; dev@dpdk.org > Cc: suanmi...@nvidia.com; kai...@intel.com; Hemant Agrawal > ; brian.doo...@intel.com; Akhil Goyal > > Subject: RE: [PATCH] doc: add limitation in using segment-sz in crypto-perf > Im

[PATCH] app/testpmd: fix random flow item token

2025-05-18 Thread Gregory Etelson
ITEM_RANDOM_VALUE token initializes 32 bits mask argument value from a constant source buffer. Testpmd initiated the mast value from the 3 bytes buffer - [0xff, 0xff, 0x00]. When testpmd copied that value to 32 bits mask it accessed a memory byte outside the source buffer. The patch fixes the sou

RE: [EXTERNAL] [PATCH] app/crypto-perf: fix aad offset alignment

2025-05-18 Thread Shani Peretz
> -Original Message- > From: Shani Peretz > Sent: Wednesday, 26 March 2025 9:14 > To: Akhil Goyal ; dev@dpdk.org > Cc: Suanming Mou ; sta...@dpdk.org; Brian > Dooley ; Pablo de Lara > > Subject: RE: [EXTERNAL] [PATCH] app/crypto-perf: fix aad offset alignment > > External email: Use ca

[PATCH 3/3] bitset: promote API stable

2025-05-18 Thread Mattias Rönnblom
Remove experimental tag on the bitset API. Signed-off-by: Mattias Rönnblom --- lib/eal/common/rte_bitset.c | 2 +- lib/eal/include/rte_bitset.h | 137 --- 2 files changed, 1 insertion(+), 138 deletions(-) diff --git a/lib/eal/common/rte_bitset.c b/lib/eal/comm

[PATCH 2/3] bitset: remove experimental bitops workaround

2025-05-18 Thread Mattias Rönnblom
With bitops APIs used by bitset stable, the workaround required to fix build for GCC without experimental API is no longer needed. Signed-off-by: Mattias Rönnblom --- lib/eal/include/rte_bitset.h | 132 --- 1 file changed, 132 deletions(-) diff --git a/lib/eal/in

[PATCH 1/3] bitops: promote bit manipulation API to stable

2025-05-18 Thread Mattias Rönnblom
Remove experimental tag from generic selection-based APIs to test and modify individual bits in 32- or 64-bit words. Signed-off-by: Mattias Rönnblom --- lib/eal/include/rte_bitops.h | 58 1 file changed, 58 deletions(-) diff --git a/lib/eal/include/rte_bitop