mbox series

[0/2] add offload path on iavf AVX2

Message ID 1681794666-68144-1-git-send-email-wenzhuo.lu@intel.com (mailing list archive)
Headers
Series add offload path on iavf AVX2 |

Message

Wenzhuo Lu April 18, 2023, 5:11 a.m. UTC
  Add a specific path for RX/TX AVX2.
In this path, support the HW offload features, like,
checksum, VLAN stripping, RSS hash.
These offload features are removed from the original
path to make that path faster in case no HW feature
needed.

*** BLURB HERE ***

Wenzhuo Lu (2):
  net/iavf: add Tx AVX2 offload path
  net/iavf: add Rx AVX2 offload path

 drivers/net/iavf/iavf_rxtx.c          | 145 ++++--
 drivers/net/iavf/iavf_rxtx.h          |  13 +
 drivers/net/iavf/iavf_rxtx_vec_avx2.c | 634 +++++++++++++++-----------
 3 files changed, 478 insertions(+), 314 deletions(-)
  

Comments

Qi Zhang May 26, 2023, 1:18 a.m. UTC | #1
> -----Original Message-----
> From: Wenzhuo Lu <wenzhuo.lu@intel.com>
> Sent: Tuesday, April 18, 2023 1:11 PM
> To: dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>
> Subject: [PATCH 0/2] add offload path on iavf AVX2
> 
> Add a specific path for RX/TX AVX2.
> In this path, support the HW offload features, like, checksum, VLAN stripping,
> RSS hash.
> These offload features are removed from the original path to make that path
> faster in case no HW feature needed.
> 
> *** BLURB HERE ***
> 
> Wenzhuo Lu (2):
>   net/iavf: add Tx AVX2 offload path
>   net/iavf: add Rx AVX2 offload path
> 
>  drivers/net/iavf/iavf_rxtx.c          | 145 ++++--
>  drivers/net/iavf/iavf_rxtx.h          |  13 +
>  drivers/net/iavf/iavf_rxtx_vec_avx2.c | 634 +++++++++++++++-----------
>  3 files changed, 478 insertions(+), 314 deletions(-)
> 
> --
> 2.25.1

Acked-by: Qi Zhang <qi.z.zhang@intel.com>

Applied to dpdk-next-net-intel.

Thanks
Qi