From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C1092A04D7; Thu, 3 Sep 2020 03:04:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2257A1BEAF; Thu, 3 Sep 2020 03:04:25 +0200 (CEST) Received: from mail.chinasoftinc.com (unknown [114.113.233.8]) by dpdk.org (Postfix) with ESMTP id 71FA2E07 for ; Thu, 3 Sep 2020 03:04:23 +0200 (CEST) Received: from [192.168.1.199] (139.159.243.11) by INCCAS001.ito.icss (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Thu, 3 Sep 2020 09:04:16 +0800 From: "Wei Hu (Xavier)" To: CC: , References: <20200825115305.58490-1-huwei013@chinasoftinc.com> Message-ID: Date: Thu, 3 Sep 2020 09:04:15 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <20200825115305.58490-1-huwei013@chinasoftinc.com> Content-Language: en-US X-Originating-IP: [139.159.243.11] Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 00/11] 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" Hi, all    Are there any comments? Thanks Xavier On 2020/8/25 19:52, Wei Hu (Xavier) wrote: > This series are features and fixes for hns3 PMD driver. > > Huisong Li (3): > net/hns3: replace private macro with RTE MAX > net/hns3: fix default MAC addr from firmware > net/hns3: fix some incomplete command structures > > Wei Hu (Xavier) (8): > net/hns3: get device capability from firmware > net/hns3: get dev specifications from firmware > net/hns3: compatibility issues about Rx interrupts > net/hns3: compatibility issues about Tx padding short frame > net/hns3: add more hardware error types > net/hns3: support a maximun 256 FDIR counter > net/hns3: change the log level to INFO > net/hns3: fix Rx/Tx queue offload capability > > drivers/net/hns3/hns3_cmd.c | 36 +- > drivers/net/hns3/hns3_cmd.h | 94 ++- > drivers/net/hns3/hns3_dcb.c | 1 - > drivers/net/hns3/hns3_dcb.h | 14 +- > drivers/net/hns3/hns3_ethdev.c | 187 ++++- > drivers/net/hns3/hns3_ethdev.h | 138 +++- > drivers/net/hns3/hns3_ethdev_vf.c | 124 ++- > drivers/net/hns3/hns3_fdir.c | 5 + > drivers/net/hns3/hns3_intr.c | 1236 ++++++++++++++++++++++++----- > drivers/net/hns3/hns3_intr.h | 40 +- > drivers/net/hns3/hns3_regs.h | 7 + > drivers/net/hns3/hns3_rxtx.c | 31 +- > drivers/net/hns3/hns3_rxtx.h | 11 +- > drivers/net/hns3/hns3_stats.c | 78 +- > drivers/net/hns3/hns3_stats.h | 2 + > 15 files changed, 1666 insertions(+), 338 deletions(-) >