[dpdk-dev] [PATCH v4] vhost: check header for legacy dequeue offload

2021-06-15 Thread Xiao Wang
When parsing the virtio net header and packet header for dequeue offload, we need to perform sanity check on the packet header to ensure: - No out-of-boundary memory access. - The packet header and virtio_net header are valid and aligned. Fixes: d0cf91303d73 ("vhost: add Tx offload capabilitie

Re: [dpdk-dev] 19.11.9 patches review and test - V2

2021-06-15 Thread Christian Ehrhardt
On Tue, Jun 15, 2021 at 5:17 AM Pei Zhang wrote: > > Hi Christian, > > The testing with dpdk 19.11.9-rc2 from Red Hat looks good. We tested below 16 > scenarios and all got PASS on RHEL8: Thank you so much! I'm rather confident now that -rc3 will then also be a smooth ride. > (1)Guest with dev

Re: [dpdk-dev] [PATCH v5 05/24] net/ngbe: add log type and error type

2021-06-15 Thread Jiawen Wu
On Tuesday, June 15, 2021 1:55 AM, Andrew Rybchenko wrote: > On 6/2/21 12:40 PM, Jiawen Wu wrote: > > Add log type and error type to trace functions. > > > > Signed-off-by: Jiawen Wu > > --- > > doc/guides/nics/ngbe.rst| 20 + > > drivers/net/ngbe/base/ngbe_status.h | 125 > +++

Re: [dpdk-dev] Memory leak in rte_pci_scan

2021-06-15 Thread David Marchand
Hi Owen, On Mon, Jun 14, 2021 at 10:42 PM Owen Hilyard wrote: > > From what I've seen so far, that fixes the PCI leak. That just leaves a few > other places. I'll try to get the complete list to you tomorrow, since > running the full set of unit tests takes quite a few hours when ASAN is > inv

Re: [dpdk-dev] [RFC v3 0/6] Add mdev (Mediated device) support in DPDK

2021-06-15 Thread Thomas Monjalon
15/06/2021 04:49, Xia, Chenbo: > From: Thomas Monjalon > > 01/06/2021 05:06, Chenbo Xia: > > > Hi everyone, > > > > > > This is a draft implementation of the mdev (Mediated device [1]) > > > support in DPDK PCI bus driver. Mdev is a way to virtualize devices > > > in Linux kernel. Based on the dev

Re: [dpdk-dev] [PATCH v5 15/24] net/ngbe: add Rx queue setup and release

2021-06-15 Thread Jiawen Wu
On Tuesday, June 15, 2021 2:53 AM, Andrew Rybchenko wrote: > On 6/2/21 12:40 PM, Jiawen Wu wrote: > > Setup device Rx queue and release Rx queue. > > > > Signed-off-by: Jiawen Wu > > --- > > drivers/net/ngbe/ngbe_ethdev.c | 9 + > > drivers/net/ngbe/ngbe_ethdev.h | 8 + > > drivers/net/ngb

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Morten Brørup
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Tuesday, 15 June 2021 08.48 > > 14/06/2021 17:48, Morten Brørup: > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas > Monjalon > > It would be much simpler to just increase RTE_MAX_ETHPORTS to > something

Re: [dpdk-dev] [PATCH v4] vhost: check header for legacy dequeue offload

2021-06-15 Thread David Marchand
On Tue, Jun 15, 2021 at 9:06 AM Xiao Wang wrote: > diff --git a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c > index 8da8a86a10..351ff0a841 100644 > --- a/lib/vhost/virtio_net.c > +++ b/lib/vhost/virtio_net.c > @@ -2259,44 +2259,64 @@ virtio_net_with_host_offload(struct virtio_net *dev) >

Re: [dpdk-dev] [PATCH] app/testpmd: send failure logs to stderr

2021-06-15 Thread Ferruh Yigit
On 6/14/2021 5:56 PM, Andrew Rybchenko wrote: > On 6/11/21 1:35 PM, Ferruh Yigit wrote: >> On 6/11/2021 10:19 AM, Andrew Rybchenko wrote: >>> On 6/11/21 5:06 AM, Li, Xiaoyun wrote: Hi -Original Message- From: Andrew Rybchenko Sent: Friday, May 28, 2021 00:25 To: Li

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Jerin Jacob
On Tue, Jun 15, 2021 at 12:22 PM Thomas Monjalon wrote: > > 14/06/2021 17:48, Jerin Jacob: > > On Mon, Jun 14, 2021 at 8:29 PM Ananyev, Konstantin > > wrote: > > > > 14/06/2021 15:15, Bruce Richardson: > > > > > On Mon, Jun 14, 2021 at 02:22:42PM +0200, Morten Brørup wrote: > > > > > > > From: de

Re: [dpdk-dev] [PATCH v5 15/24] net/ngbe: add Rx queue setup and release

2021-06-15 Thread Andrew Rybchenko
On 6/15/21 10:50 AM, Jiawen Wu wrote: > On Tuesday, June 15, 2021 2:53 AM, Andrew Rybchenko wrote: >> On 6/2/21 12:40 PM, Jiawen Wu wrote: >>> Setup device Rx queue and release Rx queue. >>> >>> Signed-off-by: Jiawen Wu >>> --- >>> drivers/net/ngbe/ngbe_ethdev.c | 9 + >>> drivers/net/ngbe/ng

Re: [dpdk-dev] [PATCH] app/testpmd: send failure logs to stderr

2021-06-15 Thread Andrew Rybchenko
On 6/15/21 10:59 AM, Ferruh Yigit wrote: > On 6/14/2021 5:56 PM, Andrew Rybchenko wrote: >> On 6/11/21 1:35 PM, Ferruh Yigit wrote: >>> On 6/11/2021 10:19 AM, Andrew Rybchenko wrote: On 6/11/21 5:06 AM, Li, Xiaoyun wrote: > Hi > -Original Message- > From: Andrew Rybchenko

[dpdk-dev] [RFC v2] porting AddressSanitizer feature to DPDK

2021-06-15 Thread zhihongx . peng
From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happens, large improve debug efficiency. By referring to it

[dpdk-dev] [PATCH v1] net/i40e: clear FDIR SW input set when destroy rules

2021-06-15 Thread Lingyu Liu
When a FDIR rule is destroyed, the corresponding input set needs to be cleared. Signed-off-by: Lingyu Liu --- drivers/net/i40e/i40e_fdir.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/net/i40e/i40e_fdir.c b/drivers/net/i40e/i40e_fdir.c index ac0e09bfdd..e679324c20 100644 --- a

[dpdk-dev] [PATCH v3] ethdev: add IPv4 and L4 checksum RSS offload types

2021-06-15 Thread Alvin Zhang
This patch defines new RSS offload types for IPv4 and L4 checksum, which are required when users want to distribute packets based on the IPv4 or L4 checksum field. For example "flow create 0 ingress pattern eth / ipv4 / end actions rss types ipv4-chksum end queues end / end", this flow causes all

Re: [dpdk-dev] [PATCH v3] ethdev: add IPv4 and L4 checksum RSS offload types

2021-06-15 Thread Jerin Jacob
On Tue, Jun 15, 2021 at 1:50 PM Alvin Zhang wrote: > > This patch defines new RSS offload types for IPv4 and L4 checksum, > which are required when users want to distribute packets based on the > IPv4 or L4 checksum field. What is the usecase for distribution based on L4/IPv4 checksum? Is it some

[dpdk-dev] [PATCH 0/6] vhost: Fix and improve NUMA reallocation

2021-06-15 Thread Maxime Coquelin
This patch series first fixes missing reallocations of some Virtqueue and device metadata. Then, it improves the the numa_realloc function by using rte_realloc_socket API that takes cares of the memcpy & freeing. The VQs NUMA IDs are also saved in the VQ metadata and used for every allocations so

[dpdk-dev] [PATCH 1/6] vhost: fix missing memory table NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the Vhost memory table was missing, which likely causes iat least one cross-NUMA accesses for ev

[dpdk-dev] [PATCH 2/6] vhost: fix missing guest pages table NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the guest pages table was missing, which likely causes at least one cross-NUMA accesses for ever

[dpdk-dev] [PATCH 3/6] vhost: fix missing cache logging NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the log cache on the new NUMA node was not done. This patch fixes this by reallocating it if it

[dpdk-dev] [PATCH 4/6] vhost: improve NUMA reallocation

2021-06-15 Thread Maxime Coquelin
This patch improves the numa_realloc() function by making use of rte_realloc_socket(), which takes care of the memory copy and freeing of the old data. Suggested-by: David Marchand Signed-off-by: Maxime Coquelin --- lib/vhost/vhost_user.c | 177 + 1 file

[dpdk-dev] [PATCH 5/6] vhost: allocate all data on same node as virtqueue

2021-06-15 Thread Maxime Coquelin
This patch saves the NUMA node the virtqueue is allocated on at init time, in order to allocate all other data on the same node. While most of the data are allocated before numa_realloc() is called and so the data will be reallocated properly, some data like the log cache are most likely allocated

[dpdk-dev] [PATCH 6/6] vhost: convert inflight data to DPDK allocation API

2021-06-15 Thread Maxime Coquelin
Inflight metadata are allocated using glibc's calloc. This patch converts them to rte_zmalloc_socket to take care of the NUMA affinity. Signed-off-by: Maxime Coquelin --- lib/vhost/vhost.c | 4 ++-- lib/vhost/vhost_user.c | 42 +++--- 2 files changed, 33

Re: [dpdk-dev] [PATCH v1] net/i40e: clear FDIR SW input set when destroy rules

2021-06-15 Thread Xing, Beilei
> -Original Message- > From: Liu, Lingyu > Sent: Tuesday, June 15, 2021 10:53 PM > To: dev@dpdk.org; Zhang, Qi Z ; Xing, Beilei > > Cc: Liu, Lingyu > Subject: [PATCH v1] net/i40e: clear FDIR SW input set when destroy rules > > When a FDIR rule is destroyed, the corresponding input se

Re: [dpdk-dev] [RFC v2] porting AddressSanitizer feature to DPDK

2021-06-15 Thread Jerin Jacob
On Tue, Jun 15, 2021 at 1:46 PM wrote: > > From: Zhihong Peng > > AddressSanitizer (ASan) is a google memory error detect > standard tool. It could help to detect use-after-free and > {heap,stack,global}-buffer overflow bugs in C/C++ programs, > print detailed error information when error happens

[dpdk-dev] [PATCH v2 0/6] vhost: Fix and improve NUMA reallocation

2021-06-15 Thread Maxime Coquelin
This patch series first fixes missing reallocations of some Virtqueue and device metadata. Then, it improves the the numa_realloc function by using rte_realloc_socket API that takes cares of the memcpy & freeing. The VQs NUMA IDs are also saved in the VQ metadata and used for every allocations so

[dpdk-dev] [PATCH v2 1/6] vhost: fix missing memory table NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the Vhost memory table was missing, which likely causes iat least one cross-NUMA accesses for ev

[dpdk-dev] [PATCH v2 2/6] vhost: fix missing guest pages table NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the guest pages table was missing, which likely causes at least one cross-NUMA accesses for ever

[dpdk-dev] [PATCH v2 3/6] vhost: fix missing cache logging NUMA realloc

2021-06-15 Thread Maxime Coquelin
When the guest allocates virtqueues on a different NUMA node than the one the Vhost metadata are allocated, both the Vhost device struct and the virtqueues struct are reallocated. However, reallocating the log cache on the new NUMA node was not done. This patch fixes this by reallocating it if it

[dpdk-dev] [PATCH v2 4/6] vhost: improve NUMA reallocation

2021-06-15 Thread Maxime Coquelin
This patch improves the numa_realloc() function by making use of rte_realloc_socket(), which takes care of the memory copy and freeing of the old data. Suggested-by: David Marchand Signed-off-by: Maxime Coquelin --- lib/vhost/vhost_user.c | 177 + 1 file

[dpdk-dev] [PATCH v2 5/6] vhost: allocate all data on same node as virtqueue

2021-06-15 Thread Maxime Coquelin
This patch saves the NUMA node the virtqueue is allocated on at init time, in order to allocate all other data on the same node. While most of the data are allocated before numa_realloc() is called and so the data will be reallocated properly, some data like the log cache are most likely allocated

[dpdk-dev] [PATCH v2 6/6] vhost: convert inflight data to DPDK allocation API

2021-06-15 Thread Maxime Coquelin
Inflight metadata are allocated using glibc's calloc. This patch converts them to rte_zmalloc_socket to take care of the NUMA affinity. Signed-off-by: Maxime Coquelin --- lib/vhost/vhost.c | 4 +-- lib/vhost/vhost_user.c | 67 +++--- 2 files changed, 58

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Bruce Richardson
On Tue, Jun 15, 2021 at 09:53:33AM +0200, Morten Brørup wrote: > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas Monjalon > > Sent: Tuesday, 15 June 2021 08.48 > > > > 14/06/2021 17:48, Morten Brørup: > > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas > > Monjalon >

Re: [dpdk-dev] [PATCH] app/testpmd: send failure logs to stderr

2021-06-15 Thread Ferruh Yigit
On 6/15/2021 9:14 AM, Andrew Rybchenko wrote: > On 6/15/21 10:59 AM, Ferruh Yigit wrote: >> On 6/14/2021 5:56 PM, Andrew Rybchenko wrote: >>> On 6/11/21 1:35 PM, Ferruh Yigit wrote: On 6/11/2021 10:19 AM, Andrew Rybchenko wrote: > On 6/11/21 5:06 AM, Li, Xiaoyun wrote: >> Hi >> ---

Re: [dpdk-dev] [PATCH] app/testpmd: send failure logs to stderr

2021-06-15 Thread Andrew Rybchenko
On 6/15/21 11:52 AM, Ferruh Yigit wrote: > On 6/15/2021 9:14 AM, Andrew Rybchenko wrote: >> On 6/15/21 10:59 AM, Ferruh Yigit wrote: >>> On 6/14/2021 5:56 PM, Andrew Rybchenko wrote: On 6/11/21 1:35 PM, Ferruh Yigit wrote: > On 6/11/2021 10:19 AM, Andrew Rybchenko wrote: >> On 6/11/21

[dpdk-dev] [RFC PATCH v2 0/3] Add PIE support for HQoS library

2021-06-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] [RFC PATCH v2 1/3] sched: add PIE based congestion management

