[dpdk-dev] [PATCH] lpm: do not return defer queue handle to the user

2020-07-11 Thread Ruifeng Wang
There is no need to return defer queue handle in rte_lpm_rcu_qsbr_add API, since enough flexibility has been provided to configure the defer queue. Signed-off-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli --- This is a followup patch of LPM RCU reclamation series [1]. [1] http://patches.dpd

Re: [dpdk-dev] DPDK hugepage memory fragmentation

2020-07-11 Thread Kamaraj P
Hello Anatoly/Bruce, We are using the 18_11 version of DPDK and we are using igb_uio. The way we observe an issue here is that, after we tried multiple iterations of start/stop of container application(which has DPDK), we were not able to allocate the memory for port during the init. We thought th

[dpdk-dev] [PATCH v3 2/8] net/dpaa: add VSP support in FMLIB

2020-07-11 Thread Hemant Agrawal
From: Jun Yang This patch adds support for VSP (Virtual Storage Profile) in fmlib routines. VSP allow a network interface to be divided into physical and virtual instance(s). The concept is very similar to SRIOV. Signed-off-by: Jun Yang Acked-by: Hemant Agrawal --- drivers/net/dpaa/Makefile

[dpdk-dev] [PATCH v3 3/8] net/dpaa: add support for fmcless mode

2020-07-11 Thread Hemant Agrawal
From: Sachin Saxena This patch uses fmlib to configure the FMAN HW for flow and distribution configuration, thus avoiding the need for static FMC tool execution optionally. Signed-off-by: Sachin Saxena Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/Makefile | 1 + drivers/net/dpaa/

[dpdk-dev] [PATCH v3 5/8] bus/dpaa: add Virtual Storage Profile port init

2020-07-11 Thread Hemant Agrawal
This patch add support to initialize the VSP ports in the FMAN library. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/fman.c | 57 +++ drivers/bus/dpaa/include/fman.h | 3 ++ 2 files changed, 60 insertions(+) diff --git a/drivers/bus/dpaa/base/fman/

[dpdk-dev] [PATCH v3 4/8] bus/dpaa: add shared MAC support

2020-07-11 Thread Hemant Agrawal
From: Radu Bulie A shared MAC interface is an interface which can be used by both kernel and userspace based on classification configuration It is defined in dts with the compatible string "fsl,dpa-ethernet-shared" which bpool will be seeded by the dpdk partition and configured as a netdev by the

[dpdk-dev] [PATCH v3 6/8] net/dpaa: add support for Virtual Storage Profile

2020-07-11 Thread Hemant Agrawal
From: Jun Yang This patch adds support for Virtual Storage profile (VSP) feature. With VSP support when memory pool is created, the hw buffer pool id i.e. bpid is not allocated; thhe bpid is identified by dpaa flow create API. The memory pool of RX queue is attached to specific BMan pool accordin

[dpdk-dev] [PATCH v3 8/8] net/dpaa: add RSS update func with FMCless

2020-07-11 Thread Hemant Agrawal
From: Sachin Saxena With fmlib (FMCLESS) mode now RSS can be modified on runtime. This patch add support for RSS update functions Signed-off-by: Hemant Agrawal Signed-off-by: Sachin Saxena --- drivers/net/dpaa/dpaa_ethdev.c | 37 ++ 1 file changed, 37 insertion

[dpdk-dev] [PATCH v3 7/8] net/dpaa: add fmc parser support for VSP

2020-07-11 Thread Hemant Agrawal
From: Jun Yang Parse the fmc.bin generated by fmc to setup RXQs for each port on fmc mode. The parser gets the fqids and vspids from fmc.bin. Signed-off-by: Jun Yang Acked-by: Hemant Agrawal --- drivers/net/dpaa/Makefile | 1 + drivers/net/dpaa/dpaa_ethdev.c | 26 +- drivers/net/dpaa/

[dpdk-dev] [PATCH v3 2/2] test: add support for testing bitrate stats free

