[0/9] updates and fixes for hns3 PMD driver
Message ID | 20200929110945.70761-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 2FA76A04C0; Tue, 29 Sep 2020 13:11:22 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F3A491D9FE; Tue, 29 Sep 2020 13:10:27 +0200 (CEST) Received: from incedge.chinasoftinc.com (unknown [114.113.233.8]) by dpdk.org (Postfix) with ESMTP id 6D53E1D941 for <dev@dpdk.org>; Tue, 29 Sep 2020 13:10:19 +0200 (CEST) X-ASG-Debug-ID: 1601377815-149d11049a291380001-TfluYd Received: from mail.chinasoftinc.com (inccas001.ito.icss [10.168.0.51]) by incedge.chinasoftinc.com with ESMTP id LKub6xylN7ZY4GUY (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 29 Sep 2020 19:10:15 +0800 (CST) X-Barracuda-Envelope-From: huwei013@chinasoftinc.com X-Barracuda-RBL-Trusted-Forwarder: 10.168.0.51 X-ASG-Whitelist: Client Received: from localhost.localdomain (120.133.139.157) by INCCAS001.ito.icss (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Tue, 29 Sep 2020 19:10:15 +0800 From: "Wei Hu (Xavier)" <huwei013@chinasoftinc.com> X-Barracuda-RBL-Trusted-Forwarder: 10.168.0.60 To: <dev@dpdk.org> CC: <xavier.huwei@huawei.com> Date: Tue, 29 Sep 2020 19:09:36 +0800 X-ASG-Orig-Subj: [PATCH 0/9] updates and fixes for hns3 PMD driver Message-ID: <20200929110945.70761-1-huwei013@chinasoftinc.com> X-Mailer: git-send-email 2.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [120.133.139.157] X-Barracuda-Connect: inccas001.ito.icss[10.168.0.51] X-Barracuda-Start-Time: 1601377815 X-Barracuda-Encrypted: ECDHE-RSA-AES256-SHA X-Barracuda-URL: https://incspam.chinasofti.com:443/cgi-mod/mark.cgi X-Virus-Scanned: by bsmtpd at chinasoftinc.com X-Barracuda-Scan-Msg-Size: 1659 Subject: [dpdk-dev] [PATCH 0/9] updates and fixes for hns3 PMD driver 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. 29, 2020, 11:09 a.m. UTC
This series are updates and fixes for hns3 PMD driver. Chengchang Tang (1): net/hns3: support start and stop Tx or Rx queue Hongbo Zheng (2): net/hns3: check return value when reading PCI config space net/hns3: remove redundant return value assignments Huisong Li (3): net/hns3: expand the number of queues for one TC up to 512 net/hns3: offload calculating the shapping para to firmware net/hns3: set max scheduling rate based on actual board Wei Hu (Xavier) (3): net/hns3: maximize the queue number net/hns3: fix error type when validating RSS flow action net/hns3: set suitable type when initial flow error struct config/rte_config.h | 3 + drivers/net/hns3/hns3_cmd.c | 2 +- drivers/net/hns3/hns3_cmd.h | 28 +- drivers/net/hns3/hns3_dcb.c | 205 +++++++++--- drivers/net/hns3/hns3_dcb.h | 60 +++- drivers/net/hns3/hns3_ethdev.c | 214 +++++++++--- drivers/net/hns3/hns3_ethdev.h | 32 +- drivers/net/hns3/hns3_ethdev_vf.c | 214 ++++++++---- drivers/net/hns3/hns3_fdir.c | 6 +- drivers/net/hns3/hns3_flow.c | 97 +++--- drivers/net/hns3/hns3_intr.c | 1 - drivers/net/hns3/hns3_regs.c | 4 +- drivers/net/hns3/hns3_regs.h | 5 + drivers/net/hns3/hns3_rss.c | 34 +- drivers/net/hns3/hns3_rss.h | 5 +- drivers/net/hns3/hns3_rxtx.c | 675 +++++++++++++++++++++++++++++++------- drivers/net/hns3/hns3_rxtx.h | 18 +- drivers/net/hns3/hns3_stats.c | 73 ++++- drivers/net/hns3/hns3_stats.h | 6 +- 19 files changed, 1281 insertions(+), 401 deletions(-)