From patchwork Tue Oct 31 12:23:53 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Hai X-Patchwork-Id: 334 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A423E43252; Tue, 31 Oct 2023 13:35:52 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DC74040A84; Tue, 31 Oct 2023 13:35:43 +0100 (CET) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id E7B874026C for ; Tue, 31 Oct 2023 13:35:40 +0100 (CET) Received: from kwepemi500020.china.huawei.com (unknown [172.30.72.53]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4SKTyq2gMhzPnYl for ; Tue, 31 Oct 2023 20:31:31 +0800 (CST) Received: from localhost.localdomain (10.67.165.2) by kwepemi500020.china.huawei.com (7.221.188.8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.31; Tue, 31 Oct 2023 20:35:36 +0800 From: Jie Hai To: CC: , , Subject: [PATCH 0/6] net/hns3: add some bugfix for hns3 Date: Tue, 31 Oct 2023 20:23:53 +0800 Message-ID: <20231031122359.3930935-1-haijie1@huawei.com> X-Mailer: git-send-email 2.30.0 MIME-Version: 1.0 X-Originating-IP: [10.67.165.2] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemi500020.china.huawei.com (7.221.188.8) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This patchset contains some bugfix for hns3 pmd. Huisong Li (2): net/hns3: fix setting DCB capability net/hns3: fix LRO offload to report Jie Hai (4): net/hns3: fix return value net/hns3: fix some error log net/hns3: do not export API for setting and getting algo and key net/hns3: fix uninitialized value drivers/net/hns3/hns3_cmd.c | 40 +++++++++++++++++++++++++++++++ drivers/net/hns3/hns3_cmd.h | 1 + drivers/net/hns3/hns3_common.c | 5 ++-- drivers/net/hns3/hns3_dcb.c | 2 +- drivers/net/hns3/hns3_dump.c | 3 ++- drivers/net/hns3/hns3_ethdev.c | 21 ++++------------ drivers/net/hns3/hns3_ethdev.h | 1 + drivers/net/hns3/hns3_ethdev_vf.c | 13 ++++++---- drivers/net/hns3/hns3_fdir.c | 2 +- drivers/net/hns3/hns3_flow.c | 2 +- drivers/net/hns3/hns3_rss.c | 8 +++---- drivers/net/hns3/hns3_rss.h | 4 ---- drivers/net/hns3/hns3_rxtx.c | 3 +++ drivers/net/hns3/hns3_stats.c | 15 ++++++++---- 14 files changed, 79 insertions(+), 41 deletions(-)