2020-07-11 Thread Hemant Agrawal
This patch adds support to test rte_stats_bitrate_free Signed-off-by: Hemant Agrawal --- app/test/test_bitratestats.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/test/test_bitratestats.c b/app/test/test_bitratestats.c index 39d7f734d4..fd4e949642 100644 --- a/app/t

[dpdk-dev] [PATCH v3 1/2] bitratestats: add support for free

2020-07-11 Thread Hemant Agrawal
This patch adds support for free funnction. Signed-off-by: Hemant Agrawal --- lib/librte_bitratestats/rte_bitrate.c| 6 ++ lib/librte_bitratestats/rte_bitrate.h| 10 +- lib/librte_bitratestats/rte_bitratestats_version.map | 6 ++ 3 files changed,

Re: [dpdk-dev] [dpdk-stable] [PATCH v2] eal: fix macros to align value

2020-07-11 Thread Thomas Monjalon
24/06/2020 12:20, Harman Kalra: > Found an issue while using RTE_ALIGN_MUL_NEAR with an > expression, like as passed in estimate_tsc_freq(). > RTE_ALIGN_MUL_FLOOR resulted in unexpected value as > parathesis are required to evaluate an expression. > > Fixes: 5120203d753f ("eal: add macros to align

Re: [dpdk-dev] [PATCH v2] pci: keep API compatibility with mmap values

2020-07-11 Thread Thomas Monjalon
11/07/2020 05:27, Ma, LihongX: > Tested-by:ma,lhong For info, your name is written Lihong Ma Please remove patch content and avoid top-post when sending a test tag. > -Original Message- > From: dev On Behalf Of Thomas Monjalon > Sent: Saturday, July 11, 2020 4:41 AM > To: dev@dpdk.org

Re: [dpdk-dev] [PATCH v2] pci: keep API compatibility with mmap values

2020-07-11 Thread Thomas Monjalon
10/07/2020 23:07, Dmitry Kozlyuk: > On Fri, 10 Jul 2020 22:40:34 +0200, Thomas Monjalon wrote: > > The function pci_map_resource() returns MAP_FAILED in case of error. > > When replacing the call to mmap() by rte_mem_map(), > > the error code became NULL, breaking the API. > > This function is prob

[dpdk-dev] [PATCH v2] app/procinfo: enhance port mempool and crypto info

2020-07-11 Thread Hemant Agrawal
This patch enhances the port info for more details about the port and queues. This patch also add support to get info about the mempool ops and security context for crypto devices. Signed-off-by: Hemant Agrawal --- app/proc-info/main.c | 84 +--- 1 file ch

Re: [dpdk-dev] [dpdk-stable] [PATCH] examples: fix return value of function that parses portmask

2020-07-11 Thread Thomas Monjalon
Why nobody reviewed? Isn't there some maintainers of example apps? 11/06/2020 14:36, Sarosh Arif: > Giving invalid or zero portmask as command line option to > these applications will have an unexpected response. > The reason behind this is that the return value of function > that parses portmask

Re: [dpdk-dev] [PATCH] pmd_bond: fix mac address update for ACTIVE_BACKUP, TLB and ALB modes

2020-07-11 Thread Wei Hu (Xavier)
Hi, Sergey Lvov There was a two-patch series about bonding those are still in reviewing state, and the one of them includes the identical modification. http://patches.dpdk.org/patch/68742/ Would you like to review it and give 'Signed-off-by' on the patch if there are no object? Thanks, X

[dpdk-dev] [PATCH] mempool: enhance dump function to print ops name

2020-07-11 Thread Hemant Agrawal
Enhance the dump function to also print the ops index and associated mempool ops name Signed-off-by: Hemant Agrawal --- lib/librte_mempool/rte_mempool.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/librte_mempool/rte_mempool.c b/lib/librte_mempool/rte_mempool.c in

Re: [dpdk-dev] [PATCH v3 7/7] l3fwd-power: add auto-selection of default mode

2020-07-11 Thread Thomas Monjalon
19/06/2020 12:53, Anatoly Burakov: > Currently, the application does support running without the power > library being initialized, but it has to be specifically requested. On > platforms without support for frequency scaling using the power library, > we can just enable interrupt-only mode by defa

[dpdk-dev] [PATCH 2/4] net/hns3: support 200G speed rate

2020-07-11 Thread Wei Hu (Xavier)
The 200G device has a new device id 0xA228, so adds this device id to pci table for pci driver can probe it. Similar to the network port with other speed, the hns3 PMD driver gets 200G speed information from firmware, and passes them to DPDK framework. Signed-off-by: Wei Hu (Xavier) --- drivers/

[dpdk-dev] [PATCH 1/4] net/hns3: support copper media type

2020-07-11 Thread Wei Hu (Xavier)
The hns3 network engine is built-in multiple SoCs, such as kunpeng 920, kunpeng 930, etc. The PCI revision id is 0x21 in kunpeng 920, and the PCI revision id is 0x30 in kunpeng 930. Copper media type is supported for hns3 PF device in kunpeng 930 and later SoCs. The configuration operation for PHY

[dpdk-dev] [PATCH 0/4] updates for hns3 PMD driver

2020-07-11 Thread Wei Hu (Xavier)
This series are misc updates for hns3 PMD driver. Lijun Ou (1): net/hns3: fix RSS configuration when empty RSS type Min Hu (Connor) (1): net/hns3: support keeping CRC Wei Hu (Xavier) (2): net/hns3: support copper media type net/hns3: support 200G speed rate drivers/net/hns3/hns3_cmd.h

[dpdk-dev] [PATCH 3/4] net/hns3: support keeping CRC

2020-07-11 Thread Wei Hu (Xavier)
From: "Min Hu (Connor)" CRC is the end of frame, which occupies 4 bytes. Keeping CRC is a feature of MAC, which will not strip CRC field when receiving frames. The featrue can be enabled using DEV_RX_OFFLOAD_KEEP_CRC offload by upper level application. And the feature is only supported for hns3 P

[dpdk-dev] [PATCH 4/4] net/hns3: fix RSS configuration when empty RSS type

2020-07-11 Thread Wei Hu (Xavier)
From: Lijun Ou According to the definition of RSS types of action attributes from testpmd, the driver will not disable RSS but instead requests the unspecified "best-effort" settings when upper application call rte_flow_create API function to create flow using empty RSS types. As a result, here

[dpdk-dev] [PATCH v2 4/4] net/hns3: fix RSS configuration when empty RSS type

2020-07-11 Thread Wei Hu (Xavier)
From: Lijun Ou According to the definition of RSS types of action attributes from testpmd, the driver will not disable RSS but instead requests the unspecified "best-effort" settings when upper application call rte_flow_create API function to create flow using empty RSS types. As a result, here

[dpdk-dev] [PATCH v2 0/4] updates for hns3 PMD driver

2020-07-11 Thread Wei Hu (Xavier)
This series are updates for hns3 PMD driver. Lijun Ou (1): net/hns3: fix RSS configuration when empty RSS type Min Hu (Connor) (1): net/hns3: support keeping CRC Wei Hu (Xavier) (2): net/hns3: support copper media type net/hns3: support 200G speed rate drivers/net/hns3/hns3_cmd.h

[dpdk-dev] [PATCH v2 2/4] net/hns3: support 200G speed rate

2020-07-11 Thread Wei Hu (Xavier)
The 200G device has a new device id 0xA228, so adds this device id to pci table for pci driver can probe it. Similar to the network port with other speed, the hns3 PMD driver gets 200G speed information from firmware, and passes them to DPDK framework. Signed-off-by: Wei Hu (Xavier) --- drivers/

[dpdk-dev] [PATCH v2 3/4] net/hns3: support keeping CRC

2020-07-11 Thread Wei Hu (Xavier)
From: "Min Hu (Connor)" CRC is the end of frame, which occupies 4 bytes. Keeping CRC is a feature of MAC, which will not strip CRC field when receiving frames. The featrue can be enabled using DEV_RX_OFFLOAD_KEEP_CRC offload by upper level application. And the feature is only supported for hns3 P

[dpdk-dev] [PATCH v2 1/4] net/hns3: support copper media type

2020-07-11 Thread Wei Hu (Xavier)
The hns3 network engine is built-in multiple SoCs, such as kunpeng 920, kunpeng 930, etc. The PCI revision id is 0x21 in kunpeng 920, and the PCI revision id is 0x30 in kunpeng 930. Copper media type is supported for hns3 PF device in kunpeng 930 and later SoCs. The configuration operation for PHY

[dpdk-dev] [PATCH v8 02/24] ethdev: add a link status text representation

2020-07-11 Thread Ivan Dyukov
link status structure keeps complicated values which are hard to represent to end user. e.g. link_speed has INT_MAX value which means that speed is unknown. To simplify processing of the values in application, new dpdk function is introduced. This commit adds function which treat link status struc

[dpdk-dev] [PATCH v8 03/24] app: UNKNOWN link speed print

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications and docs Signed-off-by: Ivan Dyukov --- app/proc-info/main.c | 9 +++-- app/test-pipeline/init.c | 11 +- app/test-pmd/config.c | 20 +++---

[dpdk-dev] [PATCH v8 00/24] ethdev: allow unknown link speed

2020-07-11 Thread Ivan Dyukov
MAINTAINERS | 1 + app/proc-info/main.c | 9 +- app/test-pipeline/init.c | 11 ++- app/test-pmd/config.c| 20 +++-- app/test-pmd/testpmd.c

[dpdk-dev] [PATCH v8 01/24] ethdev: allow unknown link speed

2020-07-11 Thread Ivan Dyukov
From: Thomas Monjalon When querying the link information, the link status is a mandatory major information. Other boolean values are supposed to be accurate: - duplex mode (half/full) - negotiation (auto/fixed) This API update is making explicit that the link speed information is

[dpdk-dev] [PATCH v8 07/24] examples: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications: * ipv4_multicast * l2fwd-jobstats * l2fwd-keepalive * l3fwd * link_status_interrupt Signed-off-by: Ivan Dyukov --- examples/ipv4_multicast/main.c| 12 --- examples/l2fwd-job

[dpdk-dev] [PATCH v8 08/24] examples/bbdev_app: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/bbdev_app/main.c | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/examples/bbdev_app/main.c b/examples/bbdev_app/main.c index 68a46050c..ac7166bc9 100644 --- a/exa

[dpdk-dev] [PATCH v8 04/24] net/ixgbe: return unknown speed in status

2020-07-11 Thread Ivan Dyukov
rte_ethdev has declared new NUM_UNKNOWN speed which could be used in case when no speed information is available Signed-off-by: Ivan Dyukov Reviewed-by: Wei Zhao --- drivers/net/ixgbe/ixgbe_ethdev.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe

[dpdk-dev] [PATCH v8 05/24] net/i40e: return unknown speed in status

2020-07-11 Thread Ivan Dyukov
rte_ethdev has declared new NUM_UNKNOWN speed which could be used in case when no speed information is available and link is up. NUM_NONE should be returned, if link is down. Signed-off-by: Ivan Dyukov Acked-by: Jeff Guo --- drivers/net/i40e/i40e_ethdev.c| 5 - drivers/net/i40e/i40e_et

[dpdk-dev] [PATCH v8 09/24] examples/ioat: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/ioat/ioatfwd.c | 13 + 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/examples/ioat/ioatfwd.c b/examples/ioat/ioatfwd.c index b66ee73bc..7d1164ebd 100644 --- a/exa

[dpdk-dev] [PATCH v8 10/24] examples/ip_*: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications: * ip_fragmentation * ip_reassembly * l3fwd-acl Signed-off-by: Ivan Dyukov --- examples/ip_fragmentation/main.c | 13 + examples/ip_reassembly/main.c| 12 examples/l3fwd-acl/mai

[dpdk-dev] [PATCH v8 06/24] net/ice: return unknown speed in status

2020-07-11 Thread Ivan Dyukov
rte_ethdev has declared new NUM_UNKNOWN speed which could be used in case when no speed information is available and link is up. NUM_NONE should be returned, if link is down. Signed-off-by: Ivan Dyukov Reviewed-by: Ferruh Yigit --- drivers/net/ice/ice_ethdev.c | 5 - 1 file changed, 4 inser

[dpdk-dev] [PATCH v8 12/24] examples/ipsec-secgw: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/ipsec-secgw/ipsec-secgw.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/examples/ipsec-secgw/ipsec-secgw.c b/examples/ipsec-secgw/ipsec-secgw.c index f777

[dpdk-dev] [PATCH v8 14/24] examples/l2fwd-crypt: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/l2fwd-crypto/main.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/examples/l2fwd-crypto/main.c b/examples/l2fwd-crypto/main.c index 827da9b3e..cdb4f18ab 10

[dpdk-dev] [PATCH v8 11/24] examples/ip_pipeline: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/ip_pipeline/cli.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/examples/ip_pipeline/cli.c b/examples/ip_pipeline/cli.c index d79699e2e..236553aae 100644 -

[dpdk-dev] [PATCH v8 13/24] examples/kni: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/kni/main.c | 26 +- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/examples/kni/main.c b/examples/kni/main.c index f5d12a5b8..679b158d4 100644 --- a/e

[dpdk-dev] [PATCH v8 16/24] examples/l2fwd: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/l2fwd/main.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/examples/l2fwd/main.c b/examples/l2fwd/main.c index e04c601b5..dd9ca43a0 100644 --- a/examples/l

[dpdk-dev] [PATCH v8 15/24] examples/l2fwd-event: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/l2fwd-event/main.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/examples/l2fwd-event/main.c b/examples/l2fwd-event/main.c index 4fe500333..3849aaae0 10064

[dpdk-dev] [PATCH v8 22/24] examples/qos_sched: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/qos_sched/init.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/examples/qos_sched/init.c b/examples/qos_sched/init.c index 9626c15b8..4bb975fc9 100644 --- a/

[dpdk-dev] [PATCH v8 18/24] examples/l3fwd-power: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/l3fwd-power/main.c | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c index 9db94ce04..f5bf0a92d 1006

[dpdk-dev] [PATCH v8 20/24] examples/ntb: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_strf function to example applications Signed-off-by: Ivan Dyukov --- examples/ntb/ntb_fwd.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/ntb/ntb_fwd.c b/examples/ntb/ntb_fwd.c index eba8ebf9f..1cbaace58 100644 --- a/examples/nt

[dpdk-dev] [PATCH v8 17/24] examples/l3fwd-graph: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/l3fwd-graph/main.c | 14 -- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/examples/l3fwd-graph/main.c b/examples/l3fwd-graph/main.c index c70270c4d..8af835e15 10

[dpdk-dev] [PATCH v8 19/24] examples/multi_proc*: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- .../client_server_mp/mp_server/init.c | 14 +- examples/multi_process/symmetric_mp/main.c | 12 2 files changed, 9 insertions(+), 17 deletions(-) diff -

[dpdk-dev] [PATCH v8 24/24] examples/vm_power_*: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/vm_power_manager/main.c | 14 +- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c index 273bfec29

[dpdk-dev] [PATCH v8 23/24] examples/server_nod*: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/server_node_efd/server/init.c | 15 +-- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/examples/server_node_efd/server/init.c b/examples/server_node_efd/server/i

[dpdk-dev] [PATCH v8 21/24] example/performance*: new link status print format

2020-07-11 Thread Ivan Dyukov
Add usage of rte_eth_link_to_str function to example applications Signed-off-by: Ivan Dyukov --- examples/performance-thread/l3fwd-thread/main.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/examples/performance-thread/l3fwd-thread/main.c b/examples/performanc

Re: [dpdk-dev] [PATCH v8 02/24] ethdev: add a link status text representation

2020-07-11 Thread Thomas Monjalon
11/07/2020 12:43, Ivan Dyukov: > +__rte_experimental > +int rte_eth_link_printf(const char *const fmt, > + const struct rte_eth_link *eth_link); > Maybe I missed your reply, I still don't understand the need for this function.

Re: [dpdk-dev] [PATCH v3 0/7] Add interrupt-only mode to l3fwd-power

2020-07-11 Thread Thomas Monjalon
19/06/2020 12:53, Anatoly Burakov: > Since 20.05, l3fwd-power has become much more stringent about > whether it allows initialization without initializing the > librte_power library with it. This means that while previously > the app could have been used to test RX interrupts functionality > even i

Re: [dpdk-dev] [PATCH] lpm: do not return defer queue handle to the user

2020-07-11 Thread David Marchand
On Sat, Jul 11, 2020 at 9:42 AM Ruifeng Wang wrote: > > There is no need to return defer queue handle in rte_lpm_rcu_qsbr_add API, > since enough flexibility has been provided to configure the defer queue. > > Signed-off-by: Ruifeng Wang > Reviewed-by: Honnappa Nagarahalli > --- > This is a foll

Re: [dpdk-dev] [PATCH v2 03/29] net/dpaa2: enable timestamp for Rx offload case as well

2020-07-11 Thread Thomas Monjalon
07/07/2020 11:22, Hemant Agrawal: > From: Gagandeep Singh > > This patch enables the packet timestamping > conditionally when Rx offload is enabled for timestamp. > > Signed-off-by: Gagandeep Singh > --- > drivers/net/dpaa2/dpaa2_ethdev.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion

Re: [dpdk-dev] [PATCH] eal/linux: truncate thread name

2020-07-11 Thread David Marchand
On Fri, Jul 10, 2020 at 2:41 PM Thomas Monjalon wrote: > 10/07/2020 11:45, David Marchand: > > pthread_setname_np refuses names larger than 16 bytes (\0 included). > > Rather than return an error, truncate the name to this limit in the > > rte_thread_setname helper. > Acked-by: Thomas Monjalon A

[dpdk-dev] [PATCH v3] net/ice: fix invalid RSS type

2020-07-11 Thread Simei Su
When a RSS rule with only SRC/DST_ONLY or IPV6 prefix RSS type, it should return failure. Besides, when a RSS rule with symmetric hash function, the RSS type shouldn't carry with SRC/DST_ONLY or IPV6 prefix. This patch adds invalid RSS type check for the two cases. Fixes: dfdc589f6ee0 ("net/ice: r

Re: [dpdk-dev] [PATCH v3 0/4] introduce global debug flag

2020-07-11 Thread Thomas Monjalon
09/07/2020 15:48, Lukasz Wojciechowski: > This set of patches introduces a global rte_debug flag for dpdk. > This will allow easy switch to debug build configuration using a single > flag. In the debug mode a RTE_DEBUG macro is defined to 1 > and for every enabled to be built library a RTE_DEBUG_{l

Re: [dpdk-dev] [PATCH v8 02/24] ethdev: add a link status text representation

2020-07-11 Thread Ivan Dyukov
11.07.2020 14:27, Thomas Monjalon пишет: > 11/07/2020 12:43, Ivan Dyukov: >> +__rte_experimental >> +int rte_eth_link_printf(const char *const fmt, >> + const struct rte_eth_link *eth_link); >> > Maybe I missed your reply, > I still don't understand the need for this function.

Re: [dpdk-dev] [PATCH v2] app/procinfo: enhance port mempool and crypto info

2020-07-11 Thread Stephen Hemminger
On Sat, 11 Jul 2020 15:23:43 +0530 Hemant Agrawal wrote: > This patch enhances the port info for more details about > the port and queues. > This patch also add support to get info about the mempool > ops and security context for crypto devices. > > Signed-off-by: Hemant Agrawal What ever happ