mbox series

[v2,0/8] net/hns3: updates for Rx Tx

Message ID 20200909092339.31488-1-huwei013@chinasoftinc.com (mailing list archive)
Headers
Series net/hns3: updates for Rx Tx |

Message

Wei Hu (Xavier) Sept. 9, 2020, 9:23 a.m. UTC
  This series are updates for Rx/Tx process.

Chengchang Tang (1):
  net/hns3: fix segfault when Tx multiple buffer packets

Wei Hu (Xavier) (7):
  net/hns3: report Rx free threshold
  net/hns3: reduce address calculation in Rx
  net/hns3: add simple Rx process function
  net/hns3: add simple Tx process function
  net/hns3: add vector Tx burst with NEON instructions
  net/hns3: add vector Rx burst with NEON instructions
  net/hns3: add restriction on setting VF MTU

 drivers/net/hns3/hns3_ethdev.c        |   18 +-
 drivers/net/hns3/hns3_ethdev.h        |   54 +-
 drivers/net/hns3/hns3_ethdev_vf.c     |   41 +-
 drivers/net/hns3/hns3_rxtx.c          | 1014 +++++++++++++++++++++++----------
 drivers/net/hns3/hns3_rxtx.h          |  237 +++++++-
 drivers/net/hns3/hns3_rxtx_vec.c      |  214 +++++++
 drivers/net/hns3/hns3_rxtx_vec.h      |   77 +++
 drivers/net/hns3/hns3_rxtx_vec_neon.h |  288 ++++++++++
 drivers/net/hns3/hns3_stats.c         |   16 +-
 drivers/net/hns3/meson.build          |    4 +
 10 files changed, 1645 insertions(+), 318 deletions(-)
 create mode 100644 drivers/net/hns3/hns3_rxtx_vec.c
 create mode 100644 drivers/net/hns3/hns3_rxtx_vec.h
 create mode 100644 drivers/net/hns3/hns3_rxtx_vec_neon.h
  

Comments

Ferruh Yigit Sept. 21, 2020, 12:58 p.m. UTC | #1
On 9/9/2020 10:23 AM, Wei Hu (Xavier) wrote:
> This series are updates for Rx/Tx process.
> 
> Chengchang Tang (1):
>    net/hns3: fix segfault when Tx multiple buffer packets
> 
> Wei Hu (Xavier) (7):
>    net/hns3: report Rx free threshold
>    net/hns3: reduce address calculation in Rx
>    net/hns3: add simple Rx process function
>    net/hns3: add simple Tx process function
>    net/hns3: add vector Tx burst with NEON instructions
>    net/hns3: add vector Rx burst with NEON instructions
>    net/hns3: add restriction on setting VF MTU
> 

Series applied to dpdk-next-net/main, thanks.