2021-06-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 | 78 + lib/sched/rte_pie.h

[dpdk-dev] [RFC PATCH v2 2/3] example/qos_sched: add PIE support

2021-06-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 | 82 ++--- examples/qos_sched/init.c | 7 +- examples/qos_sched

[dpdk-dev] [RFC PATCH v2 3/3] example/ip_pipeline: add PIE support

2021-06-15 Thread Liguzinski, WojciechX
Adding the PIE support for IP Pipeline Signed-off-by: Liguzinski, WojciechX --- examples/ip_pipeline/tmgr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/ip_pipeline/tmgr.c b/examples/ip_pipeline/tmgr.c index e4e364cbc0..73da2da870 100644 --- a/examples/ip_pi

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Thomas Monjalon
15/06/2021 10:00, Jerin Jacob: > On Tue, Jun 15, 2021 at 12:22 PM Thomas Monjalon wrote: > > 14/06/2021 17:48, Jerin Jacob: > > > On Mon, Jun 14, 2021 at 8:29 PM Ananyev, Konstantin > > > wrote: > > > > > 14/06/2021 15:15, Bruce Richardson: > > > > > > While I dislike the hard-coded limits in DPD

Re: [dpdk-dev] [PATCH v2 6/6] vhost: convert inflight data to DPDK allocation API

