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 10008A034C; Wed, 29 Jun 2022 11:59:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AFFEE40146; Wed, 29 Jun 2022 11:59:25 +0200 (CEST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id D347B400D7 for ; Wed, 29 Jun 2022 11:59:23 +0200 (CEST) Received: from dggemv703-chm.china.huawei.com (unknown [172.30.72.57]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4LXxk92bwfz9sxw; Wed, 29 Jun 2022 17:58:41 +0800 (CST) Received: from kwepemm600004.china.huawei.com (7.193.23.242) by dggemv703-chm.china.huawei.com (10.3.19.46) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Wed, 29 Jun 2022 17:59:21 +0800 Received: from [10.67.103.231] (10.67.103.231) by kwepemm600004.china.huawei.com (7.193.23.242) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Wed, 29 Jun 2022 17:59:21 +0800 Message-ID: Date: Wed, 29 Jun 2022 17:59:20 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 Subject: Re: [PATCH V6 0/8] app/testpmd: fix RSS and flow type To: , , , CC: , , , References: <20220429102445.23711-1-lihuisong@huawei.com> <20220629083451.21954-1-lihuisong@huawei.com> From: "lihuisong (C)" In-Reply-To: <20220629083451.21954-1-lihuisong@huawei.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.103.231] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To kwepemm600004.china.huawei.com (7.193.23.242) 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 Hi Ferruh, The patch 8/8 fails to build. Could you please have a look? http://mails.dpdk.org/archives/test-report/2022-June/293418.html Thanks, Huisong 在 2022/6/29 16:34, Huisong Li 写道: > This patchset fix RSS related code and remove duplicated flow type to > string table. > > --- > v6: > - add a release note for renaming testpmd RSS type 'ether'. > - revert "unknown offload xxx" print. > > v5: > - resolve a warning in testpmd_funcs.rst file > > v4: > - delete 'rss_offload_table[]' and use 'rss_type_table[]' > - add an 'char_num_per_line' parameter to control RSS types display. > - add 2/7, 3/7 and 6/7 patch. > > v3: > - add 'rss_offload_table[]' to display supported RSS offload. > - add patch 3/4 and 4/4. > > v2: > - resovle compilation failure when disable i40e and ixgbe. > > Ferruh Yigit (2): > app/testpmd: compact RSS types output in some commands > app/testpmd: remove duplicated flow type to string table > > Huisong Li (6): > app/testpmd: fix supported RSS offload display > app/testpmd: unify the name of L2 payload offload > doc: testpmd rename RSS type ether to L2 payload > app/testpmd: refactor config all RSS command > app/testpmd: unify RSS types display > app/testpmd: reorder elements in RSS type table array > > app/test-pmd/cmdline.c | 122 +++------ > app/test-pmd/config.c | 259 +++++++++++++------- > app/test-pmd/testpmd.h | 8 + > doc/guides/rel_notes/release_22_07.rst | 4 + > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 11 +- > drivers/net/i40e/i40e_testpmd.c | 41 +--- > 6 files changed, 225 insertions(+), 220 deletions(-) >