[PATCH v2] vhost: add log for VHOST_USER_SET_VRING_BASE

2022-01-14 Thread Andy Pei
This patch adds log for vring related info in handling of vhost message VHOST_USER_SET_VRING_BASE, which will be useful in live migration case. Signed-off-by: Andy Pei --- lib/vhost/vhost_user.c | 5 + 1 file changed, 5 insertions(+) diff --git a/lib/vhost/vhost_user.c b/lib/vhost/vhost_use

RE: [PATCH 0/6] allow more DPDK libraries to be disabled on build

2022-01-14 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Thursday, 13 January 2022 18.39 > > A common request on-list has been to allow more of the DPDK build to be > disabled by those who are > doing their own builds and only use a subset of the libraries. To this > end, this patchset

rte_memcpy alignment

2022-01-14 Thread Morten Brørup
Dear ARM/POWER/x86 maintainers, The architecture specific rte_memcpy() provides optimized variants to copy aligned data. However, the alignment requirements depend on the hardware architecture, and there is no common definition for the alignment. DPDK provides __rte_cache_aligned for cache opti

Re:Re: [PATCH] net/bonding: fix RSS not work for bonding in DPDK21.11

2022-01-14 Thread 俞文俊_yewu
Sorry,mq_mode is RTE_ETH_MQ_RX_RSS in rte_eth_conf. call chain: rte_eth_bond_create()->rte_eth_dev_configure()->rte_eth_bond_slave_add()->rte_eth_dev_start() Consider this call chain, internals->rss_key_len is 0 in bond_ethdev_configure() when we call rte_eth_dev_configure(). If internals

Re: [PATCH v3] ethdev: mark old macros as deprecated

