From patchwork Wed Jul 1 11:54:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wei Hu (Xavier)" X-Patchwork-Id: 72603 Return-Path: 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 914C2A0350; Wed, 1 Jul 2020 13:56:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 49B9E1D16C; Wed, 1 Jul 2020 13:56:32 +0200 (CEST) Received: from huawei.com (szxga07-in.huawei.com [45.249.212.35]) by dpdk.org (Postfix) with ESMTP id 727E61C440 for ; Wed, 1 Jul 2020 13:56:29 +0200 (CEST) Received: from DGGEMS408-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 23BC744F7CB94A724CF5 for ; Wed, 1 Jul 2020 19:56:27 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS408-HUB.china.huawei.com (10.3.19.208) with Microsoft SMTP Server id 14.3.487.0; Wed, 1 Jul 2020 19:56:20 +0800 From: "Wei Hu (Xavier)" To: CC: Date: Wed, 1 Jul 2020 19:54:32 +0800 Message-ID: <1593604482-47494-1-git-send-email-xavier.huwei@huawei.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH 00/10] misc updates for hns3 PMD driver X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This series are minor features and bugfixes for hns3 PMD driver. Chengchang Tang (2): net/hns3: decrease non-nearby memory access in Rx net/hns3: support setting VF PVID by PF driver Hongbo Zheng (1): net/hns3: clear residual hardware configurations on init Lijun Ou (2): net/hns3: support symmetric RSS net/hns3: report Tx descriptor segment limitations Wei Hu (Xavier) (5): net/hns3: support LRO net/hns3: get device capability in primary process net/hns3: fix Rx buffer size net/hns3: fix reassembling multiple segment packets in Tx net/hns3: add Scattered Rx and Multiprocess to feature list doc/guides/nics/features/hns3.ini | 3 + doc/guides/nics/features/hns3_vf.ini | 3 + doc/guides/nics/hns3.rst | 1 + drivers/net/hns3/hns3_cmd.h | 3 + drivers/net/hns3/hns3_ethdev.c | 150 +++++++++++++++++-------- drivers/net/hns3/hns3_ethdev.h | 16 ++- drivers/net/hns3/hns3_ethdev_vf.c | 122 ++++++++++++++++---- drivers/net/hns3/hns3_flow.c | 12 +- drivers/net/hns3/hns3_mbx.c | 33 ++++++ drivers/net/hns3/hns3_mbx.h | 3 + drivers/net/hns3/hns3_rss.c | 27 +++-- drivers/net/hns3/hns3_rss.h | 5 +- drivers/net/hns3/hns3_rxtx.c | 210 +++++++++++++++++++++++++++++++++-- drivers/net/hns3/hns3_rxtx.h | 25 ++++- 14 files changed, 512 insertions(+), 101 deletions(-)