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 BB6BFA0032; Fri, 24 Jun 2022 10:55:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A8D1540A87; Fri, 24 Jun 2022 10:55:23 +0200 (CEST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id 9644E40A82 for ; Fri, 24 Jun 2022 10:55:21 +0200 (CEST) Received: from dggemv704-chm.china.huawei.com (unknown [172.30.72.54]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4LTrXg2RyVzDsSm; Fri, 24 Jun 2022 16:54:43 +0800 (CST) Received: from kwepemm600004.china.huawei.com (7.193.23.242) by dggemv704-chm.china.huawei.com (10.3.19.47) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Fri, 24 Jun 2022 16:55:18 +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; Fri, 24 Jun 2022 16:55:18 +0800 Message-ID: Date: Fri, 24 Jun 2022 16:55:17 +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 V5 0/7] app/testpmd: fix RSS and flow type To: , , , CC: , , , References: <20220429102445.23711-1-lihuisong@huawei.com> <20220624072401.21839-1-lihuisong@huawei.com> From: "lihuisong (C)" In-Reply-To: <20220624072401.21839-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: dggems702-chm.china.huawei.com (10.3.19.179) 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, This patchset has been sent. However, a merge conflict is displayed on the CI. In fact, I'm do it based on the latest mainline, and there are nothing conflict. Can you help me re-trigger the build? Thanks, huisong 在 2022/6/24 15:23, Huisong Li 写道: > This patchset fix RSS related code and remove duplicated flow type to > string table. > > --- > 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 (5): > app/testpmd: fix supported RSS offload display > app/testpmd: unify the name of L2 payload offload > 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 | 127 +++------- > app/test-pmd/config.c | 263 +++++++++++++------- > app/test-pmd/testpmd.h | 8 + > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 11 +- > drivers/net/i40e/i40e_testpmd.c | 41 +-- > 5 files changed, 228 insertions(+), 222 deletions(-) >