Re: virtio: RSS support capa

2024-09-08 Thread Andrew Rybchenko
On 9/7/24 23:55, Morten Brørup wrote: From: Morten Brørup [mailto:m...@smartsharesystems.com] Sent: Friday, 6 September 2024 21.38 Maxime, Chenbo, If the virtio PMD supports RSS, it should be announced in its capabilities. I think this should be added to virtio_dev_info_get(): if (hos

Re: [PATCH 04/11] net/sfc: fix driver logtype token

2024-09-08 Thread Andrew Rybchenko
On 9/7/24 17:54, David Marchand wrote: The net/sfc driver logtype was registered under pmd.net.sfc."driver". Fixes: 0f39f32482a1 ("net/sfc: remove use of EAL logtype") Signed-off-by: David Marchand --- drivers/net/sfc/sfc_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH] rcu: refactor rcu register/unregister functions

2024-09-08 Thread Doug Foster
This simplifies the implementation of rte_rcu_qsbr_thread_register() and rte_rcu_thread_unregister() functions. The simplified implementation is easier to read. Signed-off-by: Doug Foster Reviewed-by: Honnappa Nagarahalli Reviewed-by: Wathsala Vithanage --- .mailmap | 1 + lib/r

Re: [PATCH 05/11] drivers: reuse default logtype for SFC drivers

2024-09-08 Thread Andrew Rybchenko
On 9/7/24 17:54, David Marchand wrote: Nothing is fixed here, just reuse the value coming from the build framework rather than use a fixed string that may get wrong in the future. Signed-off-by: David Marchand Reviewed-by: Andrew Rybchenko

Re: [PATCH 11/11] drivers: use per line logging in helpers

2024-09-08 Thread Andrew Rybchenko
On 9/7/24 17:54, David Marchand wrote: Use RTE_LOG_LINE in existing macros that append a \n. Signed-off-by: David Marchand [snip] diff --git a/drivers/common/sfc_efx/sfc_efx_log.h b/drivers/common/sfc_efx/sfc_efx_log.h index 1519ebdc17..b41ef3490b 100644 --- a/drivers/common/sfc_efx/sfc_ef

[PATCH v2] ipsec: allow stateless IPsec processing

2024-09-08 Thread Aakash Sasidharan
Introduce stateless packet preparation API for IPsec processing. The new API would allow preparation of IPsec packets without altering the internal state of an IPsec session. For outbound IPsec processing, the change enables user to provide sequence number to be used for the IPsec operation. Sign

Does DPDK provide RX timestamps?

2024-09-08 Thread Dpdk Newbie
Hi. I am using Intel (i210) and AWS ENA network interface cards. I would like to measure the following RX latencies: 1) NIC to DPDK packet ring buffer 2) DPDK packet ring buffer to application via rte_eth_rx_burst. I don't mind measuring in nanoseconds or CPU cycles. Unfortunately I cannot find

Re: [PATCH 0/3] eal: mark API's as stable

2024-09-08 Thread Stephen Hemminger
On Thu, 5 Sep 2024 16:18:13 +0200 Morten Brørup wrote: > > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > Sent: Thursday, 5 September 2024 16.02 > > > > On Thu, Sep 5, 2024 at 3:14 PM Morten Brørup > > wrote: > > > > > > > From: David Marchand [mailto:david.march...@redhat.com] > > >

Re: [RFC 1/3] uapi: introduce kernel uAPI headers importation

2024-09-08 Thread Stephen Hemminger
On Fri, 6 Sep 2024 00:15:26 +0200 Maxime Coquelin wrote: > This patch introduces uAPI headers importation into the > DPDK repository. This import is possible thanks to Linux > Kernel licence exception for syscalls: > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/LICE

Re: [RFC 1/4] thash: add RSS hash key generation API

