Re: [dpdk-dev] [PATCH v4 01/10] vhost: remove unused internal API

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: vhost_detach_vdpa_device() is internally defined but not used, remove it in this patch. Signed-off-by: Xiao Wang --- lib/librte_vhost/vhost.c | 13 - lib/librte_vhost/vhost.h | 1 - 2 files changed, 14 deletions(-) Reviewed-by: Maxim

Re: [dpdk-dev] [PATCH v4 02/10] vhost: provide helper for host notifier ctrl

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: VDPA driver can decide if it needs to enable/disable the host notifier mapping, so exposing a API can allow flexibility. A later patch will base on this. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 3 +++ lib/librte_vhost/r

Re: [dpdk-dev] [PATCH v4 03/10] vhost: provide helpers for virtio ring relay

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: This patch provides two helpers for vdpa device driver to perform a relay between the guest virtio ring and a mediate virtio ring. s/mediate/mediated/ ? I'm not 100% sure, but if it is mediated, please change everywhere else in the patch. The availab

Re: [dpdk-dev] [PATCH v4 04/10] net/ifc: dump debug message for error

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: Driver probe may fail for different causes, debug message is helpful for debugging issue. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 19 +-- 1 file changed, 13 insertions(+), 6 deletions(-) Reviewed-by: Maxime Coqu

Re: [dpdk-dev] [PATCH v4 05/10] net/ifc: store only registered device instance

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: If driver fails to register ifc VF device into vhost lib, then this device should not be stored. Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") cc: sta...@dpdk.org Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 8 1 f

Re: [dpdk-dev] [PATCH v4 06/10] net/ifc: detect if VDPA mode is specified

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: If user wants the VF to be used in VDPA (vhost data path acceleration) mode, then the user can add a "vdpa=1" parameter for the device. So if driver doesn't not find this option, it should quit and let the s/doesn't not/does not/ bus continue the pro

Re: [dpdk-dev] [PATCH v4 07/10] net/ifc: add devarg for LM mode

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: This patch series enables a new method for live migration, i.e. software assisted live migration. This patch provides a device argument for user to choose the methold. When "swlm=1", driver/device will do live migration with a relay thread dealing with d

Re: [dpdk-dev] [PATCH v4 08/10] net/ifc: use lib API for used ring logging

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: Vhost lib has already provided a helper for used ring logging, driver could use it to reduce code. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 27 --- 1 file changed, 8 insertions(+), 19 deletions(-) Reviewe

Re: [dpdk-dev] [PATCH v4 09/10] net/ifc: support SW assisted VDPA live migration

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: In SW assisted live migration mode, driver will stop the device and setup a mediate virtio ring to relay the communication between the virtio driver and the VDPA device. This data path intervention will allow SW to help on guest dirty page logging for li

Re: [dpdk-dev] [PATCH v4 10/10] doc: update ifc NIC document

2018-12-16 Thread Maxime Coquelin
On 12/14/18 10:16 PM, Xiao Wang wrote: Add the SW assisted VDPA live migration feature into NIC doc. Signed-off-by: Xiao Wang --- doc/guides/nics/ifc.rst| 8 doc/guides/rel_notes/release_19_02.rst | 6 ++ 2 files changed, 14 insertions(+) diff --git a/doc/gu

Re: [dpdk-dev] CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES: no difference in memory pool allocations, when enabling/disabling this configuration