2022-01-14 Thread Ferruh Yigit
On 1/14/2022 6:45 AM, Xia, Chenbo wrote: -Original Message- From: Yigit, Ferruh Sent: Wednesday, January 12, 2022 10:36 PM To: Thomas Monjalon ; Andrew Rybchenko ; Hemant Agrawal ; Tyler Retzlaff ; Xia, Chenbo ; Jerin Jacob Cc: dev@dpdk.org; Yigit, Ferruh ; Stephen Hemminger Subject: [

RE: [PATCH] build: add missing arch define for Arm

2022-01-14 Thread Ruifeng Wang
> -Original Message- > From: Thomas Monjalon > Sent: Friday, January 14, 2022 1:33 AM > To: Ruifeng Wang > Cc: dev@dpdk.org; sta...@dpdk.org; vikto...@rehivetech.com; > bruce.richard...@intel.com; step...@networkplumber.org; > juraj.lin...@pantheon.tech; Honnappa Nagarahalli > ; nd > Sub

Re: rte_memcpy alignment

2022-01-14 Thread Bruce Richardson
On Fri, Jan 14, 2022 at 09:56:50AM +0100, Morten Brørup wrote: > Dear ARM/POWER/x86 maintainers, > > The architecture specific rte_memcpy() provides optimized variants to copy > aligned data. However, the alignment requirements depend on the hardware > architecture, and there is no common defini

Re: [dpdk-dev] [PATCH v4] examples/l3fwd: ipv4 and udp/tcp cksum verification through software

2022-01-14 Thread Usama Nadeem
Hello, and thank you for the recommendations. I did investigate the alternative options offered. I have a question about it. After verifying mbuf's cksum, we may set the RTE MBUF F RX * CKSUM_* flags. I was just wondering if it should be done at the application level or in the driver code. If we ad

RE: rte_memcpy alignment

2022-01-14 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Friday, 14 January 2022 10.11 > > On Fri, Jan 14, 2022 at 09:56:50AM +0100, Morten Brørup wrote: > > Dear ARM/POWER/x86 maintainers, > > > > The architecture specific rte_memcpy() provides optimized variants to > copy aligned dat

Re: rte_memcpy alignment

2022-01-14 Thread Bruce Richardson
On Fri, Jan 14, 2022 at 10:53:54AM +0100, Morten Brørup wrote: > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Sent: Friday, 14 January 2022 10.11 > > > > On Fri, Jan 14, 2022 at 09:56:50AM +0100, Morten Brørup wrote: > > > Dear ARM/POWER/x86 maintainers, > > > > > > The archite

[PATCH] common/mlx5: fix MR lookup for non-contiguous mempool

2022-01-14 Thread Dmitry Kozlyuk
Memory region (MR) lookup by address inside mempool MRs was not accounting for the upper bound of an MR. For mempools covered by multiple MRs this could return a wrong MR LKey, typically resulting in an unrecoverable TxQ failure: mlx5_net: Cannot change Tx QP state to INIT Invalid argument Co

RE: rte_memcpy alignment

2022-01-14 Thread Ananyev, Konstantin
> -Original Message- > From: Morten Brørup > Sent: Friday, January 14, 2022 9:54 AM > To: Richardson, Bruce > Cc: Jan Viktorin ; Ruifeng Wang > ; David Christensen ; > Ananyev, Konstantin ; dev@dpdk.org > Subject: RE: rte_memcpy alignment > > > From: Bruce Richardson [mailto:bruce.ri

RE: rte_memcpy alignment

2022-01-14 Thread Morten Brørup
> From: Ananyev, Konstantin [mailto:konstantin.anan...@intel.com] > Sent: Friday, 14 January 2022 11.54 > > > From: Morten Brørup > > Sent: Friday, January 14, 2022 9:54 AM > > > > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > > Sent: Friday, 14 January 2022 10.11 > > > > > > O

RE: rte_memcpy alignment

2022-01-14 Thread Ananyev, Konstantin
> > > From: Ananyev, Konstantin [mailto:konstantin.anan...@intel.com] > > Sent: Friday, 14 January 2022 11.54 > > > > > From: Morten Brørup > > > Sent: Friday, January 14, 2022 9:54 AM > > > > > > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > > > Sent: Friday, 14 January 202

RE: [dpdk-dev] [PATCH v4] examples/l3fwd: ipv4 and udp/tcp cksum verification through software

2022-01-14 Thread Ananyev, Konstantin
Hi Usama, AFAIK, all drivers that support DEV_RX_OFFLOAD_*_CKSUM will set RTE_MBUF_F_RX_*_CKSUM_* properly (when DEV_RX_OFFLOAD_*_CKSUM was requested by user off-course). The problem is that not all PMDs support checksum offload. For such cases my suggestion was to install RX callback that would

Re: [dpdk-dev] [PATCH] net/bonding: fix offloading configuration

2022-01-14 Thread Ferruh Yigit
On 11/9/2021 7:57 AM, Min Hu (Connor) wrote: From: Chengchang Tang Currently, part offloadings of the bonding device will not take effect by using dev_configure(). Because the related configuration will not be delivered to the slave devices in this way. The offloading capability of the bonding

Re: [PATCH] build: add missing arch define for Arm

2022-01-14 Thread Thomas Monjalon
14/01/2022 10:05, Ruifeng Wang: > From: Thomas Monjalon > > 17/12/2021 09:54, Ruifeng Wang: > > > As per design document, RTE_ARCH is the name of the architecture. > > > However, the definition was missing on Arm with meson build. > > > It impacts applications that refers to this string. > > > > >

RE: [PATCH v4] kni: allow configuring the kni thread granularity

2022-01-14 Thread Connolly, Padraig J
> -Original Message- > From: Tudor Cornea > Sent: Wednesday, November 24, 2021 7:24 PM > To: Yigit, Ferruh > Cc: tho...@monjalon.net; step...@networkplumber.org; Zhang, Helin > ; dev@dpdk.org; Tudor Cornea > > Subject: [PATCH v4] kni: allow configuring the kni thread granularity > > The

Re: [PATCH v4] kni: allow configuring the kni thread granularity

2022-01-14 Thread Ferruh Yigit
On 11/24/2021 7:24 PM, Tudor Cornea wrote: The Kni kthreads seem to be re-scheduled at a granularity of roughly 1 millisecond right now, which seems to be insufficient for performing tests involving a lot of control plane traffic. Even if KNI_KTHREAD_RESCHEDULE_INTERVAL is set to 5 microseconds,

[PATCH] net/mlx5: fix RSS expansion compilation

2022-01-14 Thread Gregory Etelson
For each item in flow rule pattern that can be expanded, RSS expansion scheme returns ether specific next item flow item type or RTE_FLOW_ITEM_TYPE_VOID or RTE_FLOW_ITEM_TYPE_END. RTE_FLOW_ITEM_TYPE_END means that expansion has completed. RTE_FLOW_ITEM_TYPE_VOID means that next flow item was not lo

[PATCH v5] kni: allow configuring the kni thread granularity

2022-01-14 Thread Tudor Cornea
The Kni kthreads seem to be re-scheduled at a granularity of roughly 1 millisecond right now, which seems to be insufficient for performing tests involving a lot of control plane traffic. Even if KNI_KTHREAD_RESCHEDULE_INTERVAL is set to 5 microseconds, it seems that the existing code cannot resch

Re: dumpcap w/ pcapng produces out of order/negative times

2022-01-14 Thread Stephen Hemminger
On Thu, 13 Jan 2022 21:38:06 -0500 Ben Magistro wrote: > While utilizing dumpcap with our app, we have observed the captured file > producing out of order timestamps to include negative times. We are still > investigating the root cause but believe it is in lib/pcapng. While doing > some testin

Re: [PATCH v5] kni: allow configuring the kni thread granularity

2022-01-14 Thread Stephen Hemminger
On Fri, 14 Jan 2022 17:18:19 +0200 Tudor Cornea wrote: > +module_param(min_scheduling_interval, long, 0644); > +MODULE_PARM_DESC(min_scheduling_interval, > +"\t\tKni thread min scheduling interval (default=100 microseconds):\n" > +"\t\t" > +); > + > +module_param(max_scheduling_interval, long, 06

[PATCH v4 00/53] introduce IWYU

2022-01-14 Thread Sean Morrissey
This patchset introduces the include-what-you-use script which removes unused header includes. IWYU GitHub: https://github.com/include-what-you-use/include-what-you-use Along with the script there are some patches which make a start on removing unneeded headers. V4: * Re-added removed headers th

[PATCH v4 02/53] telemetry: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey Acked-by: Ciara Power --- lib/telemetry/telemetry.c | 1 - lib/telemetry/telemetry_data.h | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/telemetry/telemetry.c b/lib/telemetry/tele

[PATCH v4 01/53] devtools: script to remove unused headers includes

2022-01-14 Thread Sean Morrissey
This script can be used for removing headers flagged for removal by the include-what-you-use (IWYU) tool. The script has the ability to remove headers from specified sub-directories or dpdk as a whole and tests the build after each removal by calling meson compile. example usages: Remove headers

[PATCH v4 03/53] ring: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/ring/rte_ring.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index f17bd966be..bb95962b0c 100644 --- a/lib/ring/rte_ring.c +++ b/lib/

[PATCH v4 04/53] kvargs: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
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/lib/kvargs/rte_kvargs.c index 11f624ef14..7010d3ac51 100644 --- a/lib/kvargs/rte_kvargs.c +

[PATCH v4 05/53] eal: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey Reviewed-by: Harry van Haaren Reviewed-by: Mattias Rönnblom Reviewed-by: David Christensen --- lib/eal/common/eal_common_dev.c| 5 - lib/eal/common/eal_common_devargs.c| 1

[PATCH v4 06/53] vhost: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/vhost/fd_man.c | 6 -- lib/vhost/fd_man.h | 1 - lib/vhost/socket.c | 1 - lib/vhost/vdpa.c | 1 - lib/vhost/vhost.c | 4 lib/vhost/vhost.h | 6 --

[PATCH v4 07/53] timer: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/timer/rte_timer.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index 6d19ce469b..b3f3e229f6 100644 --- a/lib/timer/rte_timer.c ++

[PATCH v4 08/53] table: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/table/rte_swx_table_em.c | 1 - lib/table/rte_swx_table_em.h | 1 - lib/table/rte_swx_table_learner.c | 1 - lib/table/rte_swx_table_learner.h | 1 - lib/table/rte_swx_table_

[PATCH v4 09/53] stack: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/stack/rte_stack.c | 2 -- lib/stack/rte_stack.h | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/stack/rte_stack.c b/lib/stack/rte_stack.c index 56bf2c8d6d..1fabec2bfe 100644 --- a

[PATCH v4 10/53] security: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/security/rte_security.c | 2 -- lib/security/rte_security.h | 3 --- 2 files changed, 5 deletions(-) diff --git a/lib/security/rte_security.c b/lib/security/rte_security.c index 6e45a03fa

[PATCH v4 11/53] sched: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/sched/rte_pie.c | 2 -- lib/sched/rte_red.h | 1 - lib/sched/rte_sched.c | 1 - lib/sched/rte_sched.h | 1 - 4 files changed, 5 deletions(-) diff --git a/lib/sched/rte_pie.c b/lib/sch

[PATCH v4 12/53] ring: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/ring/rte_ring.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index bb95962b0c..7945e5d9ed 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/

[PATCH v4 13/53] rib: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/rib/rte_rib.c | 2 -- lib/rib/rte_rib.h | 1 - lib/rib/rte_rib6.c | 2 -- lib/rib/rte_rib6.h | 1 - 4 files changed, 6 deletions(-) diff --git a/lib/rib/rte_rib.c b/lib/rib/rte_rib.c in

[PATCH v4 14/53] reorder: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/reorder/rte_reorder.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/reorder/rte_reorder.c b/lib/reorder/rte_reorder.c index 9445853b79..f40a48201f 100644 --- a/lib/reorder/rte_reo

[PATCH v4 15/53] regexdev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/regexdev/rte_regexdev.c | 2 -- lib/regexdev/rte_regexdev.h | 3 --- 2 files changed, 5 deletions(-) diff --git a/lib/regexdev/rte_regexdev.c b/lib/regexdev/rte_regexdev.c index 04ab71373

[PATCH v4 16/53] rcu: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/rcu/rte_rcu_qsbr.c | 4 lib/rcu/rte_rcu_qsbr.h | 4 2 files changed, 8 deletions(-) diff --git a/lib/rcu/rte_rcu_qsbr.c b/lib/rcu/rte_rcu_qsbr.c index 7510db2f81..17be93e830 100

[PATCH v4 17/53] rawdev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/rawdev/rte_rawdev.c | 14 -- 1 file changed, 14 deletions(-) diff --git a/lib/rawdev/rte_rawdev.c b/lib/rawdev/rte_rawdev.c index a6134e76ea..2f0a4f132e 100644 --- a/lib/rawde

[PATCH v4 18/53] power: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Also added rte_string_fns.h to example app vm_power_manager for users without libbsd. Signed-off-by: Sean Morrissey --- examples/vm_power_manager/guest_cli/main.c | 1 + lib/power/guest_channel.c | 2 -- lib/p

[PATCH v4 19/53] port: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/port/rte_port_fd.h | 1 - lib/port/rte_port_frag.c| 2 -- lib/port/rte_port_frag.h| 1 - lib/port/rte_port_kni.c | 1 - lib/port/rte_port_kni.h | 1

[PATCH v4 20/53] pipeline: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/pipeline/rte_pipeline.c | 4 lib/pipeline/rte_port_in_action.c| 2 -- lib/pipeline/rte_swx_ctl.h | 2 -- lib/pipeline/rte_swx_pipeline.c | 1 - lib/pipelin

[PATCH v4 21/53] pdump: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/pdump/rte_pdump.c | 1 - lib/pdump/rte_pdump.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/pdump/rte_pdump.c b/lib/pdump/rte_pdump.c index af450695ec..b3a62df591 100644 --- a

[PATCH v4 22/53] pci: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/pci/rte_pci.c | 15 +-- lib/pci/rte_pci.h | 2 -- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/lib/pci/rte_pci.c b/lib/pci/rte_pci.c index c91be8b167..355772

[PATCH v4 23/53] pcapng: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/pcapng/rte_pcapng.c | 1 - lib/pcapng/rte_pcapng.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/pcapng/rte_pcapng.c b/lib/pcapng/rte_pcapng.c index 03edabe73e..5ae96a5bc9 1006

[PATCH v4 24/53] node: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/node/ethdev_ctrl.c | 2 -- lib/node/ethdev_rx.c | 1 - lib/node/ethdev_tx.c | 1 - lib/node/ip4_lookup.c | 5 - lib/node/ip4_rewrite.c | 4 lib/node/pkt_cls.c | 4 l

[PATCH v4 25/53] net: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/net/net_crc_avx512.c | 3 --- lib/net/net_crc_sse.c| 1 - lib/net/rte_arp.c| 1 - lib/net/rte_ether.h | 1 - lib/net/rte_net.h| 1 - lib/net/rte_net_crc.c| 2 -

[PATCH v4 26/53] metrics: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/metrics/rte_metrics.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/metrics/rte_metrics.c b/lib/metrics/rte_metrics.c index e2a0fbeda8..0c7878e65f 100644 --- a/lib/metrics/rte_

[PATCH v4 27/53] mempool: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/mempool/rte_mempool.c | 7 --- lib/mempool/rte_mempool.h | 4 2 files changed, 11 deletions(-) diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c index c5a699b1d6

[PATCH v4 28/53] member: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/member/rte_member.c | 2 -- lib/member/rte_member.h | 1 - lib/member/rte_member_vbf.c | 1 - 3 files changed, 4 deletions(-) diff --git a/lib/member/rte_member.c b/lib/member/rte

[PATCH v4 29/53] mbuf: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/mbuf/rte_mbuf.c | 11 --- lib/mbuf/rte_mbuf.h | 2 -- lib/mbuf/rte_mbuf_dyn.h | 2 -- lib/mbuf/rte_mbuf_pool_ops.c | 1 - lib/mbuf/rte_mbuf_pool_ops.h |

[PATCH v4 30/53] lpm: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/lpm/rte_lpm.c | 7 --- lib/lpm/rte_lpm.h | 4 lib/lpm/rte_lpm6.c | 7 --- lib/lpm/rte_lpm6.h | 1 - 4 files changed, 19 deletions(-) diff --git a/lib/lpm/rte_lpm.c b/lib/lp

[PATCH v4 31/53] latencystats: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/latencystats/rte_latencystats.c | 4 1 file changed, 4 deletions(-) diff --git a/lib/latencystats/rte_latencystats.c b/lib/latencystats/rte_latencystats.c index ab8db7a139..8985a377

[PATCH v4 32/53] kvargs: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
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/lib/kvargs/rte_kvargs.c index 7010d3ac51..9a59c500bf 100644 --- a/lib/kvargs/rte_kvargs.c +

[PATCH v4 33/53] kni: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/kni/rte_kni.c | 2 -- lib/kni/rte_kni.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/lib/kni/rte_kni.c b/lib/kni/rte_kni.c index fc8f0e7b5a..7971c56bb4 100644 --- a/lib/kni/rte_kn

[PATCH v4 34/53] jobstats: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/jobstats/rte_jobstats.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/jobstats/rte_jobstats.c b/lib/jobstats/rte_jobstats.c index 9b8fde5d55..af565a14ea 100644 --- a/lib/jobsta

[PATCH v4 35/53] ipsec: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/ipsec/esp_inb.c | 1 - lib/ipsec/esp_outb.c | 1 - lib/ipsec/ipsec_sad.c | 1 - lib/ipsec/sa.c| 3 --- lib/ipsec/sa.h| 1 - 5 files changed, 7 deletions(-) diff --git a

[PATCH v4 39/53] graph: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/graph/graph_debug.c| 2 -- lib/graph/graph_ops.c | 1 - lib/graph/graph_populate.c | 2 -- lib/graph/node.c | 1 - 4 files changed, 6 deletions(-) diff --git a/lib/grap

[PATCH v4 40/53] gpudev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/gpudev/gpudev.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/gpudev/gpudev.c b/lib/gpudev/gpudev.c index 9ae36dbae9..98bb759fb2 100644 --- a/lib/gpudev/gpudev.c +++ b/lib/gpudev/

[PATCH v4 41/53] flow_classify: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/flow_classify/rte_flow_classify.c | 3 --- lib/flow_classify/rte_flow_classify.h | 4 lib/flow_classify/rte_flow_classify_parse.c | 1 - lib/flow_classify/rte_flow_classif

[PATCH v4 42/53] fib: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/fib/dir24_8.c | 4 lib/fib/rte_fib.c | 2 -- lib/fib/rte_fib.h | 1 - lib/fib/rte_fib6.c | 2 -- lib/fib/rte_fib6.h | 1 - lib/fib/trie.c | 5 - lib/fib/trie.h | 2 --

[PATCH v4 43/53] eventdev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/eventdev/rte_event_ring.c | 6 -- lib/eventdev/rte_event_ring.h | 2 -- lib/eventdev/rte_event_timer_adapter.c | 5 - lib/eventdev/rte_event_timer_adapter.h |

[PATCH v4 44/53] efd: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/efd/rte_efd.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/efd/rte_efd.c b/lib/efd/rte_efd.c index 86ef46863c..560cd78961 100644 --- a/lib/efd/rte_efd.c +++ b/lib/efd/rte_efd.

[PATCH v4 45/53] eal: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/eal/linux/eal_thread.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/eal/linux/eal_thread.c b/lib/eal/linux/eal_thread.c index 9a0250d762..fa6cd7e2c4 100644 --- a/lib/eal/linux/ea

[PATCH v4 46/53] dmadev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/dmadev/rte_dmadev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/dmadev/rte_dmadev.h b/lib/dmadev/rte_dmadev.h index 4abe79c536..ad9e7a0975 100644 --- a/lib/dmadev/rte_dmadev.h +

[PATCH v4 36/53] ip_frag: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/ip_frag/rte_ip_frag_common.c | 1 - lib/ip_frag/rte_ipv4_fragmentation.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/ip_frag/rte_ip_frag_common.c b/lib/ip_frag/rte_ip_fra

[PATCH v4 37/53] hash: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/hash/rte_cuckoo_hash.c | 4 lib/hash/rte_fbk_hash.c| 6 -- lib/hash/rte_fbk_hash.h| 1 - lib/hash/rte_thash.c | 1 - lib/hash/rte_thash.h | 1 - 5 files change

[PATCH v4 47/53] distributor: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/distributor/rte_distributor.c | 2 -- lib/distributor/rte_distributor_match_sse.c | 2 -- lib/distributor/rte_distributor_single.c| 2 -- 3 files changed, 6 deletions(-) dif

[PATCH v4 38/53] gro: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/gro/gro_tcp4.c | 1 - lib/gro/gro_tcp4.h | 2 -- lib/gro/gro_udp4.c | 1 - lib/gro/gro_udp4.h | 2 -- lib/gro/gro_vxlan_tcp4.c | 1 - lib/gro/gro_vxlan_udp4.c | 1 -

[PATCH v4 48/53] compressdev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/compressdev/rte_comp.c| 1 - lib/compressdev/rte_comp.h| 1 - lib/compressdev/rte_compressdev.c | 1 - lib/compressdev/rte_compressdev.h | 1 - lib/compress

[PATCH v4 49/53] cmdline: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/cmdline/cmdline.c| 2 -- lib/cmdline/cmdline_cirbuf.c | 1 - lib/cmdline/cmdline_cirbuf.h | 1 - lib/cmdline/cmdline_parse.c | 3 --- lib/cmdline/c

[PATCH v4 50/53] bpf: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/bpf/bpf.c | 4 lib/bpf/bpf_exec.c | 6 -- lib/bpf/bpf_jit_x86.c | 5 - lib/bpf/bpf_load.c | 8 lib/bpf/bpf_pkt.c | 12 lib/bpf

[PATCH v4 51/53] bbdev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/bbdev/rte_bbdev.c | 4 lib/bbdev/rte_bbdev.h | 4 2 files changed, 8 deletions(-) diff --git a/lib/bbdev/rte_bbdev.c b/lib/bbdev/rte_bbdev.c index 7f353d4f7e..aaee7b7872 100644

[PATCH v4 52/53] cryptodev: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/cryptodev/cryptodev_pmd.h | 4 lib/cryptodev/rte_cryptodev.c | 11 --- lib/cryptodev/rte_cryptodev.h | 2 -- 3 files changed, 17 deletions(-) diff --git a/lib/cryptodev/cry

[PATCH v4 53/53] acl: remove unneeded header includes

2022-01-14 Thread Sean Morrissey
These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey --- lib/acl/rte_acl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/acl/rte_acl.c b/lib/acl/rte_acl.c index 4e693b2488..a61c3ba188 100644 --- a/lib/acl/rte_acl.c +++ b/lib/acl/rte_acl.c @

[PATCH] mempool: fix get objects from mempool with cache

2022-01-14 Thread Morten Brørup
A flush threshold for the mempool cache was introduced in DPDK version 1.3, but rte_mempool_do_generic_get() was not completely updated back then, and some inefficiencies were introduced. This patch fixes the following in rte_mempool_do_generic_get(): 1. The code that initially screens the cache

Re: [PATCH v5] kni: allow configuring the kni thread granularity

2022-01-14 Thread Ferruh Yigit
On 1/14/2022 4:24 PM, Stephen Hemminger wrote: On Fri, 14 Jan 2022 17:18:19 +0200 Tudor Cornea wrote: +module_param(min_scheduling_interval, long, 0644); +MODULE_PARM_DESC(min_scheduling_interval, +"\t\tKni thread min scheduling interval (default=100 microseconds):\n" +"\t\t" +); + +module_par

Re: [PATCH v4 01/53] devtools: script to remove unused headers includes

2022-01-14 Thread Stephen Hemminger
On Fri, 14 Jan 2022 16:23:17 + Sean Morrissey wrote: > This script can be used for removing headers flagged for removal by the > include-what-you-use (IWYU) tool. The script has the ability to remove > headers from specified sub-directories or dpdk as a whole and tests the > build after each

Re: [PATCH v4 01/53] devtools: script to remove unused headers includes

2022-01-14 Thread Bruce Richardson
On Fri, Jan 14, 2022 at 09:02:40AM -0800, Stephen Hemminger wrote: > On Fri, 14 Jan 2022 16:23:17 + > Sean Morrissey wrote: > > > This script can be used for removing headers flagged for removal by the > > include-what-you-use (IWYU) tool. The script has the ability to remove > > headers from

Re: [PATCH] net/bnxt: add back dependency to virt kmods

2022-01-14 Thread Ajit Khaparde
On Wed, Jan 12, 2022 at 5:42 AM Geoffrey Le Gourriérec wrote: > > During a large refactoring sweep for 21.11, a previous commit > removed the dependency the bnxt driver had on Linux virtual > bus drivers, such as vfio-pci. This breaks port detection. > > This patch adds the kmod dependency back as

Re: [PATCH] app/testpmd: fix scheduling send burst interval

2022-01-14 Thread Ferruh Yigit
On 11/23/2021 4:32 PM, Viacheslav Ovsiienko wrote: The first "set txtimes" command parameter specifies the time interval between scheduled send bursts for single queue. This interval should be the same for all the forwarding ports. It requires to maintain the timing related variables on per queue

Re: [RFC v2] ethdev: introduce ethdev dump API

2022-01-14 Thread Ajit Khaparde
On Wed, Jan 12, 2022 at 3:15 AM Min Hu (Connor) wrote: > > Thanks Morten, fixed in v3. > > 在 2022/1/12 15:20, Morten Brørup 写道: > >> From: Min Hu (Connor) [mailto:humi...@huawei.com] > >> Sent: Wednesday, 12 January 2022 03.40 > >> > >> Added the ethdev dump API which provides functions for query

Re:Re: [PATCH] net/bonding: fix RSS not work for bonding in DPDK21.11

2022-01-14 Thread 俞文俊_yewu
Hi, I tested Mellanox CX5 and Intel E810. The key is the call chain: 1.rte_eth_bond_create() 2.rte_eth_dev_configure(): bond_ethdev_configure() //internals->rss_key_len = 0, internals->rss_key can not be set properly 3.rte_eth_bond_slave_add(): __eth_bond_slave_add_lock_free()->eth_bond_s

Re: [PATCH] net/mlx5: fix RSS expansion compilation

2022-01-14 Thread Ferruh Yigit
On 1/14/2022 3:16 PM, Gregory Etelson wrote: For each item in flow rule pattern that can be expanded, RSS expansion scheme returns ether specific next item flow item type or RTE_FLOW_ITEM_TYPE_VOID or RTE_FLOW_ITEM_TYPE_END. RTE_FLOW_ITEM_TYPE_END means that expansion has completed. RTE_FLOW_ITEM

[PATCH] net/memif: remove unnecessary rx_intr stub

2022-01-14 Thread Stephen Hemminger
The code in memif driver to stub out rx_irq_enable is unnecessary and causes different error returns than other drivers. The core ethdev code will return -ENOTSUP if the driver has a null rx_queue_intr_enable callback. Fixes: 09c7e63a71f9 ("net/memif: introduce memory interface PMD") Cc: jgraj...@

Re: [dpdk-dev] [PATCH] ethdev: modify comment of INTR RESET event

2022-01-14 Thread Kalesh Anakkur Purayil
Hi Ferruh, Sorry for the late reply. Please see inline. On Mon, Sep 27, 2021 at 9:49 PM Ferruh Yigit wrote: > On 7/26/2021 7:43 AM, Chengwen Feng wrote: > > According to the definition of rte_eth_dev_reset(), the > > RTE_ETH_EVENT_INTR_RESET event could also use when PF resets. > > > > Can you