[dpdk-dev] [PATCH v2] ip_frag: fix fragmenting IPv4 fragment

2021-10-09 Thread huichao cai
Current implementation of rte_ipv4_fragment_packet() doesn’t take into account offset and flag values of the given packet, but blindly assumes they are always zero (original packet is not fragmented). According to RFC791, fragment and flag values for new fragment should take into account values pro

[dpdk-dev] [PATCH v16 0/9] eal: Add EAL API for threading

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile EAL thread API **Problem Statement** DPDK currently uses the pthread interface to create and manage threads. Windows does not support the POSIX thread programming model, so it currently relies on a header file that hides the Windows calls under pthread matched interfaces. Gi

[dpdk-dev] [PATCH v16 1/9] eal: add basic threading functions

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Use a portable, type-safe representation for the thread identifier. Add functions for comparing thread ids and obtaining the thread id for the current thread. Signed-off-by: Narcisa Vasile --- lib/eal/common/meson.build| 1 + lib/eal/{unix => common}/rte_threa

[dpdk-dev] [PATCH v16 3/9] eal/windows: translate Windows errors to errno-style errors

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add function to translate Windows error codes to errno-style error codes. The possible return values are chosen so that we have as much semantical compatibility between platforms as possible. Signed-off-by: Narcisa Vasile --- lib/eal/common/rte_thread.c | 6 +-- lib/eal/

[dpdk-dev] [PATCH v16 4/9] eal: implement functions for thread affinity management

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Implement functions for getting/setting thread affinity. Threads can be pinned to specific cores by setting their affinity attribute. Signed-off-by: Narcisa Vasile Signed-off-by: Dmitry Malloy --- lib/eal/common/rte_thread.c | 16 lib/eal/include/rte_thread.h |

[dpdk-dev] [PATCH v16 2/9] eal: add thread attributes

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Implement thread attributes for: * thread affinity * thread priority Implement functions for managing thread attributes. Priority is represented through an enum that allows for two levels: - RTE_THREAD_PRIORITY_NORMAL - RTE_THREAD_PRIORITY_REALTIME_CRITICAL

[dpdk-dev] [PATCH v16 5/9] eal: implement thread priority management functions

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add functions for setting and getting the priority of a thread. Priorities on multiple platforms are similarly determined by a priority value and a priority class/policy. On Linux, the following mapping is created: RTE_THREAD_PRIORITY_NORMAL corresponds to * policy SCHED_OTH

[dpdk-dev] [PATCH v16 7/9] eal: implement functions for mutex management

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add functions for mutex init, destroy, lock, unlock, trylock. Add RTE_STATIC_MUTEX macro to replace static initialization of mutexes. Windows does not have a static initializer. Initialization is only done through InitializeCriticalSection(). The RTE_STATIC_MUTEX calls into

[dpdk-dev] [PATCH v16 8/9] eal: implement functions for thread barrier management

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add functions for barrier init, destroy, wait. A portable type is used to represent a barrier identifier. The rte_thread_barrier_wait() function returns the same value on all platforms. Signed-off-by: Narcisa Vasile --- lib/eal/common/rte_thread.c | 61 ++

[dpdk-dev] [PATCH v16 6/9] eal: add thread lifetime management

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile Add functions for thread creation, joining, detaching. The *rte_thread_create()* function can optionally receive an rte_thread_attr_t object that will cause the thread to be created with the affinity and priority described by the attributes object. If no rte_thread_attr_t is

[dpdk-dev] [PATCH v16 9/9] Add unit tests for thread API

2021-10-09 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile As a new API for threading is introduced, a set of unit tests have been added to test the new interface. The tests verify that: * mutexes and barriers behave as expected * thread properties are applied correctly * the thread id is retrieved correctly * thread creation/des

[dpdk-dev] [PATCH] net/hns3: remove similar macro function definitions

2021-10-09 Thread Min Hu (Connor)
From: Chengchang Tang For different capabilities, we declare different macro functions to determine whether the capabilities are supported. This patch declare a unified macro function to judge capabilities. Signed-off-by: Chengchang Tang Signed-off-by: Min Hu (Connor) --- drivers/net/hns3/hn

[dpdk-dev] [PATCH v4 1/2] event/cnxk: update min interval calculation

