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 8828943212; Fri, 27 Oct 2023 08:20:36 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5C18F4064A; Fri, 27 Oct 2023 08:20:36 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 2C1014029A for ; Fri, 27 Oct 2023 08:20:35 +0200 (CEST) Received: from kwepemi500020.china.huawei.com (unknown [172.30.72.54]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4SGspy0N57zpWT1 for ; Fri, 27 Oct 2023 14:15:38 +0800 (CST) Received: from [10.67.121.175] (10.67.121.175) 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; Fri, 27 Oct 2023 14:20:31 +0800 Message-ID: <876fa349-6531-0c40-6050-9af42c3b4cba@huawei.com> Date: Fri, 27 Oct 2023 14:20:31 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: [PATCH 1/4] net/hns3: fix a typo To: "lihuisong (C)" , , Dongdong Liu , Yisen Zhuang , Lijun Ou , Chengwen Feng References: <20231018013938.3830742-1-haijie1@huawei.com> <20231018013938.3830742-2-haijie1@huawei.com> <02b3e901-b100-8a67-ef2f-4bbc662cf8ca@huawei.com> From: Jie Hai In-Reply-To: <02b3e901-b100-8a67-ef2f-4bbc662cf8ca@huawei.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.121.175] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) 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 @all The patch "[PATCH 1/4] net/hns3: fix a typo" has been moved to patchset "[0/8] net/hns3: add some bugfix for hns3", see https://patches.dpdk.org/project/dpdk/cover/20231027060947.3183983-1-haijie1@huawei.com/ On 2023/10/18 19:32, lihuisong (C) wrote: > hns3 patch can be stripped from this series. > ltgm, > Acked-by: Huisong Li > > > 在 2023/10/18 9:39, Jie Hai 写道: >> This patch fixes a typo. >> >> Fixes: c09c7847d892 ("net/hns3: support traffic management") >> Cc: stable@dpdk.org >> >> Signed-off-by: Jie Hai >> --- >>   drivers/net/hns3/hns3_tm.c | 4 ++-- >>   1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/net/hns3/hns3_tm.c b/drivers/net/hns3/hns3_tm.c >> index 67402a700f46..d9691640140b 100644 >> --- a/drivers/net/hns3/hns3_tm.c >> +++ b/drivers/net/hns3/hns3_tm.c >> @@ -739,7 +739,7 @@ hns3_tm_node_type_get(struct rte_eth_dev *dev, >> uint32_t node_id, >>   } >>   static void >> -hns3_tm_nonleaf_level_capsbilities_get(struct rte_eth_dev *dev, >> +hns3_tm_nonleaf_level_capabilities_get(struct rte_eth_dev *dev, >>                          uint32_t level_id, >>                          struct rte_tm_level_capabilities *cap) >>   { >> @@ -818,7 +818,7 @@ hns3_tm_level_capabilities_get(struct rte_eth_dev >> *dev, >>       memset(cap, 0, sizeof(struct rte_tm_level_capabilities)); >>       if (level_id != HNS3_TM_NODE_LEVEL_QUEUE) >> -        hns3_tm_nonleaf_level_capsbilities_get(dev, level_id, cap); >> +        hns3_tm_nonleaf_level_capabilities_get(dev, level_id, cap); >>       else >>           hns3_tm_leaf_level_capabilities_get(dev, cap); > .