From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5726C46A4F; Wed, 25 Jun 2025 08:46:45 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CA26C402E4; Wed, 25 Jun 2025 08:46:44 +0200 (CEST) Received: from szxga05-in.huawei.com (szxga05-in.huawei.com [45.249.212.191]) by mails.dpdk.org (Postfix) with ESMTP id 10625402B1 for ; Wed, 25 Jun 2025 08:46:42 +0200 (CEST) Received: from mail.maildlp.com (unknown [172.19.88.163]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4bRsjl5nDJz1W3TQ; Wed, 25 Jun 2025 14:44:11 +0800 (CST) Received: from kwepemo500011.china.huawei.com (unknown [7.202.195.194]) by mail.maildlp.com (Postfix) with ESMTPS id 9D205180043; Wed, 25 Jun 2025 14:46:39 +0800 (CST) Received: from [10.67.121.193] (10.67.121.193) by kwepemo500011.china.huawei.com (7.202.195.194) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Wed, 25 Jun 2025 14:46:39 +0800 Message-ID: Date: Wed, 25 Jun 2025 14:46:38 +0800 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 0/6] net/hns3: VF support multi-TCs From: huangdengdui To: CC: , , , References: <20250611081900.3658421-1-huangdengdui@huawei.com> Content-Language: en-US In-Reply-To: <20250611081900.3658421-1-huangdengdui@huawei.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.193] X-ClientProxiedBy: kwepems200002.china.huawei.com (7.221.188.68) To kwepemo500011.china.huawei.com (7.202.195.194) 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 Hi, maintainers, Kindly ping for reviews. The CI compilation errors have been checked and are not introduced by this patch. We hope to merge these patches into the 25.07 version. Thanks. On 2025/6/11 16:18, Dengdui Huang wrote: > This patchset adds the VF multi-TCs feature. > > Chengwen Feng (6): > net/hns3: fix VF fail to config queue TC > net/hns3: remove duplicate struct field > net/hns3: refactor DCB module code > net/hns3: VF support parse max TC number > net/hns3: VF support discover multi-TCs capability > net/hns3: VF support multi-TCs configure > > drivers/net/hns3/hns3_cmd.c | 5 +- > drivers/net/hns3/hns3_cmd.h | 10 + > drivers/net/hns3/hns3_dcb.c | 161 ++++++++++++---- > drivers/net/hns3/hns3_dcb.h | 4 + > drivers/net/hns3/hns3_dump.c | 11 +- > drivers/net/hns3/hns3_ethdev.c | 132 ++----------- > drivers/net/hns3/hns3_ethdev.h | 12 +- > drivers/net/hns3/hns3_ethdev_vf.c | 297 ++++++++++++++++++++++++++++-- > drivers/net/hns3/hns3_mbx.h | 50 ++++- > drivers/net/hns3/hns3_rss.c | 8 +- > drivers/net/hns3/hns3_rxtx.c | 26 ++- > drivers/net/hns3/hns3_tm.c | 6 +- > 12 files changed, 539 insertions(+), 183 deletions(-) >