2021-10-09 Thread pbhagavatula
From: Pavan Nikhilesh Minimum supported interval should now be retrieved from mailbox based on the clock source and clock frequency. Signed-off-by: Pavan Nikhilesh --- v4: - Rebase on master, fix NULL checks. v3: - Add new mbox interface. v2: - Fixed devargs parsing and rebased. drivers/commo

[dpdk-dev] [PATCH v4 2/2] event/cnxk: add external clock support for timer

2021-10-09 Thread pbhagavatula
From: Pavan Nikhilesh Add external clock support for cnxk timer adapter. External clock mapping is as follows: RTE_EVENT_TIMER_ADAPTER_EXT_CLK0 = TIM_CLK_SRC_10NS, RTE_EVENT_TIMER_ADAPTER_EXT_CLK1 = TIM_CLK_SRC_GPIO, RTE_EVENT_TIMER_ADAPTER_EXT_CLK2 = TIM_CLK_SRC_PTP, RTE_EVENT_TIMER_ADAPTER_EXT

[dpdk-dev] [PATCH] app/testpmd: retain all original dev conf when config DCB

2021-10-09 Thread Min Hu (Connor)
From: Huisong Li When configuring DCB, testpmd retains the rx_mode/tx_mode configuration in rte_port->dev_conf. But some configurations, such as the link_speed, were not saved if it were set before configuring DCB. Fixes: 1a572499beb6 ("app/testpmd: setup DCB forwarding based on traffic class")

Re: [dpdk-dev] [PATCH] net/i40e: fix remove MAC/VLAN addresses error

2021-10-09 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Zhang, RobinX > Sent: Tuesday, September 28, 2021 6:36 PM > To: Kevin Traynor ; dev@dpdk.org > Cc: Xing, Beilei ; Guo, Junfeng > ; Yang, SteveX > Subject: Re: [dpdk-dev] [PATCH] net/i40e: fix remove MAC/VLAN addresses > error > > Hi, > > >

[dpdk-dev] [PATCH v24 0/6] support dmadev

2021-10-09 Thread Chengwen Feng
This patch set contains six patch for new add dmadev. Chengwen Feng (6): dmadev: introduce DMA device library dmadev: add control plane API support dmadev: add data plane API support dmadev: add multi-process support dma/skeleton: introduce skeleton dmadev driver app/test: add dmadev A

[dpdk-dev] [PATCH v24 2/6] dmadev: add control plane API support

2021-10-09 Thread Chengwen Feng
This patch add control plane API for dmadev. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup Reviewed-by: Kevin Laatz Reviewed-by: Conor Walsh --- doc/guides/prog_guide/dmadev.rst | 38 ++ doc/guides/rel_notes/release_21_11.rst | 1 + lib/dmadev/rte_d

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

2021-10-09 Thread Chengwen Feng
The 'dmadev' is a generic type of DMA device. This patch introduce the 'dmadev' device allocation functions. The infrastructure is prepared to welcome drivers in drivers/dma/ Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Jerin Jacob Reviewed-by: Ke

[dpdk-dev] [PATCH v24 4/6] dmadev: add multi-process support

2021-10-09 Thread Chengwen Feng
This patch add multi-process support for dmadev. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup Reviewed-by: Kevin Laatz Reviewed-by: Conor Walsh --- doc/guides/rel_notes/release_21_11.rst | 1 + lib/dmadev/rte_dmadev.c| 176

[dpdk-dev] [PATCH v24 3/6] dmadev: add data plane API support

2021-10-09 Thread Chengwen Feng
This patch add data plane API for dmadev. Signed-off-by: Chengwen Feng Acked-by: Bruce Richardson Acked-by: Morten Brørup Reviewed-by: Kevin Laatz Reviewed-by: Conor Walsh --- doc/guides/prog_guide/dmadev.rst | 22 ++ doc/guides/rel_notes/release_21_11.rst | 2 +- lib/dmadev/meson.b

[dpdk-dev] [PATCH v24 5/6] dma/skeleton: introduce skeleton dmadev driver