2021-06-15 Thread David Marchand
On Tue, Jun 15, 2021 at 10:43 AM Maxime Coquelin wrote: > @@ -559,6 +559,31 @@ numa_realloc(struct virtio_net *dev, int index) > vq->log_cache = lc; > } > > + if (vq->resubmit_inflight) { > + struct rte_vhost_resubmit_info *ri; > + > + ri =

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Thomas Monjalon
15/06/2021 10:44, Bruce Richardson: > On Tue, Jun 15, 2021 at 09:53:33AM +0200, Morten Brørup wrote: > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas Monjalon > > > Sent: Tuesday, 15 June 2021 08.48 > > > > > > 14/06/2021 17:48, Morten Brørup: > > > > > From: dev [mailto:dev-boun.

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Ananyev, Konstantin
> 14/06/2021 17:48, Jerin Jacob: > > On Mon, Jun 14, 2021 at 8:29 PM Ananyev, Konstantin > > wrote: > > > > 14/06/2021 15:15, Bruce Richardson: > > > > > On Mon, Jun 14, 2021 at 02:22:42PM +0200, Morten Brørup wrote: > > > > > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas > >

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Thomas Monjalon
15/06/2021 11:33, Ananyev, Konstantin: > > 14/06/2021 17:48, Jerin Jacob: > > > On Mon, Jun 14, 2021 at 8:29 PM Ananyev, Konstantin > > > wrote: > > > > I had only a quick look at your approach so far. > > > > But from what I can read, in MT environment your suggestion will require > > > > extra s

Re: [dpdk-dev] [PATCH] app/testpmd: send failure logs to stderr

2021-06-15 Thread Ferruh Yigit
On 6/15/2021 10:00 AM, Andrew Rybchenko wrote: > On 6/15/21 11:52 AM, Ferruh Yigit wrote: >> On 6/15/2021 9:14 AM, Andrew Rybchenko wrote: >>> On 6/15/21 10:59 AM, Ferruh Yigit wrote: On 6/14/2021 5:56 PM, Andrew Rybchenko wrote: > On 6/11/21 1:35 PM, Ferruh Yigit wrote: >> On 6/11/202

[dpdk-dev] [PATCH] net/ice: fix integer overflow when computing max_pkt_len

2021-06-15 Thread Tudor Cornea
Greetings, Please review the following patch for the dpdk-next-net-intel branch. The len variable, used in the computation of max_pkt_len could overflow, if used to store the result of the following computation: ICE_SUPPORT_CHAIN_NUM * rxq->rx_buf_len Since, we could define the mbuf size to hav

Re: [dpdk-dev] [PATCH] parray: introduce internal API for dynamic arrays

2021-06-15 Thread Ananyev, Konstantin
> > 15/06/2021 11:33, Ananyev, Konstantin: > > > 14/06/2021 17:48, Jerin Jacob: > > > > On Mon, Jun 14, 2021 at 8:29 PM Ananyev, Konstantin > > > > wrote: > > > > > I had only a quick look at your approach so far. > > > > > But from what I can read, in MT environment your suggestion will > > >

[dpdk-dev] [PATCH] app/eventdev: add option to enable per port pool

2021-06-15 Thread pbhagavatula
From: Pavan Nikhilesh Add option to configure unique mempool for each ethernet device port. Can be used with `pipeline_atq` and `pipeline_queue` tests. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/evt_common.h | 1 + app/test-eventdev/evt_options.c | 9 app/te

Re: [dpdk-dev] [RFC v3 0/6] Add mdev (Mediated device) support in DPDK

2021-06-15 Thread Xia, Chenbo
Hi Thomas, > -Original Message- > From: Thomas Monjalon > Sent: Tuesday, June 15, 2021 3:48 PM > To: Xia, Chenbo > Cc: dev@dpdk.org; Liang, Cunming ; Wu, Jingjing > ; Burakov, Anatoly ; Yigit, > Ferruh ; m...@ashroe.eu; nhor...@tuxdriver.com; > Richardson, Bruce ; david.march...@redhat.c

[dpdk-dev] [PATCH] bus: clarify log for non-NUMA-aware devices

2021-06-15 Thread Dmitry Kozlyuk
PCI and vmbus drivers printed a warning when NUMA node had beed reported as (-1) or not reported by OS: EAL: Invalid NUMA socket, default to 0 This message and its level might confuse users, because configuration is valid and nothing happens that requires attention or intervention. Reduce

Re: [dpdk-dev] [PATCH 2/2] devtools: auto detect branch to search fix patches

2021-06-15 Thread Xueming(Steven) Li
> -Original Message- > From: Christian Ehrhardt > Sent: Monday, June 14, 2021 10:16 PM > To: Xueming(Steven) Li > Cc: dev ; Luca Boccassi ; NBU-Contact-Thomas > Monjalon ; dpdk stable > ; Yuanhan Liu > Subject: Re: [PATCH 2/2] devtools: auto detect branch to search fix patches > > On

Re: [dpdk-dev] [PATCH] net/mlx5: fix switchdev mode recognition

2021-06-15 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Slava Ovsiienko > Sent: Friday, June 11, 2021 6:37 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix switchdev mode recognition > > The new kernels might add the switch_id attribute to the Netl

Re: [dpdk-dev] [PATCH] net/mlx5: fix receiving queue timestamp format

2021-06-15 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Slava Ovsiienko > Sent: Monday, June 14, 2021 4:53 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > ; christian.ehrha...@canonical.com; Xueming(Steven) > Li ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix receiving queue timestamp format >

[dpdk-dev] [PATCH v2 00/32] add support for baseband phy

2021-06-15 Thread Tomasz Duszynski
This series adds initial support for baseband PHY available on SOCs belonging to Fusion family. BPHY is a hardware block comprising accelerators and DSPs specifically tailored for 5G/LTE inline usecases. This series introduces two rawdev PMDs along with low level common code. CGX/RPM PMD allows o

[dpdk-dev] [PATCH v2 01/32] common/cnxk: add bphy cgx/rpm initialization and cleanup

2021-06-15 Thread Tomasz Duszynski
Add support for low level initialization and cleanup of baseband phy cgx/rpm blocks. Initialization and cleanup are related hence are in the same patch. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/meson.build| 1 + drivers/common/cnxk/roc_api.h

[dpdk-dev] [PATCH v2 02/32] common/cnxk: support for communication with atf

2021-06-15 Thread Tomasz Duszynski
Messages can be exchanged between userspace software and firmware via set of two dedicated registers, namely scratch1 and scratch0. scratch1 acts as a command register i.e message is sent to firmware, while scratch0 holds response to previously sent message. Signed-off-by: Tomasz Duszynski Signe

[dpdk-dev] [PATCH v2 03/32] common/cnxk: support for getting link information

2021-06-15 Thread Tomasz Duszynski
Add support for retrieving link information. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 40 +- drivers/common/cnxk/roc_bphy_cgx.h | 70 + drivers/common/cnxk/roc_bphy_cgx_priv.h | 9 d

[dpdk-dev] [PATCH v2 04/32] common/cnxk: support for changing internal loopback

2021-06-15 Thread Tomasz Duszynski
Add support for enabling or disabling internal loopback. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 30 + drivers/common/cnxk/roc_bphy_cgx.h | 4 drivers/common/cnxk/roc_bphy_cgx_priv.h | 4

[dpdk-dev] [PATCH v2 05/32] common/cnxk: support for changing ptp mode

2021-06-15 Thread Tomasz Duszynski
Add support for enabling or disablig ptp mode. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 33 + drivers/common/cnxk/roc_bphy_cgx.h | 5 drivers/common/cnxk/roc_bphy_cgx_priv.h | 1 + drivers/comm

[dpdk-dev] [PATCH v2 06/32] common/cnxk: support for setting link mode

2021-06-15 Thread Tomasz Duszynski
Add support for setting link mode. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 28 drivers/common/cnxk/roc_bphy_cgx.h | 11 + drivers/common/cnxk/roc_bphy_cgx_priv.h | 61 + drivers/comm

[dpdk-dev] [PATCH v2 07/32] common/cnxk: support for changing link state

2021-06-15 Thread Tomasz Duszynski
Add support for setting link up or down. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 18 ++ drivers/common/cnxk/roc_bphy_cgx.h | 2 ++ drivers/common/cnxk/roc_bphy_cgx_priv.h | 2 ++ drivers/common/cnxk/versio

[dpdk-dev] [PATCH v2 08/32] common/cnxk: support for lmac start/stop

2021-06-15 Thread Tomasz Duszynski
Add support for starting or stopping specific lmac. Start enables rx/tx traffic while stop does the opposite. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/common/cnxk/roc_bphy_cgx.c | 42 ++ drivers/common/cnxk/roc_bphy_cgx.h | 4 +++ dri

[dpdk-dev] [PATCH v2 09/32] raw/cnxk_bphy: add bphy cgx/rpm skeleton driver

2021-06-15 Thread Tomasz Duszynski
Add baseband phy cgx/rpm skeleton driver which merely probes a matching device. CGX/RPM are Ethernet MACs hardwired to baseband subsystem. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- MAINTAINERS| 7 +- doc/guides/rawdevs/cnxk_bphy.rst |

[dpdk-dev] [PATCH v2 10/32] raw/cnxk_bphy: support for reading queue configuration

2021-06-15 Thread Tomasz Duszynski
Add support for reading queue configuration. Single queue represents a logical mac available on rpm/cgx. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 20 1 file changed, 20 insertions(+) diff --git a/drivers/raw/c

[dpdk-dev] [PATCH v2 11/32] raw/cnxk_bphy: support for reading queue count

2021-06-15 Thread Tomasz Duszynski
Add support for reading number of available queues i.e number of available logical macs (LMACs). Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- doc/guides/rawdevs/cnxk_bphy.rst | 4 drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 9 + 2 files changed, 13 insertions(+

[dpdk-dev] [PATCH v2 12/32] raw/cnxk_bphy: support for enqueue operation

2021-06-15 Thread Tomasz Duszynski
Add support for enqueueing messages. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- doc/guides/rawdevs/cnxk_bphy.rst | 68 drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 112 ++ drivers/raw/cnxk_bphy/meson.build | 1 + drivers/raw/

[dpdk-dev] [PATCH v2 13/32] raw/cnxk_bphy: support for dequeue operation

2021-06-15 Thread Tomasz Duszynski
Add support for dequeueing responses to previously enqueued messages. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 27 +++ 1 file changed, 27 insertions(+) diff --git a/drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c b/

[dpdk-dev] [PATCH v2 14/32] raw/cnxk_bphy: support for performing selftest

2021-06-15 Thread Tomasz Duszynski
Add support for performing selftest operation. Signed-off-by: Tomasz Duszynski Signed-off-by: Jakub Palider --- doc/guides/rawdevs/cnxk_bphy.rst | 19 +- drivers/raw/cnxk_bphy/cnxk_bphy_cgx.c | 2 + drivers/raw/cnxk_bphy/cnxk_bphy_cgx.h | 10 + drivers/raw/cnxk_bphy/cnxk

[dpdk-dev] [PATCH v2 15/32] common/cnxk: support for device init and fini

2021-06-15 Thread Tomasz Duszynski
Add support for device init and fini. It merely saves baseband phy state container in a globally accessible resource chest. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/meson.build | 1 + drivers/common/cnxk/roc_api.h | 4 +++ drivers/common/c

[dpdk-dev] [PATCH v2 16/32] common/cnxk: support for baseband PHY irq setup

2021-06-15 Thread Tomasz Duszynski
Add support for initializing baseband phy irqs. While at it also add support for reverting back to the default state. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/meson.build| 1 + drivers/common/cnxk/roc_bphy_irq.c | 96 +

[dpdk-dev] [PATCH v2 17/32] common/cnxk: support for checking irq availability

2021-06-15 Thread Tomasz Duszynski
Add support for checking whether given irq is available. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 9 + drivers/common/cnxk/roc_bphy_irq.h | 2 ++ drivers/common/cnxk/version.map| 1 + 3 files changed, 12 insertions(+) dif

[dpdk-dev] [PATCH v2 18/32] common/cnxk: support for retrieving irq stack

2021-06-15 Thread Tomasz Duszynski
Add support for retrieving irq stack. If stack does not exist then it gets created. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 62 ++ drivers/common/cnxk/roc_bphy_irq.h | 1 + drivers/common/cnxk/version.map

[dpdk-dev] [PATCH v2 19/32] common/cnxk: support for removing irq stack

2021-06-15 Thread Tomasz Duszynski
Add support for removing existing irq stack. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 30 ++ drivers/common/cnxk/roc_bphy_irq.h | 1 + drivers/common/cnxk/version.map| 1 + 3 files changed, 32 inserti

[dpdk-dev] [PATCH v2 20/32] common/cnxk: support for setting bphy irq handler

2021-06-15 Thread Tomasz Duszynski
Add support for setting custom baseband phy irq handler. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 121 +++ drivers/common/cnxk/roc_bphy_irq.h | 5 ++ drivers/common/cnxk/roc_io.h | 9 ++ drivers

[dpdk-dev] [PATCH v2 21/32] common/cnxk: support for clearing bphy irq handler

2021-06-15 Thread Tomasz Duszynski
Add support for clearing previously register baseband phy irq handler. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 66 ++ drivers/common/cnxk/roc_bphy_irq.h | 2 + drivers/common/cnxk/version.map| 1 + 3

[dpdk-dev] [PATCH v2 22/32] common/cnxk: support for registering bphy irq

2021-06-15 Thread Tomasz Duszynski
Add support for registering user supplied baseband phy irq handler. Signed-off-by: Jakib Palider Signed-off-by: Tomasz Duszynski --- drivers/common/cnxk/roc_bphy_irq.c | 38 ++ drivers/common/cnxk/roc_bphy_irq.h | 11 + drivers/common/cnxk/version.map| 1

[dpdk-dev] [PATCH v2 23/32] raw/cnxk_bphy: add baseband PHY skeleton driver

2021-06-15 Thread Tomasz Duszynski
Add baseband phy skeleton driver. Baseband phy is a hardware subsystem accelerating 5G/LTE related tasks. Note this driver isn't involved into any sort baseband protocol processing. Instead it just provides means for configuring hardware. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszyns

[dpdk-dev] [PATCH v2 24/32] raw/cnxk_bphy: support for reading bphy queue configuration

2021-06-15 Thread Tomasz Duszynski
Add support for reading baseband phy queue configuration. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_bphy/cnxk_bphy.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/raw/cnxk_bphy/cnxk_bphy.c b/drivers/raw/cnxk_bphy/cnxk_bph

[dpdk-dev] [PATCH v2 25/32] raw/cnxk_bphy: support for reading bphy queue count

2021-06-15 Thread Tomasz Duszynski
Add support for reading number of available queues from baseband phy. Currently only single queue is supported. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_bphy/cnxk_bphy.c | 9 + drivers/raw/cnxk_bphy/cnxk_bphy_irq.h | 7 +++ 2 files change

[dpdk-dev] [PATCH v2 26/32] raw/cnxk_bphy: support for bphy enqueue operation

2021-06-15 Thread Tomasz Duszynski
Add preliminary support for enqueue operation. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_bphy/cnxk_bphy.c| 26 ++ drivers/raw/cnxk_bphy/rte_pmd_bphy.h | 13 + 2 files changed, 39 insertions(+) diff --git a/drivers/

[dpdk-dev] [PATCH v2 27/32] raw/cnxk_bphy: support for bphy dequeue operation

2021-06-15 Thread Tomasz Duszynski
Add support for dequeueing responses to previously enqueued messages. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_bphy/cnxk_bphy.c | 20 1 file changed, 20 insertions(+) diff --git a/drivers/raw/cnxk_bphy/cnxk_bphy.c b/drivers/raw/cnx

[dpdk-dev] [PATCH v2 28/32] raw/cnxk_bphy: support for interrupt init and cleanup

2021-06-15 Thread Tomasz Duszynski
Add support for interrupt initialization and cleanup. Internally interrupt initialization performs low level setup that allows custom interrupt handler registration later on. Interrupt initialization and cleanup are related hence they are in the same patch. Signed-off-by: Jakub Palider Signed-of

[dpdk-dev] [PATCH v2 29/32] raw/cnxk_bphy: support for reading number of bphy irqs

2021-06-15 Thread Tomasz Duszynski
Add support for retrieving maximum number of interrupts. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_bphy/cnxk_bphy_irq.c | 12 drivers/raw/cnxk_bphy/cnxk_bphy_irq.h | 1 + 2 files changed, 13 insertions(+) diff --git a/drivers/raw/cnxk_bphy/

[dpdk-dev] [PATCH v2 30/32] raw/cnxk_bphy: support for retrieving bphy device memory

2021-06-15 Thread Tomasz Duszynski
Allow user to retrieve baseband phy memory resources. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_bphy.rst | 10 + drivers/raw/cnxk_bphy/cnxk_bphy.c | 3 +++ drivers/raw/cnxk_bphy/cnxk_bphy_irq.c | 8 +++ drivers/raw/cnxk_bphy/

[dpdk-dev] [PATCH v2 31/32] raw/cnxk_bphy: support for registering bphy irq handlers

2021-06-15 Thread Tomasz Duszynski
Custom irq handlers may be registered/removed on demand. Since registration and removal are related they are in the same patch. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_bphy.rst | 13 drivers/raw/cnxk_bphy/cnxk_bphy.c | 11 ++

[dpdk-dev] [PATCH v2 32/32] raw/cnxk_bphy: support for bphy selftest

2021-06-15 Thread Tomasz Duszynski
Add support for performing selftest. Signed-off-by: Jakub Palider Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_bphy.rst | 7 +- drivers/raw/cnxk_bphy/cnxk_bphy.c | 124 ++ 2 files changed, 127 insertions(+), 4 deletions(-) diff --git a/doc/guides/r

Re: [dpdk-dev] [PATCH] bus: clarify log for non-NUMA-aware devices

2021-06-15 Thread Xueming(Steven) Li
> -Original Message- > From: Dmitry Kozlyuk > Sent: Tuesday, June 15, 2021 6:44 PM > To: dev@dpdk.org > Cc: Xueming(Steven) Li ; sta...@dpdk.org; Marcin Wojtas > ; Michal Krawczyk > ; Guy Tzalik ; Evgeny Schemeilin > ; Igor Chauskin > ; Stephen Hemminger ; > NBU-Contact-longli ; Serg

Re: [dpdk-dev] [RFC 00/14] mlx5: support SubFunction

2021-06-15 Thread Xia, Chenbo
Hi Parav, > -Original Message- > From: Parav Pandit > Sent: Tuesday, June 15, 2021 1:43 PM > To: Xia, Chenbo ; NBU-Contact-Thomas Monjalon > ; Yigit, Ferruh > Cc: Xueming(Steven) Li ; Slava Ovsiienko > ; dev@dpdk.org; Jason Gunthorpe > Subject: RE: [dpdk-dev] [RFC 00/14] mlx5: support S

Re: [dpdk-dev] [PATCH v2 6/6] vhost: convert inflight data to DPDK allocation API

2021-06-15 Thread Maxime Coquelin
On 6/15/21 11:25 AM, David Marchand wrote: > On Tue, Jun 15, 2021 at 10:43 AM Maxime Coquelin > wrote: >> @@ -559,6 +559,31 @@ numa_realloc(struct virtio_net *dev, int index) >> vq->log_cache = lc; >> } >> >> + if (vq->resubmit_inflight) { >> + struct

Re: [dpdk-dev] [PATCH v13] app/testpmd: support multi-process

2021-06-15 Thread Min Hu (Connor)
Hi, Andrew, see replies below, and others without no reply will be fixed in v14. 在 2021/6/8 16:42, Andrew Rybchenko 写道: @Thomas, @Ferruh, please, see question below. On 4/22/21 4:18 AM, Min Hu (Connor) wrote: This patch adds multi-process support for testpmd. The test cmd example as fo

[dpdk-dev] mbuf next field belongs in the first cacheline

2021-06-15 Thread Morten Brørup
MBUF and MLX5 maintainers, I'm picking up an old discussion, which you might consider pursuing. Feel free to ignore, if you consider this discussion irrelevant or already closed and done with. The Techboard has previously discussed the organization of the mbuf fields. Ref: http://mails.dpdk.or

Re: [dpdk-dev] [RFC PATCH v2 2/3] example/qos_sched: add PIE support

2021-06-15 Thread Morten Brørup
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Liguzinski, > WojciechX > Sent: Tuesday, 15 June 2021 11.02 [snip] > diff --git a/config/rte_config.h b/config/rte_config.h > index 590903c07d..48132f27df 100644 > --- a/config/rte_config.h > +++ b/config/rte_config.h > @@ -89,7 +89,6 @@ > #

[dpdk-dev] [PATCH v14] app/testpmd: support multi-process

2021-06-15 Thread Min Hu (Connor)
This patch adds multi-process support for testpmd. The test cmd example as follows: the primary cmd: ./dpdk-testpmd -a xxx --proc-type=auto -l 0-1 -- -i \ --rxq=4 --txq=4 --num-procs=2 --proc-id=0 the secondary cmd: ./dpdk-testpmd -a xxx --proc-type=auto -l 2-3 -- -i \ --rxq=4 --txq=4 --num-procs=

Re: [dpdk-dev] [PATCH v2 10/62] net/cnxk: add platform specific probe and remove

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:34 PM Nithin Dabilpuram wrote: > > Add platform specific probe and remove callbacks for CN9K > and CN10K which use common probe and remove functions. > Register ethdev driver for CN9K and CN10K. > > Signed-off-by: Nithin Dabilpuram Reviewed-by: Jerin Jacob > --- > d

Re: [dpdk-dev] [PATCH v2 13/62] net/cnxk: add device configuration operation

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:34 PM Nithin Dabilpuram wrote: > > Add device configuration op for CN9K and CN10K. Most of the > device configuration is common between two platforms except for > some supported offloads. > > Signed-off-by: Nithin Dabilpuram > +static int > +nix_restore_queue_cfg(struct

Re: [dpdk-dev] [PATCH v2 14/62] net/cnxk: add link status update support

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:35 PM Nithin Dabilpuram wrote: > > Add link status update callback to get current > link status. > > Signed-off-by: Nithin Dabilpuram > --- > doc/guides/nics/cnxk.rst | 1 + > doc/guides/nics/features/cnxk.ini | 2 + > doc/guides/nics/features/cnxk_

Re: [dpdk-dev] [PATCH v2 38/62] net/cnxk: add flow ctrl set/get ops

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:37 PM Nithin Dabilpuram wrote: > > From: Sunil Kumar Kori > > Patch implements set and get operations for flow control. > > Signed-off-by: Sunil Kumar Kori > --- > + > + /* Check if TX pause frame is already enabled or not */ > + if (fc->tx_pause ^ tx_pause

Re: [dpdk-dev] [PATCH v2 49/62] net/cnxk: add initial version of rte flow support

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:39 PM Nithin Dabilpuram wrote: > > From: Kiran Kumar K > > Adding initial version of rte_flow support for cnxk family device. > Supported rte_flow ops are flow_validate, flow_create, flow_crstroy, > flow_flush, flow_query, flow_isolate. > > Signed-off-by: Kiran Kumar K

Re: [dpdk-dev] [RFC 00/14] mlx5: support SubFunction

2021-06-15 Thread Parav Pandit
> From: Xia, Chenbo > Sent: Tuesday, June 15, 2021 4:49 PM > > > > > > Just FYI: > > > > > > We are introducing a new mdev bus for DPDK: > > > http://patchwork.dpdk.org/project/dpdk/cover/20210601030644.3318-1- > > > chenbo@intel.com/ > > > > > I am yet to read about it. But I am not sure w

Re: [dpdk-dev] [PATCH v2 51/62] net/cnxk: add ethdev firmware version get

2021-06-15 Thread Jerin Jacob
On Mon, Jun 7, 2021 at 11:39 PM Nithin Dabilpuram wrote: > > From: Satha Rao > > Add callback to get ethdev firmware version. > > Signed-off-by: Satha Rao > +int > +cnxk_nix_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version, > + size_t fw_size) > +{ > + st

  1   2   >