From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 866D7C433E0 for ; Sat, 23 May 2020 01:33:41 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id E23F9206DD for ; Sat, 23 May 2020 01:33:36 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E23F9206DD Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AF90F1D989; Sat, 23 May 2020 03:33:35 +0200 (CEST) Received: from huawei.com (szxga06-in.huawei.com [45.249.212.32]) by dpdk.org (Postfix) with ESMTP id 3A8F21D948 for ; Sat, 23 May 2020 03:33:33 +0200 (CEST) Received: from DGGEMS408-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 415186BCB762898B6E8B; Sat, 23 May 2020 09:33:32 +0800 (CST) Received: from [127.0.0.1] (10.69.31.206) by DGGEMS408-HUB.china.huawei.com (10.3.19.208) with Microsoft SMTP Server id 14.3.487.0; Sat, 23 May 2020 09:33:27 +0800 To: Ferruh Yigit , References: <1590139278-11046-1-git-send-email-xavier.huwei@huawei.com> <0f3ed38a-9cc3-1bb0-e0e5-9ac7ea9b316b@intel.com> CC: Thomas Monjalon From: "Wei Hu (Xavier)" Message-ID: <38bf82fc-050f-4b44-354a-37120a28e289@huawei.com> Date: Sat, 23 May 2020 09:33:26 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 In-Reply-To: <0f3ed38a-9cc3-1bb0-e0e5-9ac7ea9b316b@intel.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.69.31.206] X-CFilter-Loop: Reflected Subject: Re: [dpdk-dev] [PATCH 0/5] 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" On 2020/5/22 19:20, Ferruh Yigit wrote: > On 5/22/2020 10:21 AM, Wei Hu (Xavier) wrote: >> This series are improvement and bugfixes for hns3 PMD driver. > Hi Xavier, > > We are planning to have the -rc4 this weekend and the release on Tuesday. So we > are literally a few days away from the release. > > It is definitely not good idea to change the code this close to the release, > that is why we are saying -rc4 for the critical defects only. > > I will postpone this series to the next release, fyi. Hi, Ferruh Yigit I got it. I will adjust the frequency of sending patches to the community in future. Thank you. Regards Xavier >> Chengchang Tang (2): >> net/hns3: replace PF vport id zero with private macro >> net/hns3: fix promiscuous config not clear for PF on uninit >> >> Lijun Ou (2): >> net/hns3: add RSS hash offload to port Rx configuration >> net/hns3: fix key length when configuring RSS >> >> Wei Hu (Xavier) (1): >> net/hns3: fix preparing sending packets less than 60 bytes >> >> drivers/net/hns3/hns3_ethdev.c | 102 ++++++++++++++++++++++++-------------- >> drivers/net/hns3/hns3_ethdev.h | 3 ++ >> drivers/net/hns3/hns3_ethdev_vf.c | 1 + >> drivers/net/hns3/hns3_flow.c | 8 +++ >> drivers/net/hns3/hns3_rxtx.c | 6 --- >> 5 files changed, 78 insertions(+), 42 deletions(-) >> >