2021-10-09 Thread Chengwen Feng
Skeleton dmadevice driver, on the lines of rawdev skeleton, is for showcasing of the dmadev library. Design of skeleton involves a virtual device which is plugged into VDEV bus on initialization. Also, enable compilation of dmadev skeleton drivers. Signed-off-by: Chengwen Feng Reviewed-by: Kevi

[dpdk-dev] [PATCH v24 6/6] app/test: add dmadev API test

2021-10-09 Thread Chengwen Feng
This patch add dmadev API test which based on 'dma_skeleton' vdev. The test cases could be executed using 'dmadev_autotest' command in test framework. Signed-off-by: Chengwen Feng Signed-off-by: Bruce Richardson Reviewed-by: Kevin Laatz Reviewed-by: Conor Walsh --- MAINTAINERS

Re: [dpdk-dev] [PATCH v2] net/iavf: fix multi-process shared data

2021-10-09 Thread Zhang, Qi Z
> -Original Message- > From: Yu, DapengX > Sent: Saturday, October 9, 2021 11:25 AM > To: Wu, Jingjing ; Xing, Beilei > ; > Richardson, Bruce ; Ananyev, Konstantin > > Cc: dev@dpdk.org; Zhang, Qi Z ; Yigit, Ferruh > ; Yu, DapengX ; > sta...@dpdk.org > Subject: [PATCH v2] net/iavf: fix

Re: [dpdk-dev] [PATCH] ethdev: fix one MAC address occupies two index in mac addrs

2021-10-09 Thread Min Hu (Connor)
Hi, Thomas, The dev->data->mac_addrs[0] will be changed to a new MAC address when applications modify the default MAC address by rte_eth_dev_default_mac_addr_set() API. However, If the new default MAC address has been added as a non-default MAC address by rte_eth_dev_mac_addr_add() API, the rt

Re: [dpdk-dev] [PATCH v24 3/6] dmadev: add data plane API support

2021-10-09 Thread fengchengwen
This patch follows the idea of Konstantin, and introduces rte_dma_fp_object to hide implementation detail. This change modify the first parameter of drivers's dataplane interface: from 'struct rte_dma_dev *dev' to 'void *dev_private'. On 2021/10/9 17:33, Chengwen Feng wrote: > This patch add data

Re: [dpdk-dev] [PATCH v5 2/6] ethdev: move jumbo frame offload check to library

2021-10-09 Thread lihuisong (C)
在 2021/10/8 0:56, Ferruh Yigit 写道: Setting MTU bigger than RTE_ETHER_MTU requires the jumbo frame support, and application should enable the jumbo frame offload support for it. When jumbo frame offload is not enabled by application, but MTU bigger than RTE_ETHER_MTU is requested there are two

Re: [dpdk-dev] [PATCH v5 4/6] ethdev: remove jumbo offload flag

2021-10-09 Thread lihuisong (C)
在 2021/10/9 1:11, Ananyev, Konstantin 写道: Removing 'DEV_RX_OFFLOAD_JUMBO_FRAME' offload flag. Instead of drivers announce this capability, application can deduct the capability by checking reported 'dev_info.max_mtu' or 'dev_info.max_rx_pktlen'. And instead of application setting this flag

Re: [dpdk-dev] [PATCH v5 5/6] ethdev: unify MTU checks

2021-10-09 Thread lihuisong (C)
Hi, Ferruh 在 2021/10/8 0:56, Ferruh Yigit 写道: Both 'rte_eth_dev_configure()' & 'rte_eth_dev_set_mtu()' sets MTU but have slightly different checks. Like one checks min MTU against RTE_ETHER_MIN_MTU and other RTE_ETHER_MIN_LEN. Checks moved into common function to unify the checks. Also this has

Re: [dpdk-dev] [PATCH v5 4/7] ethdev: copy fast-path API into separate structure

2021-10-09 Thread fengchengwen
On 2021/10/7 19:27, Konstantin Ananyev wrote: > Copy public function pointers (rx_pkt_burst(), etc.) and related > pointers to internal data from rte_eth_dev structure into a > separate flat array. That array will remain in a public header. > The intention here is to make rte_eth_dev and related st

[dpdk-dev] [PATCH v3] net/e1000: build on Windows

