[v2,0/8] net/hns3: updates for Rx Tx
Message ID | 20200909092339.31488-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 BDFC7A04B1; Wed, 9 Sep 2020 11:23:52 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B96C81C0AD; Wed, 9 Sep 2020 11:23:51 +0200 (CEST) Received: from mail.chinasoftinc.com (unknown [114.113.233.8]) by dpdk.org (Postfix) with ESMTP id 4247ADE0 for <dev@dpdk.org>; Wed, 9 Sep 2020 11:23:49 +0200 (CEST) Received: from localhost.localdomain (65.49.108.226) by INCCAS001.ito.icss (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Wed, 9 Sep 2020 17:23:46 +0800 From: "Wei Hu (Xavier)" <huwei013@chinasoftinc.com> To: <dev@dpdk.org> CC: <xavier.huwei@huawei.com> Date: Wed, 9 Sep 2020 17:23:31 +0800 Message-ID: <20200909092339.31488-1-huwei013@chinasoftinc.com> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20200907090825.1761-1-huwei013@chinasoftinc.com> References: <20200907090825.1761-1-huwei013@chinasoftinc.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [65.49.108.226] Subject: [dpdk-dev] [PATCH v2 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. 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