From patchwork Fri Nov 22 12:06:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wei Hu (Xavier)" X-Patchwork-Id: 63232 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 06A3FA04C3; Fri, 22 Nov 2019 15:15:52 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BD53B235; Fri, 22 Nov 2019 15:15:52 +0100 (CET) Received: from smtp.tom.com (smtprz15.163.net [106.3.154.248]) by dpdk.org (Postfix) with ESMTP id C29F6374 for ; Fri, 22 Nov 2019 13:06:33 +0100 (CET) Received: from my-app01.tom.com (my-app01.tom.com [127.0.0.1]) by freemail01.tom.com (Postfix) with ESMTP id 629671C819ED for ; Fri, 22 Nov 2019 20:06:37 +0800 (CST) Received: from my-app01.tom.com (HELO smtp.tom.com) ([127.0.0.1]) by my-app01 (TOM SMTP Server) with SMTP ID -1909131083 for ; Fri, 22 Nov 2019 20:06:37 +0800 (CST) Received: from antispam1.tom.com (unknown [172.25.16.55]) by freemail01.tom.com (Postfix) with ESMTP id 564051C819E0 for ; Fri, 22 Nov 2019 20:06:36 +0800 (CST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tom.com; s=201807; t=1574424397; bh=XeHImJ6lU0adwidsX69y8hq63oOkLB2H7NlwK6qzGwY=; h=From:To:Cc:Subject:Date:From; b=iUgZzu4LO4cCfwkf03hHulK56QCVImo1MxWAu7rnrJj9Bu+sCnLlZY6aV3SeeSrvN p2GnglrboFnZrDQ3fU59DSrm+Ilmg+h/wLQWzWoBLBkm8/6dHQkOXrbtwwrQ7wM8m1 KNn8/BDcaTHq8YvqHMC05eFrIWrNyZGzH7ZycWl0= Received: from antispam1.tom.com (antispam1.tom.com [127.0.0.1]) by antispam1.tom.com (Postfix) with ESMTP id 077BA100155C for ; Fri, 22 Nov 2019 20:06:07 +0800 (CST) X-Virus-Scanned: Debian amavisd-new at antispam1.tom.com Received: from antispam1.tom.com ([127.0.0.1]) by antispam1.tom.com (antispam1.tom.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id uZ3OGd85hcWM for ; Fri, 22 Nov 2019 20:06:06 +0800 (CST) Received: from localhost.localdomain (unknown [203.160.91.226]) by antispam1.tom.com (Postfix) with ESMTPA id 641871001124; Fri, 22 Nov 2019 20:06:06 +0800 (CST) From: "Wei Hu (Xavier)" To: dev@dpdk.org, stable@dpdk.org Cc: xavier_huwei@163.com, xavier.huwei@tom.com, huwei87@hisilicon.com Date: Fri, 22 Nov 2019 20:06:18 +0800 Message-Id: <20191122120624.4963-1-xavier.huwei@tom.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 X-Mailman-Approved-At: Fri, 22 Nov 2019 15:15:51 +0100 Subject: [dpdk-dev] [PATCH 0/6] Fixes 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" From: "Wei Hu (Xavier)" This series add some fixes for hns3 PMD driver. Chengchang Tang (1): net/hns3: fix the error length limit of maiblox response Hao Chen (1): net/hns3: fix RSS hardware configuration restore failure Huisong Li (1): net/hns3: fix the strategy of getting link status for VF Min Hu (Connor) (1): net/hns3: fix duplicate VLAN Wei Hu (Xavier) (2): net/hns3: fix VF configuration table entries restore failure net/hns3: fix the failure sending packets less than 60 bytes drivers/net/hns3/hns3_ethdev.c | 5 +++++ drivers/net/hns3/hns3_ethdev.h | 1 + drivers/net/hns3/hns3_ethdev_vf.c | 22 +++++++++++++++++----- drivers/net/hns3/hns3_mbx.c | 4 +--- drivers/net/hns3/hns3_mbx.h | 6 ++++++ drivers/net/hns3/hns3_rss.c | 4 +--- drivers/net/hns3/hns3_rxtx.c | 24 ++++++++++++++++++++---- 7 files changed, 51 insertions(+), 15 deletions(-)