Re: [dpdk-dev] [PATCH v2] mempool: enforce valid flags at creation

2021-10-15 Thread Andrew Rybchenko
On 10/14/21 10:37 PM, Stephen Hemminger wrote: > On Thu, 14 Oct 2021 21:29:16 +0200 > David Marchand wrote: > >> If we do not enforce valid flags are passed by an application, this >> application might face issues in the future when we add more flags. >> >> Signed-off-by: David Marchand >> Revie

[dpdk-dev] [PATCH v5 0/5] Implement rte_power_monitor API in virtio/vhost PMD

2021-10-15 Thread Miao Li
This patchset implements rte_power_monitor API in virtio and vhost PMD to reduce power consumption when no packet come in. This API can be called and tested in l3fwd-power after adding vhost and virtio support in l3fwd-power and ignoring the rx queue information check in queue_stopped(). v5: -Reba

[dpdk-dev] [PATCH v5 1/5] net/virtio: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch implements rte_power_monitor API in virtio PMD to reduce power consumption when no packet come in. According to current semantics of power monitor, this commit adds a callback function to decide whether aborts the sleep by checking current value against the expected value and virtio_get_

[dpdk-dev] [PATCH v5 2/5] vhost: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch defines rte_vhost_power_monitor_cond which is used to pass some information to vhost driver. The information is including the address to monitor, the expected value, the mask to extract value read from 'addr', the value size of monitor address, the match flag used to distinguish the valu

[dpdk-dev] [PATCH v5 3/5] net/vhost: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch implements rte_power_monitor API in vhost PMD to reduce power consumption when no packet come in. According to current semantics of power monitor, this commit adds a callback function to decide whether aborts the sleep by checking current value against the expected value and vhost_get_mo

[dpdk-dev] [PATCH v5 4/5] power: modify return of queue_stopped

2021-10-15 Thread Miao Li
Since some vdevs like virtio and vhost do not support rxq_info_get and queue state inquiry, the error return value -ENOTSUP need to be ignored when queue_stopped cannot get rx queue information and rx queue state. This patch changes the return value of queue_stopped when rte_eth_rx_queue_info_get r

[dpdk-dev] [PATCH v5 5/5] examples/l3fwd-power: support virtio/vhost

2021-10-15 Thread Miao Li
In l3fwd-power, there is default port configuration which requires RSS and IPV4/UDP/TCP checksum. Once device does not support these, the l3fwd-power will exit and report an error. This patch updates the port configuration based on device capabilities after getting the device information to support

Re: [dpdk-dev] [PATCH] examples/vhost: change the default value of NIC's max queues

2021-10-15 Thread Maxime Coquelin
Hi, On 9/10/21 05:17, Xia, Chenbo wrote: Hi Wenwu, -Original Message- From: Ma, WenwuX Sent: Friday, September 10, 2021 9:52 PM To: dev@dpdk.org Cc: maxime.coque...@redhat.com; Xia, Chenbo ; Jiang, Cheng1 ; Hu, Jiayu ; Wang, Yinan ; Ma, WenwuX Subject: [PATCH] examples/vhost: change

Re: [dpdk-dev] [PATCH v5 2/5] vhost: implement rte_power_monitor API

2021-10-15 Thread Xia, Chenbo
Hi, > -Original Message- > From: Li, Miao > Sent: Friday, October 15, 2021 11:12 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com; Li, Miao > > Subject: [PATCH v5 2/5] vhost: implement rte_power_monitor API > > This patch defines rte_vhost_power_monitor_cond which is

Re: [dpdk-dev] [PATCH v5 3/5] net/vhost: implement rte_power_monitor API

2021-10-15 Thread Xia, Chenbo
> -Original Message- > From: Li, Miao > Sent: Friday, October 15, 2021 11:12 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com; Li, Miao > > Subject: [PATCH v5 3/5] net/vhost: implement rte_power_monitor API > > This patch implements rte_power_monitor API in vhost PMD

Re: [dpdk-dev] [PATCH v5 4/5] power: modify return of queue_stopped

2021-10-15 Thread Xia, Chenbo
> -Original Message- > From: Li, Miao > Sent: Friday, October 15, 2021 11:12 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com; Li, Miao > ; Burakov, Anatoly > Subject: [PATCH v5 4/5] power: modify return of queue_stopped > > Since some vdevs like virtio and vhost do n

Re: [dpdk-dev] [EXT] Re: [PATCH v2 1/6] eal/interrupts: implement get set APIs

2021-10-15 Thread Thomas Monjalon
14/10/2021 19:53, Dmitry Kozlyuk: > 2021-10-14 17:15 (UTC+), Harman Kalra: > > > > + rte_intr_type_set; > > > > + rte_intr_type_get; > > > > + rte_intr_instance_alloc; > > > > + rte_intr_instance_free; > > > > }; > > > > > > Do I understand correctly that these expor

[dpdk-dev] [Bug 828] [dpdk-21.11] zuc unit test is failing

2021-10-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=828 Bug ID: 828 Summary: [dpdk-21.11] zuc unit test is failing Product: DPDK Version: 21.11 Hardware: All OS: Linux Status: UNCONFIRMED Severity: normal Prio

[dpdk-dev] [PATCH v2] examples/vhost: change the default value of NIC's max queues

2021-10-15 Thread Wenwu Ma
vswitch can't launch with a 40G i40e port due to device start fails if NIC’s max queues > the default number of 128, so, we changed the default value from 128 to 512. Signed-off-by: Wenwu Ma --- examples/vhost/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vh