2024-09-08 Thread Stephen Hemminger
On Fri, 6 Sep 2024 16:53:15 + Vladimir Medvedkin wrote: > diff --git a/lib/hash/version.map b/lib/hash/version.map > index 11a5394a45..7d31fc1ba5 100644 > --- a/lib/hash/version.map > +++ b/lib/hash/version.map > @@ -52,6 +52,8 @@ EXPERIMENTAL { > > # added in 24.07 > rte_hash_

Re: [RFC 2/4] hash: add dynamic polynomial calculation

2024-09-08 Thread Stephen Hemminger
On Fri, 6 Sep 2024 16:53:16 + Vladimir Medvedkin wrote: > +struct divisors { > + int n; /* number of divisors */ > + int div_arr[MAX_DIVISORS]; > +}; Why int instead of a fixed size unsigned, like uint32_t?

Re: [RFC v2 0/3] Import Kernel uAPI header files

2024-09-08 Thread Stephen Hemminger
On Fri, 6 Sep 2024 17:23:34 +0200 Maxime Coquelin wrote: > This series enables importing Linux Kernel uAPI headers > into the DPDK repository. It aims at solving alignment > issues between the build system and the system applications > linked ot DPDK libraries are run on. > > It can also help s

Re: [PATCH v2] doc: add new driver guidelines

2024-09-08 Thread fengchengwen
Hi Ferruh, Thanks for the explanation. In the next new version: Acked-by: Chengwen Feng Thanks On 2024/9/6 16:27, Ferruh Yigit wrote: > On 9/6/2024 9:05 AM, fengchengwen wrote: >> On 2024/8/15 3:08, Stephen Hemminger wrote: >>> From: Nandini Persad >>> >>> This document was created to assist

Re: [PATCH 09/11] drivers: remove redundant newline from logs

2024-09-08 Thread fengchengwen
for drivers/dma/hisilicon/ and drivers/net/hns3/ Acked-by: Chengwen Feng On 2024/9/7 22:54, David Marchand wrote: > Fix places where two newline characters may be logged. > > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand > ---

Re: [PATCH 11/11] drivers: use per line logging in helpers

2024-09-08 Thread fengchengwen
for drivers/dma/hisilicon/ and drivers/net/hns3/ Acked-by: Chengwen Feng On 2024/9/7 22:54, David Marchand wrote: > Use RTE_LOG_LINE in existing macros that append a \n. > > Signed-off-by: David Marchand

Re: [PATCH v10 1/3] event/dlb2: add support for independent enqueue

2024-09-08 Thread fengchengwen
This commit should after "[PATCH v10 2/3] eventdev: add support for independent enqueue" because this commit use the macro which defined in later commit. Suggest order: 1. lib's commit 2. driver's commits On 2024/8/31 0:23, Abdullah Sevincer wrote: > DLB devices need events to be enqueued in the

Re: [PATCH 0/3] eal: mark API's as stable

2024-09-08 Thread Jerin Jacob
On Fri, Sep 6, 2024 at 7:33 PM Ferruh Yigit wrote: > > On 9/6/2024 2:11 PM, Jerin Jacob wrote: > > On Fri, Sep 6, 2024 at 3:04 PM Ferruh Yigit wrote: > >> > >> On 9/5/2024 8:58 AM, David Marchand wrote: > >>> On Wed, Sep 4, 2024 at 8:10 PM Stephen Hemminger > >>> wrote: > > The API's i

Re: [PATCH 0/3] eal: mark API's as stable

2024-09-08 Thread Jerin Jacob
On Fri, Sep 6, 2024 at 8:12 PM Morten Brørup wrote: > > > From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] > > Sent: Friday, 6 September 2024 16.12 > > > > On 9/6/2024 11:04 AM, Morten Brørup wrote: > > >> From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] > > >> Sent: Friday, 6 September 2024 10.54

RE: [PATCH 07/11] net/txgbe: move wrapper to base driver

2024-09-08 Thread Jiawen Wu
On Sat, Sep 7, 2024 10:54 PM, David Marchand wrote: > BP_LOG() is only used in the base driver. > > Signed-off-by: David Marchand > --- > drivers/net/txgbe/base/txgbe_osdep.h | 8 > drivers/net/txgbe/txgbe_logs.h | 7 --- > 2 files changed, 8 insertions(+), 7 deletions(-) >

Re: [PATCH 07/11] net/txgbe: move wrapper to base driver

2024-09-08 Thread David Marchand
On Mon, Sep 9, 2024 at 8:18 AM Jiawen Wu wrote: > > On Sat, Sep 7, 2024 10:54 PM, David Marchand wrote: > > BP_LOG() is only used in the base driver. > > > > Signed-off-by: David Marchand > > --- > > drivers/net/txgbe/base/txgbe_osdep.h | 8 > > drivers/net/txgbe/txgbe_logs.h | 7

Re: [PATCH 11/11] drivers: use per line logging in helpers

2024-09-08 Thread David Marchand
On Sun, Sep 8, 2024 at 10:55 AM Andrew Rybchenko wrote: > > On 9/7/24 17:54, David Marchand wrote: > > Use RTE_LOG_LINE in existing macros that append a \n. > > > > Signed-off-by: David Marchand > > [snip] > > > diff --git a/drivers/common/sfc_efx/sfc_efx_log.h > > b/drivers/common/sfc_efx/sfc_e