2018-12-16 Thread Asaf Sinai
Hi Anatoly, Thank you very much for the useful explanations! Thanks, Asaf -Original Message- From: Burakov, Anatoly Sent: Monday, December 10, 2018 12:10 PM To: Asaf Sinai ; Ilya Maximets ; Hemant Agrawal ; dev@dpdk.org; Thomas Monjalon Cc: Ilia Ferdman ; Sasha Hodos Subject: Re: [

[dpdk-dev] [PATCH] maintainers: update Cavium maintainers email id

2018-12-16 Thread Jerin Jacob Kollanukkaran
Following Marvell's acquisition of Cavium, we need to update all the Cavium maintainer's entries to point to our new e-mail addresses. Update maintainers as they are no longer working for Cavium. Thanks to Harish Patil for his support and development of our various dpdk drivers. Signed-off-by: Je

[dpdk-dev] [PATCH 3/4] eal:add tailq walk routine

2018-12-16 Thread Keith Wiles
Signed-off-by: Keith Wiles --- lib/librte_eal/common/eal_common_tailqs.c | 19 +++ lib/librte_eal/common/include/rte_tailq.h | 13 + lib/librte_eal/rte_eal_version.map| 1 + 3 files changed, 33 insertions(+) diff --git a/lib/librte_eal/common/eal_common_tailq

[dpdk-dev] [PATCH 4/4] ring:add ring walk routine

2018-12-16 Thread Keith Wiles
Signed-off-by: Keith Wiles --- lib/librte_ring/rte_ring.c | 20 lib/librte_ring/rte_ring.h | 14 ++ lib/librte_ring/rte_ring_version.map | 7 +++ 3 files changed, 41 insertions(+) diff --git a/lib/librte_ring/rte_ring.c b/lib/librte_ring/

[dpdk-dev] [PATCH 2/4] eal: turn off getopt_long error messages

2018-12-16 Thread Keith Wiles
When using dpdk register option api when parsing for log level the opterr flags was still set to one causing an error message from getopt_long(). Set opterr to zero to disable error messages. Signed-off-by: Keith Wiles --- lib/librte_eal/bsdapp/eal/eal.c | 1 + lib/librte_eal/linuxapp/eal/eal.

[dpdk-dev] [PATCH] eal: turn off getopt_long error messages

2018-12-16 Thread Keith Wiles
When using dpdk register option api when parsing for log level the opterr flags was still set to one causing an error message from getopt_long(). Set opterr to zero to disable error messages. Signed-off-by: Keith Wiles --- lib/librte_eal/bsdapp/eal/eal.c | 1 + lib/librte_eal/linuxapp/eal/eal.

Re: [dpdk-dev] [PATCH v3] app/eventdev: detect deadlock for timer event producer

2018-12-16 Thread Jerin Jacob Kollanukkaran
On Mon, 2018-12-03 at 11:48 -0600, Erik Gabriel Carrillo wrote: > If timer events get dropped for some reason, the thread that launched > producer and worker cores will never exit, because the deadlock check > doesn't currently apply to the event timer adapter case. This commit > fixes this. > > F

[dpdk-dev] [PATCH v2 3/3] ring:add ring walk routine

2018-12-16 Thread Keith Wiles
Signed-off-by: Keith Wiles --- V2 Fix checkpatch warnings. lib/librte_ring/rte_ring.c | 20 lib/librte_ring/rte_ring.h | 14 ++ lib/librte_ring/rte_ring_version.map | 7 +++ 3 files changed, 41 insertions(+) diff --git a/lib/librte_ri

[dpdk-dev] [PATCH v2 2/3] eal:add tailq walk routine

2018-12-16 Thread Keith Wiles
Signed-off-by: Keith Wiles --- V2 Fix checkpatch warnings lib/librte_eal/common/eal_common_tailqs.c | 19 +++ lib/librte_eal/common/include/rte_tailq.h | 13 + lib/librte_eal/rte_eal_version.map| 1 + 3 files changed, 33 insertions(+) diff --git a/lib/lib

[dpdk-dev] [PATCH v3 2/3] eal:add tailq walk routine

2018-12-16 Thread Keith Wiles
Add tailq walk routine for debugging and used in DFS. Signed-off-by: Keith Wiles --- V3 Fix checkpatch warnings adding a commit message. Must be using a different checkpatch then on my Ubuntu 18.04 system V2 Fix checkpatch warnings lib/librte_eal/common/eal_common_tailqs.c | 19 ++

[dpdk-dev] [PATCH v3 3/3] ring:add ring walk routine

2018-12-16 Thread Keith Wiles
Add a ring walk routine for debugging and DFS. Signed-off-by: Keith Wiles --- V3 Fix checkpatch warnings adding a commit message. Must be using a different checkpatch then on my Ubuntu 18.04 system V2 Fix checkpatch warnings. lib/librte_ring/rte_ring.c | 20 +

Re: [dpdk-dev] [PATCH] eventdev: fix xstats documentation typo

2018-12-16 Thread Jerin Jacob Kollanukkaran
On Mon, 2018-12-03 at 14:05 -0600, Gage Eads wrote: > The eventdev extended stats documentation referred to two non- > existent > functions, rte_eventdev_xstats_get and > rte_eventdev_get_xstats_by_name. > > Fixes: 3ed7fc039a ("eventdev: add extended stats") > Cc: sta...@dpdk.org > > Signed-off-b

Re: [dpdk-dev] [PATCH v3 1/3] dfs:add FUSE based filesystem for DPDK

2018-12-16 Thread Luca Boccassi
On Sun, 2018-12-16 at 11:46 -0600, Keith Wiles wrote: > --- /dev/null > +++ b/lib/librte_dfs/meson.build > @@ -0,0 +1,47 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2018 Intel Corporation > + > +version = 1 You can leave the version out if it's 1, it's the default > --- /dev/n

[dpdk-dev] [PATCH] eal:missing newline on RTE_LOG msg

2018-12-16 Thread Keith Wiles
Add a missing newline to a RTE_LOG message. Signed-off-by: Keith Wiles --- lib/librte_eal/common/rte_option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/common/rte_option.c b/lib/librte_eal/common/rte_option.c index 02d59a869..7605190c3 100644 --- a/lib/l

Re: [dpdk-dev] [EXT] [PATCH v2] eventdev: fix eth Tx adapter queue count checks

2018-12-16 Thread Jerin Jacob Kollanukkaran
On Thu, 2018-12-13 at 13:53 +0530, Nikhil Rao wrote: > > rte_event_eth_tx_adapter_queue_add() - add a check > that returns an error if the ethdev the zero Tx queues > configured. > > rte_event_eth_tx_adapter_queue_del() - remove the > checks for ethdev queue count, instead check for > queues adde

Re: [dpdk-dev] [PATCH v4 16/32] net/ice: support device initialization

2018-12-16 Thread Lu, Wenzhuo
Hi David, From: David Marchand [mailto:david.march...@redhat.com] Sent: Friday, December 14, 2018 8:05 PM To: Lu, Wenzhuo Cc: dev@dpdk.org; Yang, Qiming ; Li, Xiaoyun ; Wu, Jingjing Subject: Re: [dpdk-dev] [PATCH v4 16/32] net/ice: support device initialization On Fri, Dec 14, 2018 at 9:34 AM

Re: [dpdk-dev] [PATCH v4 1/2] net/i40e: support VF request more queues

2018-12-16 Thread Yan, Zhirun
> -Original Message- > From: Zhang, Qi Z > Sent: Friday, December 14, 2018 8:00 PM > To: Yan, Zhirun ; dev@dpdk.org > Cc: Wang, Haiyue > Subject: RE: [PATCH v4 1/2] net/i40e: support VF request more queues > > > > > -Original Message- > > From: Yan, Zhirun > > Sent: Friday, D

[dpdk-dev] [PATCH v5 0/2] Support request more queues

2018-12-16 Thread Zhirun Yan
V5 - modify the loop conditions (ret == I40EVF_MSG_ERR || ret == I40EVF_MSG_CMD) if there is no free queue available, just end the loop. DPDK VF send VIRTCHNL_OP_REQUEST_QUEUES to kernel PF or DPDK VF for requesting more queues, then PF will allocate more queues. Zhirun Yan (2): net/i40e: supp

[dpdk-dev] [PATCH v5 2/2] net/i40e: support PF respond VF request more queues

2018-12-16 Thread Zhirun Yan
This patch respond the VIRTCHNL_OP_REQUEST_QUEUES msg from VF, and process to allocated more queues for the requested VF. If successful, PF will notify VF to reset. If unsuccessful, PF will send message to inform VF. Signed-off-by: Zhirun Yan Signed-off-by: Haiyue Wang --- drivers/net/i40e/i40e

[dpdk-dev] [PATCH v5 1/2] net/i40e: support VF request more queues

2018-12-16 Thread Zhirun Yan
Before this patch, VF gets a default number of queues from the PF. This patch enables VF to request a different number. When VF configures more queues, it will send VIRTCHNL_OP_REQUEST_QUEUES to PF to request more queues, if success, PF will reset the VF. User can run "port stop all", "port config

Re: [dpdk-dev] [RFC v2] /net: memory interface (memif)

2018-12-16 Thread Honnappa Nagarahalli
> > > >> On Dec 10, 2018, at 4:06 AM, Jakub Grajciar wrote: > > > > I do not like being the coding style police, but that is most of the > > comments > here and I will try to test this one later this week. Plus I am sure I missed > some > style problems, if you have not read the coding style for

[dpdk-dev] [PATCH v3] eventdev: fix eth Tx adapter queue count checks

2018-12-16 Thread Nikhil Rao
rte_event_eth_tx_adapter_queue_add() - add a check that returns an error if the ethdev has zero Tx queues configured. rte_event_eth_tx_adapter_queue_del() - remove the checks for ethdev queue count, instead check for queues added to the adapter which maybe different from the current ethdev queue c

Re: [dpdk-dev] [RFC v2] /net: memory interface (memif)

2018-12-16 Thread Honnappa Nagarahalli
> > >> On Dec 10, 2018, at 4:06 AM, Jakub Grajciar wrote: > > > > > > I do not like being the coding style police, but that is most of the > > > comments > > here and I will try to test this one later this week. Plus I am sure I > > missed some style problems, if you have not read the coding style

Re: [dpdk-dev] [PATCH v4 16/32] net/ice: support device initialization

2018-12-16 Thread Lu, Wenzhuo
Hi Ferruh, > -Original Message- > From: Yigit, Ferruh > Sent: Friday, December 14, 2018 5:46 PM > To: Lu, Wenzhuo ; dev@dpdk.org > Cc: Yang, Qiming ; Li, Xiaoyun > ; Wu, Jingjing > Subject: Re: [dpdk-dev] [PATCH v4 16/32] net/ice: support device > initialization > > On 12/14/2018 8:35 AM

Re: [dpdk-dev] [PATCH v1 0/2] reimplement rwlock and add relevant perf test case

2018-12-16 Thread Honnappa Nagarahalli
Adding other platform maintainers as it affects all platforms. > -Original Message- > From: Gavin Hu (Arm Technology China) > Sent: Thursday, December 13, 2018 7:30 PM > To: Stephen Hemminger ; Joyce Kong (Arm > Technology China) > Cc: dev@dpdk.org; nd ; tho...@monjalon.net; > jerin.ja..

Re: [dpdk-dev] [PATCH v5 0/2] Support request more queues

2018-12-16 Thread Zhang, Qi Z
> -Original Message- > From: Yan, Zhirun > Sent: Monday, December 17, 2018 7:11 PM > To: dev@dpdk.org; Zhang, Qi Z > Cc: Yan, Zhirun > Subject: [PATCH v5 0/2] Support request more queues > > V5 > - modify the loop conditions (ret == I40EVF_MSG_ERR || ret == > I40EVF_MSG_CMD) if there

Re: [dpdk-dev] [RFC] cryptodev/asymm: propose changes to modexp and modinv API

2018-12-16 Thread Verma, Shally
HI Arek Sorry for late response. Please see response inline From: Kusztal, ArkadiuszX Sent: 13 December 2018 01:56 To: Verma, Shally Cc: dev@dpdk.org; Trahe, Fiona ; Doherty, Declan Subject: [RFC] cryptodev/asymm: propose changes to modexp and modinv API External Email Hi Shally, I'm imple

[dpdk-dev] [PATCH] gro: fix overflow of payload length calculation

2018-12-16 Thread Jiayu Hu
When the packet length is smaller than the header length, the calculated payload length will be overflowed and result in incorrect reassembly behaviors. Fixes: 1e4cf4d6d4fb ("gro: cleanup") Fixes: 9e0b9d2ec0f4 ("gro: support VxLAN GRO") Cc: sta...@dpdk.org Signed-off-by: Jiayu Hu --- lib/librte

[dpdk-dev] [PATCH] net/ixgbe: enable x550 flexible byte filter

2018-12-16 Thread Zhao Wei
There is need for users to use flexible byte filter on x550. This patch enable it. Fixes: 82fb702077f6 ("ixgbe: support new flow director modes for X550") Fixes: 11777435c727 ("net/ixgbe: parse flow director filter") Signed-off-by: Wei Zhao --- drivers/net/ixgbe/ixgbe_fdir.c | 9 +- drivers/n

Re: [dpdk-dev] [PATCH] net/ixgbe: enable x550 flexible byte filter

2018-12-16 Thread Zhao1, Wei
Add yuan.p...@intel.com into mail loop > -Original Message- > From: Zhao1, Wei > Sent: Monday, December 17, 2018 1:53 PM > To: dev@dpdk.org > Cc: adrien.mazarg...@6wind.com; sta...@dpdk.org; Lu, Wenzhuo > ; Zhang, Qi Z ; Zhao1, Wei > > Subject: [PATCH] net/ixgbe: enable x550 flexible byte

Re: [dpdk-dev] [PATCH v4 30/32] net/ice: support basic RX/TX

2018-12-16 Thread Lu, Wenzhuo
Hi Ferruh, > -Original Message- > From: Yigit, Ferruh > Sent: Friday, December 14, 2018 9:00 PM > To: Lu, Wenzhuo ; dev@dpdk.org > Cc: Yang, Qiming ; Li, Xiaoyun > ; Wu, Jingjing ; Thomas > Monjalon > Subject: Re: [dpdk-dev] [PATCH v4 30/32] net/ice: support basic RX/TX > > On 12/14/201

[dpdk-dev] raw pattern for rte_flow

2018-12-16 Thread Zhao1, Wei
Hi,adrien By now, we need to enable flexible byte filter for ixgbe, but PMD can not work well. Because in RTE_FLOW_ITEM_TYPE_RAW type pattern, the key parameters (const uint8_t *pattern) in struct rte_flow_item_raw, which we get rte_flow command line is ASIC number not the actual number. For exa

Re: [dpdk-dev] raw pattern for rte_flow

2018-12-16 Thread Zhao1, Wei
More info for this problem: Old type filter can get actual number from CLI because there is a function xdigit2val(unsigned char c) for it. Maybe flow CLI also need one. From: Zhao1, Wei Sent: Monday, December 17, 2018 3:06 PM To: adrien.mazarg...@6wind.com Cc: Peng, Yuan ; dev@dpdk.org; Zhang, Q

Re: [dpdk-dev] [PATCH v2 2/3] eal: add new rte color definition

2018-12-16 Thread Pattan, Reshma
> -Original Message- > From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Saturday, December 15, 2018 2:16 PM > To: Ananyev, Konstantin ; Pattan, Reshma > ; dev@dpdk.org; Dumitrescu, Cristian > ; jerin.ja...@caviumnetworks.com; Singh, > Jasvinder > Subject: Re: [dpdk-d

[dpdk-dev] [PATCH v5 02/31] net/ice/base: add basic structures

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the structures required by the NIC. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_type.h | 869 1 file changed, 869 insertions(+) create mode 100644 drivers/net/ice/base/ice_type.h diff --git a/drivers/n

[dpdk-dev] [PATCH v5 03/31] net/ice/base: add admin queue structures and commands

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the commands, error codes, and structures for the admin queue. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_adminq_cmd.h | 1891 + 1 file changed, 1891 insertions(+) create mode 100644 drivers/net/ice/base/ice_ad

[dpdk-dev] [PATCH v5 04/31] net/ice/base: add sideband queue info

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the commands, error codes, and structures for the sideband queue. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_sbq_cmd.h | 93 ++ 1 file changed, 93 insertions(+) create mode 100644 drivers/net/ice/base/ice_s

[dpdk-dev] [PATCH v5 00/31] A new net PMD - ICE

2018-12-16 Thread Wenzhuo Lu
This patch set adds the support of a new net PMD, Intel® Ethernet Network Adapters E810, also called ice. Below features are enabled by this patch set, Basic features: 1, Basic device operations: probe, initialization, start/stop, configure, info get. 2, RX/TX queue operations: setup/release, st

[dpdk-dev] [PATCH v5 06/31] net/ice/base: add control queue information

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the structures for the control queues. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_controlq.c | 1098 +++ drivers/net/ice/base/ice_controlq.h | 97 2 files changed, 1195 insertions(+) create mode 100644 d

[dpdk-dev] [PATCH v5 05/31] net/ice/base: add device IDs for Intel(r) E800 Series NICs

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add all the device IDs that represent the NIC. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_devids.h | 17 + 1 file changed, 17 insertions(+) create mode 100644 drivers/net/ice/base/ice_devids.h diff --git a/drivers/net/ice/base/ic

[dpdk-dev] [PATCH v5 09/31] net/ice/base: add code to work with the NVM

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add code to read/write/query the NVM image. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_nvm.c | 387 + 1 file changed, 387 insertions(+) create mode 100644 drivers/net/ice/base/ice_nvm.c diff --git a/driver

[dpdk-dev] [PATCH v5 08/31] net/ice/base: add virtual switch code

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add code to handle the virtual switch within the NIC. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_switch.c | 2812 + drivers/net/ice/base/ice_switch.h | 333 + 2 files changed, 3145 insertions(+) create mod

[dpdk-dev] [PATCH v5 12/31] net/ice/base: add protocol structures and defines

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the structures and defines that define what protocols the NIC can handle. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_protocol_type.h | 248 +++ 1 file changed, 248 insertions(+) create mode 100644 drivers/net/ice/b

[dpdk-dev] [PATCH v5 10/31] net/ice/base: add common functions

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add code that multiple other features use. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_common.c | 3521 + drivers/net/ice/base/ice_common.h | 186 ++ 2 files changed, 3707 insertions(+) create mode 100644 drive

[dpdk-dev] [PATCH v5 13/31] net/ice/base: add structures for RX/TX queues

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add the structures that define how the RX/TX queues are used. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_lan_tx_rx.h | 2291 ++ 1 file changed, 2291 insertions(+) create mode 100644 drivers/net/ice/base/ice_lan_tx_

[dpdk-dev] [PATCH v5 11/31] net/ice/base: add various headers

2018-12-16 Thread Wenzhuo Lu
From: Paul M Stillwell Jr Add various headers that define status codes and basic defines for use in the code. Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/base/ice_alloc.h | 22 ++ drivers/net/ice/base/ice_flex_type.h | 19 +++ drivers/net/ice/base/ice

[dpdk-dev] [PATCH v5 14/31] net/ice/base: add OS specific implementation

2018-12-16 Thread Wenzhuo Lu
Add some MACRO defination and small functions which are specific for DPDK. Add readme too. Signed-off-by: Wenzhuo Lu --- drivers/net/ice/base/README | 22 ++ drivers/net/ice/base/ice_osdep.h | 524 +++ 2 files changed, 546 insertions(+) create mode 1006

[dpdk-dev] [PATCH v5 16/31] net/ice: support device and queue ops

2018-12-16 Thread Wenzhuo Lu
Normally when starting/stopping the device the queue should be started and stopped. Support them both in this patch. Below ops are added, dev_configure dev_start dev_stop dev_close dev_reset rx_queue_start rx_queue_stop tx_queue_start tx_queue_stop rx_queue_setup rx_queue_release tx_queue_setup tx

[dpdk-dev] [PATCH v5 18/31] net/ice: support packet type getting

2018-12-16 Thread Wenzhuo Lu
Add ops dev_supported_ptypes_get. Signed-off-by: Wei Zhao Signed-off-by: Wenzhuo Lu --- drivers/net/ice/ice_ethdev.c | 2 + drivers/net/ice/ice_lan_rxtx.c | 601 + drivers/net/ice/ice_rxtx.h | 2 + 3 files changed, 605 insertions(+) diff --git

[dpdk-dev] [PATCH v5 17/31] net/ice: support getting device information

2018-12-16 Thread Wenzhuo Lu
Add ops dev_infos_get. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 1 + drivers/net/ice/ice_ethdev.c | 103 +++ drivers/net/ice/ice_ethdev.h | 13

[dpdk-dev] [PATCH v5 21/31] net/ice: support MAC ops

2018-12-16 Thread Wenzhuo Lu
Add below ops, mac_addr_set mac_addr_add mac_addr_remove Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 2 + drivers/net/ice/ice_ethdev.c | 236 +++ 2 fi

[dpdk-dev] [PATCH v5 23/31] net/ice: support RSS

2018-12-16 Thread Wenzhuo Lu
Add below ops, reta_update reta_query rss_hash_update rss_hash_conf_get Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 3 + drivers/net/ice/ice_ethdev.c | 242 ++

[dpdk-dev] [PATCH v5 25/31] net/ice: support FW version getting

2018-12-16 Thread Wenzhuo Lu
Add ops fw_version_get. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 1 + drivers/net/ice/ice_ethdev.c | 21 + 2 files changed, 22 insertions(+) diff --git a/doc/guide

[dpdk-dev] [PATCH v5 22/31] net/ice: support VLAN ops

2018-12-16 Thread Wenzhuo Lu
Add below ops, ice_vlan_filter_set ice_vlan_offload_set ice_vlan_tpid_set ice_vlan_pvid_set Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 3 + doc/guides/nics/ice.rst | 16 ++ driver

[dpdk-dev] [PATCH v5 15/31] net/ice: support device initialization

2018-12-16 Thread Wenzhuo Lu
Update the documents too. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- MAINTAINERS | 2 + config/common_base | 7 + doc/guides/nics/features/ice.ini| 11 + doc/guides

[dpdk-dev] [PATCH v5 19/31] net/ice: support link update

2018-12-16 Thread Wenzhuo Lu
Add ops link_update. LSC interrupt is also enabled in this patch. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 2 + drivers/net/ice/ice_ethdev.c | 332

[dpdk-dev] [PATCH v5 20/31] net/ice: support MTU setting

2018-12-16 Thread Wenzhuo Lu
Add ops mtu_set. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 2 ++ drivers/net/ice/ice_ethdev.c | 34 ++ 2 files changed, 36 insertions(+) diff --git a/do

[dpdk-dev] [PATCH v5 24/31] net/ice: support RX queue interruption

2018-12-16 Thread Wenzhuo Lu
Add below ops, rx_queue_intr_enable rx_queue_intr_disable Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 1 + drivers/net/ice/ice_ethdev.c | 230 +++ 2 f

[dpdk-dev] [PATCH v5 26/31] net/ice: support EEPROM information getting

2018-12-16 Thread Wenzhuo Lu
Add below ops, get_eeprom_length get_eeprom Signed-off-by: Wei Zhao Signed-off-by: Wenzhuo Lu --- doc/guides/nics/features/ice.ini | 1 + drivers/net/ice/ice_ethdev.c | 45 2 files changed, 46 insertions(+) diff --git a/doc/guides/nics/features/ice

[dpdk-dev] [PATCH v5 29/31] net/ice: support basic RX/TX

2018-12-16 Thread Wenzhuo Lu
Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 5 + drivers/net/ice/ice_ethdev.c | 5 + drivers/net/ice/ice_lan_rxtx.c | 568 ++- drivers/net/ice/ice_

[dpdk-dev] [PATCH v5 27/31] net/ice: support statistics

2018-12-16 Thread Wenzhuo Lu
Add below ops, stats_get stats_reset xstats_get xstats_get_names xstats_reset Signed-off-by: Wenzhuo Lu Signed-off-by: Jia Guo --- doc/guides/nics/features/ice.ini | 2 + drivers/net/ice/ice_ethdev.c | 566 +++ 2 files changed, 568 insertions(+) diff -

[dpdk-dev] [PATCH v5 30/31] net/ice: support advance RX/TX

2018-12-16 Thread Wenzhuo Lu
Add RX functions, scatter and bulk. Add TX function, simple. Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 1 + drivers/net/ice/ice_lan_rxtx.c | 660 ++-

[dpdk-dev] [PATCH v5 28/31] net/ice: support queue information getting

2018-12-16 Thread Wenzhuo Lu
Add below ops, rxq_info_get txq_info_get rx_queue_count Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- drivers/net/ice/ice_ethdev.c | 3 ++ drivers/net/ice/ice_lan_rxtx.c | 66 ++ drivers

[dpdk-dev] [PATCH v5 31/31] net/ice: support descriptor ops

2018-12-16 Thread Wenzhuo Lu
Add below ops, rx_descriptor_status tx_descriptor_status Signed-off-by: Wenzhuo Lu Signed-off-by: Qiming Yang Signed-off-by: Xiaoyun Li Signed-off-by: Jingjing Wu --- doc/guides/nics/features/ice.ini | 2 ++ drivers/net/ice/ice_ethdev.c | 2 ++ drivers/net/ice/ice_lan_rxtx.c | 58