Re: [dpdk-dev] [PATCH] app/testpmd: fix l4 sw csum over multi segments

2021-10-15 Thread David Marchand
Hello, On Fri, Oct 15, 2021 at 7:27 AM Xiaoyun Li wrote: > > In csum forwarding mode, software UDP/TCP csum calculation only takes > the first segment into account while using the whole packet length so > the calculation will read invalid memory region with multi-segments > packets and will get w

Re: [dpdk-dev] [PATCH v2 0/7] crypto/security session framework rework

2021-10-15 Thread Zhang, Roy Fan
Hi Akhil, It shall work but Kasumi tests are passing :-) It is snow3g and aesni-mb/gcm that are failing. Thanks Regards, Fan > -Original Message- > From: Akhil Goyal > Sent: Thursday, October 14, 2021 7:24 PM > To: Zhang, Roy Fan ; dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@

Re: [dpdk-dev] [PATCH v5 5/5] examples/l3fwd-power: support virtio/vhost

2021-10-15 Thread Xia, Chenbo
> -Original Message- > From: Li, Miao > Sent: Friday, October 15, 2021 11:12 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com; Li, Miao > > Subject: [PATCH v5 5/5] examples/l3fwd-power: support virtio/vhost > > In l3fwd-power, there is default port configuration which

Re: [dpdk-dev] [Bug 828] [dpdk-21.11] zuc unit test is failing

2021-10-15 Thread David Marchand
Hello, On Fri, Oct 15, 2021 at 10:02 AM wrote: > > https://bugs.dpdk.org/show_bug.cgi?id=828 > > Bug ID: 828 >Summary: [dpdk-21.11] zuc unit test is failing >Product: DPDK >Version: 21.11 > Hardware: All > OS: Linux >

[dpdk-dev] [PATCH v14 0/5] Add PIE support for HQoS library

