> -----Original Message-----
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu
> Sent: Friday, March 15, 2019 2:23 PM
> To: dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo...@intel.com>
> Subject: [dpdk-dev] [PATCH v3 0/8] Support vector instructions on ICE
>
> Use SSE and AVX2 instructions in ICE RX and TX path.
>
> ---
> v2:
> - Updated feature doc.
> - Fixed checklog and checkpatch issues.
>
> v3:
> - Fixed potential compile issue on non-X86 platform.
>
> Wenzhuo Lu (8):
> net/ice: fix Tx function setting
> net/ice: add pointer for queue buffer release
> net/ice: support vector SSE in RX
> net/ice: support Rx scatter SSE vector
> net/ice: support Tx SSE vector
> net/ice: support Rx AVX2 vector
> net/ice: support Rx scatter AVX2 vector
> net/ice: support vector AVX2 in TX
>
> config/common_base | 1 +
> doc/guides/nics/features/ice_vec.ini | 35 ++
> doc/guides/rel_notes/release_19_05.rst | 4 +
> drivers/net/ice/Makefile | 22 +
> drivers/net/ice/ice_ethdev.c | 3 +-
> drivers/net/ice/ice_ethdev.h | 2 +
> drivers/net/ice/ice_rxtx.c | 105 ++++-
> drivers/net/ice/ice_rxtx.h | 39 ++
> drivers/net/ice/ice_rxtx_vec_avx2.c | 835
> +++++++++++++++++++++++++++++++++
> drivers/net/ice/ice_rxtx_vec_common.h | 288 ++++++++++++
> drivers/net/ice/ice_rxtx_vec_sse.c | 663
> ++++++++++++++++++++++++++
> drivers/net/ice/meson.build | 21 +
> 12 files changed, 2005 insertions(+), 13 deletions(-) create mode 100644
> doc/guides/nics/features/ice_vec.ini
> create mode 100644 drivers/net/ice/ice_rxtx_vec_avx2.c
> create mode 100644 drivers/net/ice/ice_rxtx_vec_common.h
> create mode 100644 drivers/net/ice/ice_rxtx_vec_sse.c
>
> --
> 1.9.3
Acked-by: Qi Zhang <qi.z.zh...@intel.com>
Applied to dpdk-next-net-intel with minor fix on the patch title (TX->Tx,
RX->Rx)
Thanks
Qi