[0/8] net/hns3: updates for Rx Tx
Message ID | 20200907090825.1761-1-huwei013@chinasoftinc.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 58E82A04B9; Mon, 7 Sep 2020 11:09:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 29FDE1C0CC; Mon, 7 Sep 2020 11:09:06 +0200 (CEST) Received: from mail.chinasoftinc.com (unknown [114.113.233.8]) by dpdk.org (Postfix) with ESMTP id D16681BE85 for <dev@dpdk.org>; Mon, 7 Sep 2020 11:09:04 +0200 (CEST) Received: from localhost.localdomain (65.49.108.226) by INCCAS002.ito.icss (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Mon, 7 Sep 2020 17:08:58 +0800 From: "Wei Hu (Xavier)" <huwei013@chinasoftinc.com> To: <dev@dpdk.org> CC: <xavier.huwei@huawei.com> Date: Mon, 7 Sep 2020 17:08:17 +0800 Message-ID: <20200907090825.1761-1-huwei013@chinasoftinc.com> X-Mailer: git-send-email 2.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [65.49.108.226] Subject: [dpdk-dev] [PATCH 0/8] net/hns3: updates for Rx Tx X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Message
Wei Hu (Xavier)
Sept. 7, 2020, 9:08 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 config/common_base | 1 + config/common_linux | 1 + drivers/net/hns3/Makefile | 5 + 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 | 1006 +++++++++++++++++++++++---------- drivers/net/hns3/hns3_rxtx.h | 227 +++++++- drivers/net/hns3/hns3_rxtx_vec.c | 214 +++++++ drivers/net/hns3/hns3_rxtx_vec.h | 77 +++ drivers/net/hns3/hns3_rxtx_vec_neon.h | 284 ++++++++++ drivers/net/hns3/meson.build | 4 + 12 files changed, 1631 insertions(+), 301 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