2021-10-15 Thread Liguzinski, WojciechX
DPDK sched library is equipped with mechanism that secures it from the bufferbloat problem which is a situation when excess buffers in the network cause high latency and latency variation. Currently, it supports RED for active queue management (which is designed to control the queue length but

[dpdk-dev] [PATCH v14 1/5] sched: add PIE based congestion management

2021-10-15 Thread Liguzinski, WojciechX
Implement PIE based congestion management based on rfc8033 Signed-off-by: Liguzinski, WojciechX --- drivers/net/softnic/rte_eth_softnic_tm.c | 6 +- lib/sched/meson.build| 10 +- lib/sched/rte_pie.c | 82 + lib/sched/rte_pie.h

[dpdk-dev] [PATCH v14 2/5] example/qos_sched: add PIE support

2021-10-15 Thread Liguzinski, WojciechX
patch add support enable PIE or RED by parsing config file. Signed-off-by: Liguzinski, WojciechX --- config/rte_config.h | 1 - examples/qos_sched/app_thread.c | 1 - examples/qos_sched/cfg_file.c | 111 ++ examples/qos_sched/cfg_file.h | 5 + examples/qos_s

[dpdk-dev] [PATCH v14 3/5] example/ip_pipeline: add PIE support

2021-10-15 Thread Liguzinski, WojciechX
Adding the PIE support for IP Pipeline Signed-off-by: Liguzinski, WojciechX --- examples/ip_pipeline/tmgr.c | 142 +++- 1 file changed, 74 insertions(+), 68 deletions(-) diff --git a/examples/ip_pipeline/tmgr.c b/examples/ip_pipeline/tmgr.c index e4e364cbc0..b138

[dpdk-dev] [PATCH v14 4/5] doc/guides/prog_guide: added PIE

2021-10-15 Thread Liguzinski, WojciechX
Added PIE related information to documentation. Signed-off-by: Liguzinski, WojciechX --- doc/guides/prog_guide/glossary.rst | 3 + doc/guides/prog_guide/qos_framework.rst | 60 +--- doc/guides/prog_guide/traffic_management.rst | 13 - 3 files changed, 66 inser

[dpdk-dev] [PATCH v14 5/5] app/test: add tests for PIE

2021-10-15 Thread Liguzinski, WojciechX
Tests for PIE code added to test application. Signed-off-by: Liguzinski, WojciechX --- app/test/meson.build |4 + app/test/test_pie.c | 1065 ++ lib/sched/rte_pie.c |6 +- lib/sched/rte_pie.h | 17 +- 4 files changed, 1085 insertions(+), 7 del

Re: [dpdk-dev] [PATCH v9 0/4] improve telemetry support with in-memory mode

2021-10-15 Thread Bruce Richardson
On Thu, Oct 14, 2021 at 09:00:09PM +0200, David Marchand wrote: > On Thu, Oct 14, 2021 at 12:50 PM Bruce Richardson > wrote: > > > > This patchset cleans up telemetry support for "in-memory" mode, so that > > multiple independent processes can be run using that mode and still have > > telemetry su

Re: [dpdk-dev] [PATCH v2] examples/vhost: change the default value of NIC's max queues

2021-10-15 Thread Xia, Chenbo
> -Original Message- > From: Ma, WenwuX > Sent: Saturday, October 16, 2021 4:01 AM Is your server time incorrect? You are sending patch from future > To: dev@dpdk.org > Cc: maxime.coque...@redhat.com; Xia, Chenbo ; Jiang, > Cheng1 ; Hu, Jiayu ; Yang, YvonneX > ; Ma, WenwuX > Subject: [P

Re: [dpdk-dev] [PATCH v2] mempool: enforce valid flags at creation

2021-10-15 Thread David Marchand
On Fri, Oct 15, 2021 at 9:02 AM Andrew Rybchenko wrote: > On 10/14/21 10:37 PM, Stephen Hemminger wrote: > > On Thu, 14 Oct 2021 21:29:16 +0200 > > David Marchand wrote: > > > >> If we do not enforce valid flags are passed by an application, this > >> application might face issues in the future w

Re: [dpdk-dev] [PATCH 2/5] ethdev: add capability to keep shared objects on restart

2021-10-15 Thread Andrew Rybchenko
On 10/14/21 5:14 PM, Dmitry Kozlyuk wrote: > > >> -Original Message- >> From: Dmitry Kozlyuk >> Sent: 13 октября 2021 г. 11:33 >> To: dev@dpdk.org; Andrew Rybchenko ; Ori >> Kam ; Raslan Darawsheh >> Cc: NBU-Contact-Thomas Monjalon ; Ferruh Yigit >> >> Subject: RE: [PATCH 2/5] ethdev: a

Re: [dpdk-dev] [PATCH] memzone: enforce valid flags when reserving

2021-10-15 Thread David Marchand
On Wed, Oct 13, 2021 at 10:47 AM Andrew Rybchenko wrote: > > On 10/12/21 11:14 PM, Stephen Hemminger wrote: > > On Tue, 12 Oct 2021 21:39:26 +0200 > > David Marchand wrote: > > > >> If we do not enforce valid flags are passed by an application, this > >> application might face issues in the futur

Re: [dpdk-dev] [PATCH] mbuf: enforce no option for dynamic fields and flags

2021-10-15 Thread David Marchand
On Wed, Oct 13, 2021 at 9:06 AM Andrew Rybchenko wrote: > On 10/12/21 11:14 PM, Stephen Hemminger wrote: > > On Tue, 12 Oct 2021 21:39:57 +0200 > > David Marchand wrote: > > > >> As stated in the API, dynamic field and flags should be created with no > >> additional flag (simply in the API for fu

Re: [dpdk-dev] [PATCH v2] eal: add telemetry callbacks for memory info

2021-10-15 Thread Power, Ciara
Hi Harman, >-Original Message- >From: Harman Kalra >Sent: Thursday 14 October 2021 18:17 >To: Harman Kalra ; dev@dpdk.org; Richardson, Bruce >; Power, Ciara ; >Burakov, Anatoly >Subject: RE: [PATCH v2] eal: add telemetry callbacks for memory info > >Ping... > >> -Original Message

Re: [dpdk-dev] [PATCH v25 1/6] dmadev: introduce DMA device library

2021-10-15 Thread Thomas Monjalon
13/10/2021 09:41, Thomas Monjalon: > 13/10/2021 02:21, fengchengwen: > > On 2021/10/13 3:09, Thomas Monjalon wrote: > > > 11/10/2021 09:33, Chengwen Feng: > > >> +static void > > >> +dma_release(struct rte_dma_dev *dev) > > >> +{ > > >> +rte_free(dev->dev_private); > > >> +memset(de

Re: [dpdk-dev] [PATCH v2] net/virtio: handle Tx checksums correctly for tunnel packets

2021-10-15 Thread Olivier Matz
On Thu, Oct 14, 2021 at 07:12:29AM +, Xia, Chenbo wrote: > > -Original Message- > > From: Ivan Malov > > Sent: Friday, September 17, 2021 2:50 AM > > To: dev@dpdk.org > > Cc: Maxime Coquelin ; sta...@dpdk.org; Andrew > > Rybchenko ; Xia, Chenbo > > ; > > Yuanhan Liu ; Olivier Matz > >

[dpdk-dev] [PATCH] doc: fix default mempool option

2021-10-15 Thread David Marchand
This option should be prefixed with -- for consistency with others. Fixes: a103a97e7191 ("eal: allow user to override default mempool driver") Cc: sta...@dpdk.org Signed-off-by: David Marchand --- doc/guides/freebsd_gsg/build_sample_apps.rst | 2 +- doc/guides/linux_gsg/build_sample_apps.rst

Re: [dpdk-dev] [PATCH v5 2/5] vhost: implement rte_power_monitor API

2021-10-15 Thread Li, Miao
Hi Chenbo, > -Original Message- > From: Xia, Chenbo > Sent: Friday, October 15, 2021 3:38 PM > To: Li, Miao ; dev@dpdk.org > Cc: maxime.coque...@redhat.com > Subject: RE: [PATCH v5 2/5] vhost: implement rte_power_monitor API > > Hi, > > > -Original Message- > > From: Li, Miao >

[dpdk-dev] [PATCH v3] examples/vhost: change the default value of NIC's max queues

2021-10-15 Thread Wenwu Ma
vswitch can't launch with a 40G i40e port due to device start fails if NIC’s max queues > the default number of 128, so, we changed the default value from 128 to 512. Fixes: 4796ad63ba1f ("examples/vhost: import userspace vhost application") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma --- examp

Re: [dpdk-dev] [PATCH v5 3/5] net/vhost: implement rte_power_monitor API

2021-10-15 Thread Li, Miao
Hi Chenbo, > -Original Message- > From: Xia, Chenbo > Sent: Friday, October 15, 2021 3:40 PM > To: Li, Miao ; dev@dpdk.org > Cc: maxime.coque...@redhat.com > Subject: RE: [PATCH v5 3/5] net/vhost: implement rte_power_monitor API > > > -Original Message- > > From: Li, Miao > > Se

Re: [dpdk-dev] [PATCH v5 4/5] power: modify return of queue_stopped

2021-10-15 Thread Li, Miao
Hi Chenbo, > -Original Message- > From: Xia, Chenbo > Sent: Friday, October 15, 2021 3:47 PM > To: Li, Miao ; dev@dpdk.org > Cc: maxime.coque...@redhat.com; Burakov, Anatoly > > Subject: RE: [PATCH v5 4/5] power: modify return of queue_stopped > > > -Original Message- > > From:

Re: [dpdk-dev] [PATCH v5 5/5] examples/l3fwd-power: support virtio/vhost

2021-10-15 Thread Li, Miao
Hi Chenbo, > -Original Message- > From: Xia, Chenbo > Sent: Friday, October 15, 2021 4:14 PM > To: Li, Miao ; dev@dpdk.org > Cc: maxime.coque...@redhat.com > Subject: RE: [PATCH v5 5/5] examples/l3fwd-power: support virtio/vhost > > > -Original Message- > > From: Li, Miao > > Se

Re: [dpdk-dev] [PATCH v2] vhost: add sanity check when operating the split ring

2021-10-15 Thread Maxime Coquelin
The title is too vague, I would put something like: vhost: add sanity check on inflight last index On 10/14/21 14:40, Li Feng wrote: The idx in rte_vhost_set_last_inflight_io_split is from the frontend s/idx/index/ driver, check if it's in the virtqueue range. Fixes: bb0c2de9602b ("vhost:

Re: [dpdk-dev] [PATCH] examples/vhost: change the default value of NIC's max queues

2021-10-15 Thread David Marchand
On Fri, Sep 10, 2021 at 5:17 AM Xia, Chenbo wrote: > > if NIC’s max queues > the default number of 128, > > so, we changed the default value from 128 to 512. > > > > I'd say it's not cool to still hard-code the MAX_QUEUES so that only 'some' > NICs > can work with the example. The app should have

Re: [dpdk-dev] [PATCH v4 1/4] mempool: add event callbacks

2021-10-15 Thread Andrew Rybchenko
On 10/13/21 2:01 PM, Dmitry Kozlyuk wrote: > Data path performance can benefit if the PMD knows which memory it will > need to handle in advance, before the first mbuf is sent to the PMD. > It is impractical, however, to consider all allocated memory for this > purpose. Most often mbuf memory comes

Re: [dpdk-dev] [PATCH v3 4/5] lib/kvargs: remove unneeded header includes

2021-10-15 Thread Olivier Matz
Hi Sean, On Thu, Oct 07, 2021 at 10:25:56AM +, Sean Morrissey wrote: > These header includes have been flagged by the iwyu_tool > and removed. > > Signed-off-by: Sean Morrissey > --- > lib/kvargs/rte_kvargs.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/lib/kvargs/rte_kvargs.c b

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Andrew Rybchenko
On 10/13/21 2:01 PM, Dmitry Kozlyuk wrote: > Mempool is a generic allocator that is not necessarily used for device > IO operations and its memory for DMA. Add MEMPOOL_F_NON_IO flag to mark > such mempools automatically if their objects are not contiguous > or IOVA are not available. Components can

Re: [dpdk-dev] [PATCH 2/5] ethdev: add capability to keep shared objects on restart

2021-10-15 Thread Dmitry Kozlyuk
> [...] > >>> From: Dmitry Kozlyuk > >>> > >>> rte_flow_action_handle_create() did not mention what happens with an > >>> indirect action when a device is stopped, possibly reconfigured, and > >>> started again. It is natural for some indirect actions to be > >>> persistent, like counters and mete

[dpdk-dev] [PATCH v6 0/5] Implement rte_power_monitor API in virtio/vhost PMD

2021-10-15 Thread Miao Li
This patchset implements rte_power_monitor API in virtio and vhost PMD to reduce power consumption when no packet come in. This API can be called and tested in l3fwd-power after adding vhost and virtio support in l3fwd-power and ignoring the rx queue information check in queue_stopped(). v6: -modi

[dpdk-dev] [PATCH v6 1/5] net/virtio: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch implements rte_power_monitor API in virtio PMD to reduce power consumption when no packet come in. According to current semantics of power monitor, this commit adds a callback function to decide whether aborts the sleep by checking current value against the expected value and virtio_get_

[dpdk-dev] [PATCH v6 2/5] vhost: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch defines rte_vhost_power_monitor_cond which is used to pass some information to vhost driver. The information is including the address to monitor, the expected value, the mask to extract value read from 'addr', the value size of monitor address, the match flag used to distinguish the valu

[dpdk-dev] [PATCH v6 3/5] net/vhost: implement rte_power_monitor API

2021-10-15 Thread Miao Li
This patch implements rte_power_monitor API in vhost PMD to reduce power consumption when no packet come in. According to current semantics of power monitor, this commit adds a callback function to decide whether aborts the sleep by checking current value against the expected value and vhost_get_mo

[dpdk-dev] [PATCH v6 4/5] power: modify return of queue_stopped

2021-10-15 Thread Miao Li
Since some vdevs like virtio and vhost do not support rxq_info_get and queue state inquiry, the error return value -ENOTSUP need to be ignored when queue_stopped cannot get rx queue information and rx queue state. This patch changes the return value of queue_stopped when rte_eth_rx_queue_info_get r

[dpdk-dev] [PATCH v6 5/5] examples/l3fwd-power: support virtio/vhost

2021-10-15 Thread Miao Li
In l3fwd-power, there is default port configuration which requires RSS and IPV4/UDP/TCP checksum. Once device does not support these, the l3fwd-power will exit and report an error. This patch updates the port configuration based on device capabilities after getting the device information to support

Re: [dpdk-dev] [PATCH 1/5] hash: add new toeplitz hash implementation

2021-10-15 Thread Medvedkin, Vladimir
Hi Konstantin, Thanks for the review, On 07/10/2021 20:23, Ananyev, Konstantin wrote: This patch add a new Toeplitz hash implementation using Galios Fields New Instructions (GFNI). Signed-off-by: Vladimir Medvedkin --- doc/api/doxy-api-index.md | 1 + lib/hash/meson.build | 1 +

Re: [dpdk-dev] [PATCH v4 1/4] mempool: add event callbacks

2021-10-15 Thread Dmitry Kozlyuk
> -Original Message- > From: Andrew Rybchenko > [...] > With below review notes processed > > Reviewed-by: Andrew Rybchenko > Thanks for the comments, I'll fix them all, just a small note below FYI. > > + rte_mcfg_mempool_read_lock(); > > + rte_mcfg_tailq_write_lock(); > > +

Re: [dpdk-dev] [PATCH 2/5] hash: enable gfni thash implementation

2021-10-15 Thread Medvedkin, Vladimir
Hi Konstantin, On 08/10/2021 13:31, Ananyev, Konstantin wrote: This patch enables new GFNI Toeplitz hash in predictable RSS library. Signed-off-by: Vladimir Medvedkin --- lib/hash/rte_thash.c | 43 +++ lib/hash/rte_thash.h | 19 +++

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Dmitry Kozlyuk
> -Original Message- > From: Andrew Rybchenko > [...] > > diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c > > index 51c0ba2931..2204f140b3 100644 > > --- a/lib/mempool/rte_mempool.c > > +++ b/lib/mempool/rte_mempool.c > > @@ -371,6 +371,8 @@ rte_mempool_populate_iova(str

Re: [dpdk-dev] [PATCH v3 4/5] lib/kvargs: remove unneeded header includes

2021-10-15 Thread Morrissey, Sean
On 15/10/2021 10:00, Olivier Matz wrote: Hi Sean, On Thu, Oct 07, 2021 at 10:25:56AM +, Sean Morrissey wrote: These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/kvargs/rte_kvargs.c | 1 - 1 file changed, 1 deletion(-) diff --g

Re: [dpdk-dev] [PATCH v2] vhost: add sanity check when operating the split ring

2021-10-15 Thread Li Feng
On Fri, Oct 15, 2021 at 4:52 PM Maxime Coquelin wrote: > > The title is too vague, I would put something like: > > vhost: add sanity check on inflight last index > > On 10/14/21 14:40, Li Feng wrote: > > The idx in rte_vhost_set_last_inflight_io_split is from the frontend > > s/idx/index/ > > > dr

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread David Marchand
Hello Dmitry, On Wed, Oct 13, 2021 at 1:02 PM Dmitry Kozlyuk wrote: > diff --git a/lib/mempool/rte_mempool.h b/lib/mempool/rte_mempool.h > index 663123042f..029b62a650 100644 > --- a/lib/mempool/rte_mempool.h > +++ b/lib/mempool/rte_mempool.h > @@ -262,6 +262,8 @@ struct rte_mempool { > #define

Re: [dpdk-dev] [PATCH v6 1/5] ethdev: introduce shared Rx queue

2021-10-15 Thread Andrew Rybchenko
On 10/12/21 5:39 PM, Xueming Li wrote: > In current DPDK framework, each Rx queue is pre-loaded with mbufs to > save incoming packets. For some PMDs, when number of representors scale > out in a switch domain, the memory consumption became significant. > Polling all ports also leads to high cache m

[dpdk-dev] [PATCH v2 0/5] optimized Toeplitz hash implementation

2021-10-15 Thread Vladimir Medvedkin
This patch series adds a new optimized implementation for the Toeplitz hash function using Galois Fields New instruction (GFNI). The main use case of this function is to calculate the hash value for a single data, so there is no bulk implementation. For performance reasons, the implementation was p

[dpdk-dev] [PATCH v2 1/5] hash: add new toeplitz hash implementation

2021-10-15 Thread Vladimir Medvedkin
This patch add a new Toeplitz hash implementation using Galios Fields New Instructions (GFNI). Signed-off-by: Vladimir Medvedkin --- doc/api/doxy-api-index.md | 1 + lib/hash/meson.build | 1 + lib/hash/rte_thash.c | 28 ++ lib/hash/rte_thash.h | 24 + lib/hash/rte_t

[dpdk-dev] [PATCH v2 2/5] hash: enable gfni thash implementation

2021-10-15 Thread Vladimir Medvedkin
This patch enables new GFNI Toeplitz hash in predictable RSS library. Signed-off-by: Vladimir Medvedkin --- lib/hash/rte_thash.c | 44 lib/hash/rte_thash.h | 19 +++ lib/hash/version.map | 1 + 3 files changed, 60 insertions(+), 4 del

[dpdk-dev] [PATCH v2 3/5] doc/hash: update documentation for the thash library

2021-10-15 Thread Vladimir Medvedkin
This patch adds documentation for the new optimized Toeplitz hash implementation using GFNI. Signed-off-by: Vladimir Medvedkin --- doc/guides/prog_guide/toeplitz_hash_lib.rst | 37 + doc/guides/rel_notes/release_21_11.rst | 4 2 files changed, 37 insertions

[dpdk-dev] [PATCH v2 4/5] test/thash: add tests for a new Toeplitz hash function

2021-10-15 Thread Vladimir Medvedkin
This patch provides a set of tests for verifying the new implementation of Toeplitz hash function using GFNI. Signed-off-by: Vladimir Medvedkin --- app/test/test_thash.c | 231 ++ 1 file changed, 231 insertions(+) diff --git a/app/test/test_thash.

[dpdk-dev] [PATCH v2 5/5] test/thash: add performance tests for the Toeplitz hash

2021-10-15 Thread Vladimir Medvedkin
This patch adds performance tests for different implementations of the Toeplitz hash function. Signed-off-by: Vladimir Medvedkin --- app/test/meson.build | 2 + app/test/test_thash_perf.c | 125 + 2 files changed, 127 insertions(+) create mode

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Andrew Rybchenko
On 10/15/21 12:18 PM, Dmitry Kozlyuk wrote: >> -Original Message- >> From: Andrew Rybchenko >> [...] >>> diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c >>> index 51c0ba2931..2204f140b3 100644 >>> --- a/lib/mempool/rte_mempool.c >>> +++ b/lib/mempool/rte_mempool.c >>> @@

Re: [dpdk-dev] [PATCH v3] test/hash: fix buffer overflow

2021-10-15 Thread David Marchand
On Thu, Oct 14, 2021 at 7:55 PM Vladimir Medvedkin wrote: > @@ -1607,6 +1611,17 @@ static struct rte_hash_parameters hash_params_ex = { > }; > > /* > + * Wrapper function around rte_jhash_32b. > + * It is required because rte_jhash_32b() accepts the length > + * as size of 4-byte units. > + */ >

Re: [dpdk-dev] [PATCH v12 02/12] librte_pcapng: add new library for writing pcapng files

2021-10-15 Thread Pattan, Reshma
> -Original Message- > From: dev On Behalf Of Stephen Hemminger > See draft RFC > https://www.ietf.org/id/draft-tuexen-opsawg-pcapng-03.html The page is not found. Might need to add new link I guess > +enum pcapng_interface_options { > + PCAPNG_IFB_NAME = 2, > + PCAPNG_IFB

Re: [dpdk-dev] [PATCH 2/5] ethdev: add capability to keep shared objects on restart

2021-10-15 Thread Andrew Rybchenko
On 10/15/21 12:04 PM, Dmitry Kozlyuk wrote: >> [...] > From: Dmitry Kozlyuk > > rte_flow_action_handle_create() did not mention what happens with an > indirect action when a device is stopped, possibly reconfigured, and > started again. It is natural for some indirect actions t

Re: [dpdk-dev] [PATCH] net/i40e: fix IPv6 fragment RSS offload type in flow

2021-10-15 Thread Jiang, YuX
> -Original Message- > From: dev On Behalf Of Alvin Zhang > Sent: Tuesday, October 12, 2021 4:40 PM > To: Xing, Beilei ; Guo, Junfeng > > Cc: dev@dpdk.org; Zhang, AlvinX ; > sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/i40e: fix IPv6 fragment RSS offload type in > flow > > To keep f

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Dmitry Kozlyuk
> -Original Message- > From: Andrew Rybchenko > Sent: 15 октября 2021 г. 12:34 > To: Dmitry Kozlyuk ; dev@dpdk.org > Cc: Matan Azrad ; Olivier Matz > Subject: Re: [PATCH v4 2/4] mempool: add non-IO flag > > External email: Use caution opening links or attachments > > > On 10/15/21 12

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Olivier Matz
On Fri, Oct 15, 2021 at 12:33:31PM +0300, Andrew Rybchenko wrote: > On 10/15/21 12:18 PM, Dmitry Kozlyuk wrote: > >> -Original Message- > >> From: Andrew Rybchenko > >> [...] > >>> diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c > >>> index 51c0ba2931..2204f140b3 100644

[dpdk-dev] [PATCH v3 0/3] support PPPoL2TPv2oUDP RSS Hash

2021-10-15 Thread Jie Wang
Support IAVF PPPoL2TPv2oUDP RSS Hash. Required to distribute packets based on inner IP src+dest address and TCP/UDP src+dest port. --- v3: * add testpmd match ppp and l2tpv2 protocol header fields value. * add the code of l2tpv2_encap. * update the title of ethdev patch and adjust the position

[dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-15 Thread Jie Wang
Added flow pattern items and header formats of L2TPv2 and PPP to support PPP over L2TPv2 over UDP protocol RSS Hash. Signed-off-by: Wenjun Wu Signed-off-by: Jie Wang --- doc/guides/prog_guide/rte_flow.rst | 25 +++ doc/guides/rel_notes/release_21_11.rst | 5 + lib/ethdev/rte_flow.c

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Dmitry Kozlyuk
> -Original Message- > From: Olivier Matz > Sent: 15 октября 2021 г. 12:43 > To: Andrew Rybchenko > Cc: Dmitry Kozlyuk ; dev@dpdk.org; Matan Azrad > > Subject: Re: [PATCH v4 2/4] mempool: add non-IO flag > > External email: Use caution opening links or attachments > > > On Fri, Oct

[dpdk-dev] [PATCH v3 2/3] net/iavf: support PPPoL2TPv2oUDP RSS Hash

2021-10-15 Thread Jie Wang
Add support for PPP over L2TPv2 over UDP protocol RSS Hash based on inner IP src/dst address and TCP/UDP src/dst port. Patterns are listed below: eth/ipv4(6)/udp/l2tpv2/ppp/ipv4(6) eth/ipv4(6)/udp/l2tpv2/ppp/ipv4(6)/udp eth/ipv4(6)/udp/l2tpv2/ppp/ipv4(6)/tcp Signed-off-by: Wenjun Wu Signed-off-b

[dpdk-dev] [PATCH v3 3/3] app/testpmd: support L2TPV2 and PPP protocol pattern

2021-10-15 Thread Jie Wang
Add support for test-pmd to parse protocol pattern L2TPv2 and PPP. Signed-off-by: Wenjun Wu Signed-off-by: Jie Wang --- app/test-pmd/cmdline.c | 244 ++ app/test-pmd/cmdline_flow.c | 396 app/test-pmd/testpmd.h | 22 ++ 3 files

Re: [dpdk-dev] [PATCH v25 1/6] dmadev: introduce DMA device library

2021-10-15 Thread fengchengwen
On 2021/10/15 16:29, Thomas Monjalon wrote: > 13/10/2021 09:41, Thomas Monjalon: >> 13/10/2021 02:21, fengchengwen: >>> On 2021/10/13 3:09, Thomas Monjalon wrote: 11/10/2021 09:33, Chengwen Feng: > +static void > +dma_release(struct rte_dma_dev *dev) > +{ > + rte_free(dev->dev_

[dpdk-dev] [Bug 827] unit_tests_eal/link_bonding:Failed to execute link_bonding_autotest

2021-10-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=827 xuemi...@nvidia.com (xuemi...@nvidia.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[dpdk-dev] 回复: [PATCH v2 1/1] devtools: add relative path support for ABI compatibility check

2021-10-15 Thread Feifei Wang
Hi, Sorry to disturb you. Have more comments for this patch or if it can be applied? Thanks very much. Best Regards Feifei > -邮件原件- > 发件人: Feifei Wang > 发送时间: Wednesday, August 11, 2021 2:17 PM > 收件人: Bruce Richardson > 抄送: dev@dpdk.org; nd ; Phil Yang ; > Feifei Wang ; Juraj Linkeš >

[dpdk-dev] 回复: [PATCH v1 0/2] replace tight loop with wait until equal api

2021-10-15 Thread Feifei Wang
Hi, Would you please help review this patch series? Thanks very much. Best Regards Feifei > -邮件原件- > 发件人: Feifei Wang > 发送时间: Wednesday, August 25, 2021 4:01 PM > 抄送: dev@dpdk.org; nd ; Feifei Wang > > 主题: [PATCH v1 0/2] replace tight loop with wait until equal api > > For dpdk/lib, di

[dpdk-dev] [PATCH v8 0/7] iavf: add iAVF IPsec inline crypto support

2021-10-15 Thread Radu Nicolau
Add support for inline crypto for IPsec, for ESP transport and tunnel over IPv4 and IPv6, as well as supporting the offload for ESP over UDP, and inconjunction with TSO for UDP and TCP flows. Depends on series "new features for ipsec and security libraries" https://patchwork.dpdk.org/project/dpdk/

[dpdk-dev] [PATCH v8 1/7] common/iavf: add iAVF IPsec inline crypto support

2021-10-15 Thread Radu Nicolau
Add support for inline crypto for IPsec. Signed-off-by: Declan Doherty Signed-off-by: Abhijit Sinha Signed-off-by: Radu Nicolau --- drivers/common/iavf/iavf_type.h | 1 + drivers/common/iavf/virtchnl.h | 17 +- drivers/common/iavf/virtchnl_inline_ipsec.h | 553 +

[dpdk-dev] [PATCH v8 2/7] net/iavf: rework tx path

2021-10-15 Thread Radu Nicolau
Rework the TX path and TX descriptor usage in order to allow for better use of oflload flags and to facilitate enabling of inline crypto offload feature. Signed-off-by: Declan Doherty Signed-off-by: Abhijit Sinha Signed-off-by: Radu Nicolau Acked-by: Jingjing Wu --- drivers/net/iavf/iavf_rxtx

[dpdk-dev] [PATCH v8 3/7] net/iavf: add support for asynchronous virt channel messages

2021-10-15 Thread Radu Nicolau
Add support for asynchronous virtual channel messages, specifically for inline IPsec messages. Signed-off-by: Declan Doherty Signed-off-by: Abhijit Sinha Signed-off-by: Radu Nicolau Acked-by: Jingjing Wu --- drivers/net/iavf/iavf.h | 16 drivers/net/iavf/iavf_vchnl.c | 138 +++

[dpdk-dev] [PATCH v8 4/7] net/iavf: add iAVF IPsec inline crypto support

2021-10-15 Thread Radu Nicolau
Add support for inline crypto for IPsec, for ESP transport and tunnel over IPv4 and IPv6, as well as supporting the offload for ESP over UDP, and inconjunction with TSO for UDP and TCP flows. Implement support for rte_security packet metadata Add definition for IPsec descriptors, extend support fo

[dpdk-dev] [PATCH v8 5/7] net/iavf: add xstats support for inline IPsec crypto

2021-10-15 Thread Radu Nicolau
Add per queue counters for maintaining statistics for inline IPsec crypto offload, which can be retrieved through the rte_security_session_stats_get() with more detailed errors through the rte_ethdev xstats. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Acked-by: Jingjing Wu --- dr

[dpdk-dev] [PATCH v8 6/7] net/iavf: add watchdog for VFLR

2021-10-15 Thread Radu Nicolau
Add watchdog to iAVF PMD which support monitoring the VFLR register. If the device is not already in reset then if a VF reset in progress is detected then notfiy user through callback and set into reset state. If the device is already in reset then poll for completion of reset. The watchdog is dis

[dpdk-dev] [PATCH v8 7/7] net/iavf: update doc with inline crypto support

2021-10-15 Thread Radu Nicolau
Update the PMD doc, feature matrix and release notes with the new inline crypto feature. Signed-off-by: Radu Nicolau --- doc/guides/nics/features/iavf.ini | 2 ++ doc/guides/nics/intel_vf.rst | 10 ++ doc/guides/rel_notes/release_21_11.rst | 1 + 3 files changed, 13 inse

[dpdk-dev] [PATCH] net/enic: fix build with GCC 7.5

2021-10-15 Thread Ferruh Yigit
Build error: ../drivers/net/enic/enic_fm_flow.c: In function 'enic_fm_flow_parse': ../drivers/net/enic/enic_fm_flow.c:1467:24: error: 'dev' may be used uninitialized in this function [-Werror=maybe-uninitialized] struct rte_eth_dev *dev; ^~~ ../drivers/ne

Re: [dpdk-dev] [PATCH v6 1/3] net/thunderx: enable build only on 64-bit Linux

2021-10-15 Thread Ferruh Yigit
On 10/14/2021 8:56 PM, pbhagavat...@marvell.com wrote: From: Pavan Nikhilesh Since AARCH32 extension is not implemented on thunderx family, only enable build for 64bit. Due to Linux kernel AF(Admin function) driver dependency, only enable build for Linux. Hi Pavan, Perhaps this patch took m

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread Dmitry Kozlyuk
Hello David, > [...] > - When rebasing on main, you probably won't be able to call this new flag. > The diff should be something like: > > diff --git a/app/test/test_mempool.c b/app/test/test_mempool.c index > d886f4800c..35c80291fa 100644 > --- a/app/test/test_mempool.c > +++ b/app/test/test_mem

Re: [dpdk-dev] [PATCH v13 0/2] testpmd shows incorrect rx_offload configuration

2021-10-15 Thread Ferruh Yigit
On 10/14/2021 1:56 PM, Ferruh Yigit wrote: On 10/14/2021 11:31 AM, Jie Wang wrote: Launch testpmd with multiple queues, and check rx_offload info. When testpmd shows the port configuration, it doesn't show RSS_HASH. --- v13:   - update the API comment.   - fix the bug that testpmd failed to ru

Re: [dpdk-dev] [PATCH] net/bonding: fix Rx queue data destroyed by Tx queue release

2021-10-15 Thread Ferruh Yigit
On 10/15/2021 10:55 AM, Xueming Li wrote: When release Tx queue, Rx queue data got freed because wrong Tx queue data located. This patch fixes the wrong Tx queue data location. Fixes: 7483341ae553 ("ethdev: change queue release callback") Signed-off-by: Xueming Li Reviewed-by: Ferruh Yigit

Re: [dpdk-dev] [PATCH 1/5] hash: add new toeplitz hash implementation

2021-10-15 Thread Ananyev, Konstantin
> >> +/** > >> + * Calculate Toeplitz hash. > >> + * > >> + * @warning > >> + * @b EXPERIMENTAL: this API may change without prior notice. > >> + * > >> + * @param m > >> + * Pointer to the matrices generated from the corresponding > >> + * RSS hash key using rte_thash_complete_matrix(). > >> +

Re: [dpdk-dev] [PATCH] driver: i40evf device initialization

2021-10-15 Thread Xueming(Steven) Li
On Wed, 2021-10-13 at 09:21 -0400, Ben Magistro wrote: > Hello, > > Replying here as I'm a little stuck and hoping someone has some > advice for what the next steps should be. > > Going from the list above of how to get this noticed by the LTS > maintainer(s), the patch, well commit message + sub

Re: [dpdk-dev] [PATCH v3 1/3] ethdev: support PPP and L2TPV2 procotol

2021-10-15 Thread Ferruh Yigit
On 10/15/2021 10:58 AM, Jie Wang wrote: +/** + * @warning + * @b EXPERIMENTAL: this structure may change without prior notice + * RTE_FLOW_ITEM_TYPE_PPP + * + * Matches PPP Header + */ +struct rte_flow_item_ppp { + uint8_t addr; /**< ppp address(8) */ + uint8_t ctrl; /**< ppp control(

Re: [dpdk-dev] [PATCH] net/enic: fix build with GCC 7.5

2021-10-15 Thread David Marchand
On Fri, Oct 15, 2021 at 12:28 PM Ferruh Yigit wrote: > > Build error: > ../drivers/net/enic/enic_fm_flow.c: In function 'enic_fm_flow_parse': > ../drivers/net/enic/enic_fm_flow.c:1467:24: > error: 'dev' may be used uninitialized in this function > [-Werror=maybe-uninitialized] >

Re: [dpdk-dev] [PATCH v13 0/2] testpmd shows incorrect rx_offload configuration

2021-10-15 Thread Ferruh Yigit
On 10/14/2021 1:56 PM, Ferruh Yigit wrote: On 10/14/2021 11:31 AM, Jie Wang wrote: Launch testpmd with multiple queues, and check rx_offload info. When testpmd shows the port configuration, it doesn't show RSS_HASH. --- v13:   - update the API comment.   - fix the bug that testpmd failed to ru

Re: [dpdk-dev] [PATCH v4 2/4] mempool: add non-IO flag

2021-10-15 Thread David Marchand
On Fri, Oct 15, 2021 at 12:42 PM Dmitry Kozlyuk wrote: > > a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c index > > 8d5f99f7e7..27d197fe86 100644 > > --- a/lib/mempool/rte_mempool.c > > +++ b/lib/mempool/rte_mempool.c > > @@ -802,6 +802,7 @@ rte_mempool_cache_free(struct rte_mempool_cache

  1   2   3   >