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
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
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
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
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
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
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
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
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
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
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: [
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
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
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/
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.
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.
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
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
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
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 ++
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 +
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
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
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
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
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
> -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
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
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
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
> >
> >> 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
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
> > >> 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
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
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..
> -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
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
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
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
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
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
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
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
> -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
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
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
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
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
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
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
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
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
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
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
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_
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
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
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
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
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
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
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 ++
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
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
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
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
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
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
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
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_
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 -
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 ++-
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
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
74 matches
Mail list logo