2021-10-09 Thread William Tu
This patch enables building the e1000 driver for Windows. I tested using two Windows VM on top of VMware Fusion, creating two e1000 devices with device ID 0x10D3 (8274L), verifying rx/tx works correctly using dpdk-testpmd.exe rxonly and txonly mode. Signed-off-by: William Tu Acked-by: Haiyue Wang

Re: [dpdk-dev] [PATCH v2] net/e1000: build on Windows

2021-10-09 Thread William Tu
> > +Windows Configuration > > +- > > + > > +- Follow the :doc:`guide for Windows <../windows_gsg/run_apps>` > > + to setup the basic DPDK environment. > > + > > +- Identify the Intel\ |reg| Ethernet adapter. > > + > > +- To load NetUIO driver, follow the steps mentioned in `dp

Re: [dpdk-dev] [PATCH v3] net/e1000: build on Windows

2021-10-09 Thread Dmitry Kozlyuk
2021-10-09 09:31 (UTC-0700), William Tu: > [...] > * @Dmitry: I think it's better keep the doc for > people to reference NetUIO setup. I won't insist, especially since Intel is OK with this. I've sent a patch to put the link in Windows GSG so that we won't need to repeat it for each PMD: http://

[dpdk-dev] [Bug 798] mlx5 hw flow performance problem

2021-10-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=798 Asaf Penso (as...@nvidia.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED Resolution|---

Re: [dpdk-dev] [PATCH v2] net/e1000: build on Windows

2021-10-09 Thread Kadam, Pallavi
On 10/8/2021 5:14 PM, William Tu wrote: On Fri, Oct 8, 2021 at 5:02 PM Kadam, Pallavi wrote: On 10/8/2021 6:53 AM, William Tu wrote: This patch enables building the e1000 driver for Windows. I tested using two Windows VM on top of VMware Fusion, creating two e1000 devices with device ID 0x1

Re: [dpdk-dev] [PATCH] doc/windows_gsg: update section on driver installation

2021-10-09 Thread Kadam, Pallavi
On 10/8/2021 2:11 PM, Dmitry Kozlyuk wrote: Windows GSG included a section only on virt2phys driver installation, but not on NetUIO. The content of the section duplicated documentation in dpdk-kmods, but contained no links to it, only a reference. Add subsections for virt2phys and NetUIO, expl

Re: [dpdk-dev] [PATCH] doc/windows_gsg: update section on driver installation

2021-10-09 Thread Dmitry Kozlyuk
2021-10-09 12:38 (UTC-0700), Kadam, Pallavi: > On 10/8/2021 2:11 PM, Dmitry Kozlyuk wrote: > > [...] > > +virt2phys > > +~ > > > > -1. From Device Manager, Action menu, select "Add legacy hardware". > > -2. It will launch the "Add Hardware Wizard". Click "Next". > > -3. Select second opt

[dpdk-dev] [PATCH v2 00/12] ethdev: rework transfer flow API

2021-10-09 Thread Ivan Malov
As per RFC [1], action PORT_ID appears to be ambiguous. Its name suggests that matching traffic be sent to the ethdev with the specified ID, that is, to the application. However, in Open vSwitch, the action is used to send traffic to a remote entity represented by the given port, that is, in the op

[dpdk-dev] [PATCH v2 01/12] ethdev: add port representor item to flow API

2021-10-09 Thread Ivan Malov
For use in "transfer" flows. Supposed to match traffic entering the embedded switch from the given ethdev. Must not be combined with direction attributes. Signed-off-by: Ivan Malov --- app/test-pmd/cmdline_flow.c | 27 ++ doc/guides/prog_guide/rte_flow.rst | 59

[dpdk-dev] [PATCH v2 02/12] ethdev: add represented port item to flow API

2021-10-09 Thread Ivan Malov
For use in "transfer" flows. Supposed to match traffic entering the embedded switch from the entity represented by the given ethdev. Such an entity can be a network (via a network port), a guest machine (via a VF) or another ethdev in the same application. Must not be combined with direction attri

[dpdk-dev] [PATCH v2 03/12] ethdev: add port representor action to flow API

2021-10-09 Thread Ivan Malov
For use in "transfer" flows. Supposed to send matching traffic to the given ethdev (to the application), at embedded switch level. Signed-off-by: Ivan Malov --- app/test-pmd/cmdline_flow.c | 26 ++ doc/guides/prog_guide/rte_flow.rst | 56 + do

[dpdk-dev] [PATCH v2 04/12] ethdev: add represented port action to flow API

2021-10-09 Thread Ivan Malov
For use in "transfer" flows. Supposed to send matching traffic to the entity represented by the given ethdev, at embedded switch level. Such an entity can be a network (via a network port), a guest machine (via a VF) or another ethdev in the same application. Signed-off-by: Ivan Malov --- app/te

[dpdk-dev] [PATCH v2 06/12] ethdev: deprecate direction attributes in transfer flows

2021-10-09 Thread Ivan Malov
Attributes "ingress" and "egress" can only apply unambiguosly to non-"transfer" flows. In "transfer" flows, the standpoint is effectively shifted to the embedded switch. There can be many different endpoints connected to the switch, so the use of "ingress" / "egress" does not shed light on which en

[dpdk-dev] [PATCH v2 05/12] ethdev: deprecate hard-to-use or ambiguous items and actions

2021-10-09 Thread Ivan Malov
PF, VF and PHY_PORT require that applications have extra knowledge of the underlying NIC and thus are hard to use. Also, the corresponding items depend on the direction attribute (ingress / egress), which complicates their use in applications and interpretation in PMDs. The concept of PORT_ID is a

[dpdk-dev] [PATCH v2 07/12] net/bnxt: support meta flow items to match on traffic source

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Add support for items PORT_REPRESENTOR and REPRESENTED_PORT based on the existing support for item PORT_ID. The use of item PORT_ID depends on the specified direction attribute. Items PORT_REPRESENTOR and REPRESENTED_PORT, in turn, define traffic direction themselves. The

[dpdk-dev] [PATCH v2 09/12] net/enic: support meta flow actions to overrule destinations

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Add support for actions PORT_REPRESENTOR and REPRESENTED_PORT based on the existing support for action PORT_ID. Signed-off-by: Andrew Rybchenko --- drivers/net/enic/enic_fm_flow.c | 93 ++--- 1 file changed, 75 insertions(+), 18 deletions(-)

[dpdk-dev] [PATCH v2 10/12] net/mlx5: support represented port flow action

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Semantics of the existing support for action PORT_ID suggests that support for equal action REPRESENTED_PORT be implemented. Helper functions keep port_id suffix since action MLX5_FLOW_ACTION_PORT_ID is still used internally. Signed-off-by: Andrew Rybchenko --- doc/guid

[dpdk-dev] [PATCH v2 11/12] net/octeontx2: support port representor flow action

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Action PORT_ID implementation assumes ingress only. Its semantics suggests that support for equal action PORT_REPRESENTOR be added. Signed-off-by: Andrew Rybchenko --- doc/guides/nics/octeontx2.rst | 5 - drivers/net/octeontx2/otx2_flow_parse.c | 16 ++

[dpdk-dev] [PATCH v2 12/12] net/sfc: support port representor flow item

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Add support for item PORT_REPRESENTOR which should be used instead of ambiguous item PORT_ID. Signed-off-by: Andrew Rybchenko --- doc/guides/nics/sfc_efx.rst | 2 ++ drivers/net/sfc/sfc_mae.c | 72 + 2 files changed, 74 insertions(+

[dpdk-dev] [PATCH v2 08/12] net/bnxt: support meta flow actions to overrule destinations

2021-10-09 Thread Ivan Malov
From: Andrew Rybchenko Add support for actions PORT_REPRESENTOR and REPRESENTED_PORT based on the existing support for action PORT_ID. Signed-off-by: Andrew Rybchenko --- drivers/net/bnxt/tf_ulp/ulp_rte_handler_tbl.c | 12 ++- drivers/net/bnxt/tf_ulp/ulp_rte_parser.c | 84 ++--

Re: [dpdk-dev] [PATCH] doc/windows_gsg: update section on driver installation

2021-10-09 Thread William Tu
On Sat, Oct 9, 2021 at 1:20 PM Dmitry Kozlyuk wrote: snip > > > +Access to physical addresses is provided by a kernel-mode driver, > > > virt2phys. > > > +It is mandatory for allocating physically-contiguous memory which is > > > required > > > +by hardware PMDs. > > > > Should we add specific