Message ID | 20221011111843.3311-1-liudongdong3@huawei.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B77BEA0545; Tue, 11 Oct 2022 13:20:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ABD1342D7E; Tue, 11 Oct 2022 13:20:38 +0200 (CEST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id B01DF42D0C for <dev@dpdk.org>; Tue, 11 Oct 2022 13:20:37 +0200 (CEST) Received: from kwepemi500017.china.huawei.com (unknown [172.30.72.53]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4MmtYm4BY9z1CF1C; Tue, 11 Oct 2022 19:18:04 +0800 (CST) Received: from localhost.localdomain (10.28.79.22) by kwepemi500017.china.huawei.com (7.221.188.110) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.31; Tue, 11 Oct 2022 19:20:35 +0800 From: Dongdong Liu <liudongdong3@huawei.com> To: <dev@dpdk.org>, <reshma.pattan@intel.com>, <thomas@monjalon.net>, <ferruh.yigit@amd.com>, <andrew.rybchenko@oktetlabs.ru> CC: Dongdong Liu <liudongdong3@huawei.com> Subject: [PATCH v10 0/8] app/procinfo: add some extended features Date: Tue, 11 Oct 2022 19:18:35 +0800 Message-ID: <20221011111843.3311-1-liudongdong3@huawei.com> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20220722091236.15469-1-liudongdong3@huawei.com> References: <20220722091236.15469-1-liudongdong3@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.28.79.22] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To kwepemi500017.china.huawei.com (7.221.188.110) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org |
Series |
app/procinfo: add some extended features
|
|
Message
Dongdong Liu
Oct. 11, 2022, 11:18 a.m. UTC
This patchset is to add some extended features for dpdk-proc-info. Thanks to Reshma and Stephen help to review the patchset. v9->v10: - Fix some comments for Rx/Tx descriptor dump. v8->v9: - Fixed some checkpatch warnings. v7(v4)->v8: - Add Acked-by: Reshma Pattan for PATCH 4,6. - Add Rx/Tx descriptor dump. - Adjust procinfo doc guide. v3->v4: - Add Acked-by: Reshma Pattan for PATCH 1,2,3,5,7. - Rename show-module-info to show-module-eeprom to make more clear. v2->v3: Fix some comments from Stephen. - Use --version option for DPDK version. - Add --firmware-version option to show firmware. - Use errors on stderr, not stdout. - Delete some unnecessary code. v1->v2: Fix some comments from Reshma. Dongdong Liu (4): app/procinfo: add firmware version dump app/procinfo: fix some wrong doxygen syntax app/procinfo: support descriptor dump doc: add some extended features in procinfo guide Jie Hai (1): app/procinfo: add dump of Rx/Tx burst mode Min Hu (Connor) (3): app/procinfo: add dpdk version dump app/procinfo: add RSS RETA dump app/procinfo: add module eeprom info dump app/proc-info/main.c | 324 ++++++++++++++++++++++++++++++--- doc/guides/tools/proc_info.rst | 36 +++- 2 files changed, 336 insertions(+), 24 deletions(-) -- 2.22.0
Comments
Hi Thomas Could you have a look at the patchset? Thanks, Dongdong On 2022/10/11 19:18, Dongdong Liu wrote: > This patchset is to add some extended features for dpdk-proc-info. > > Thanks to Reshma and Stephen help to review the patchset. > > v9->v10: > - Fix some comments for Rx/Tx descriptor dump. > > v8->v9: > - Fixed some checkpatch warnings. > > v7(v4)->v8: > - Add Acked-by: Reshma Pattan for PATCH 4,6. > - Add Rx/Tx descriptor dump. > - Adjust procinfo doc guide. > > v3->v4: > - Add Acked-by: Reshma Pattan for PATCH 1,2,3,5,7. > - Rename show-module-info to show-module-eeprom to make more clear. > > v2->v3: Fix some comments from Stephen. > - Use --version option for DPDK version. > - Add --firmware-version option to show firmware. > - Use errors on stderr, not stdout. > - Delete some unnecessary code. > > v1->v2: Fix some comments from Reshma. > > Dongdong Liu (4): > app/procinfo: add firmware version dump > app/procinfo: fix some wrong doxygen syntax > app/procinfo: support descriptor dump > doc: add some extended features in procinfo guide > > Jie Hai (1): > app/procinfo: add dump of Rx/Tx burst mode > > Min Hu (Connor) (3): > app/procinfo: add dpdk version dump > app/procinfo: add RSS RETA dump > app/procinfo: add module eeprom info dump > > app/proc-info/main.c | 324 ++++++++++++++++++++++++++++++--- > doc/guides/tools/proc_info.rst | 36 +++- > 2 files changed, 336 insertions(+), 24 deletions(-) > > -- > 2.22.0 > > . >
Hi Thomas Kindly ping. Can this patchset be applied? Thanks, Dongdong On 2022/10/11 19:18, Dongdong Liu wrote: > This patchset is to add some extended features for dpdk-proc-info. > > Thanks to Reshma and Stephen help to review the patchset. > > v9->v10: > - Fix some comments for Rx/Tx descriptor dump. > > v8->v9: > - Fixed some checkpatch warnings. > > v7(v4)->v8: > - Add Acked-by: Reshma Pattan for PATCH 4,6. > - Add Rx/Tx descriptor dump. > - Adjust procinfo doc guide. > > v3->v4: > - Add Acked-by: Reshma Pattan for PATCH 1,2,3,5,7. > - Rename show-module-info to show-module-eeprom to make more clear. > > v2->v3: Fix some comments from Stephen. > - Use --version option for DPDK version. > - Add --firmware-version option to show firmware. > - Use errors on stderr, not stdout. > - Delete some unnecessary code. > > v1->v2: Fix some comments from Reshma. > > Dongdong Liu (4): > app/procinfo: add firmware version dump > app/procinfo: fix some wrong doxygen syntax > app/procinfo: support descriptor dump > doc: add some extended features in procinfo guide > > Jie Hai (1): > app/procinfo: add dump of Rx/Tx burst mode > > Min Hu (Connor) (3): > app/procinfo: add dpdk version dump > app/procinfo: add RSS RETA dump > app/procinfo: add module eeprom info dump > > app/proc-info/main.c | 324 ++++++++++++++++++++++++++++++--- > doc/guides/tools/proc_info.rst | 36 +++- > 2 files changed, 336 insertions(+), 24 deletions(-) > > -- > 2.22.0 > > . >
On Tue, Oct 11, 2022 at 1:20 PM Dongdong Liu <liudongdong3@huawei.com> wrote: > > This patchset is to add some extended features for dpdk-proc-info. > > Thanks to Reshma and Stephen help to review the patchset. > > v9->v10: > - Fix some comments for Rx/Tx descriptor dump. > > v8->v9: > - Fixed some checkpatch warnings. > > v7(v4)->v8: > - Add Acked-by: Reshma Pattan for PATCH 4,6. > - Add Rx/Tx descriptor dump. > - Adjust procinfo doc guide. > > v3->v4: > - Add Acked-by: Reshma Pattan for PATCH 1,2,3,5,7. > - Rename show-module-info to show-module-eeprom to make more clear. > > v2->v3: Fix some comments from Stephen. > - Use --version option for DPDK version. > - Add --firmware-version option to show firmware. > - Use errors on stderr, not stdout. > - Delete some unnecessary code. > > v1->v2: Fix some comments from Reshma. > > Dongdong Liu (4): > app/procinfo: add firmware version dump > app/procinfo: fix some wrong doxygen syntax > app/procinfo: support descriptor dump > doc: add some extended features in procinfo guide > > Jie Hai (1): > app/procinfo: add dump of Rx/Tx burst mode > > Min Hu (Connor) (3): > app/procinfo: add dpdk version dump > app/procinfo: add RSS RETA dump > app/procinfo: add module eeprom info dump > > app/proc-info/main.c | 324 ++++++++++++++++++++++++++++++--- > doc/guides/tools/proc_info.rst | 36 +++- > 2 files changed, 336 insertions(+), 24 deletions(-) The last patch was a mix of various changes in the documentation. Please make sure to update the documentation as part of the code changes, in the future. And separate fixes with proper Fixes: tag from other changes. Series applied, thanks.
On 2022/11/15 17:52, David Marchand wrote: > On Tue, Oct 11, 2022 at 1:20 PM Dongdong Liu <liudongdong3@huawei.com> wrote: >> >> This patchset is to add some extended features for dpdk-proc-info. >> >> Thanks to Reshma and Stephen help to review the patchset. >> >> v9->v10: >> - Fix some comments for Rx/Tx descriptor dump. >> >> v8->v9: >> - Fixed some checkpatch warnings. >> >> v7(v4)->v8: >> - Add Acked-by: Reshma Pattan for PATCH 4,6. >> - Add Rx/Tx descriptor dump. >> - Adjust procinfo doc guide. >> >> v3->v4: >> - Add Acked-by: Reshma Pattan for PATCH 1,2,3,5,7. >> - Rename show-module-info to show-module-eeprom to make more clear. >> >> v2->v3: Fix some comments from Stephen. >> - Use --version option for DPDK version. >> - Add --firmware-version option to show firmware. >> - Use errors on stderr, not stdout. >> - Delete some unnecessary code. >> >> v1->v2: Fix some comments from Reshma. >> >> Dongdong Liu (4): >> app/procinfo: add firmware version dump >> app/procinfo: fix some wrong doxygen syntax >> app/procinfo: support descriptor dump >> doc: add some extended features in procinfo guide >> >> Jie Hai (1): >> app/procinfo: add dump of Rx/Tx burst mode >> >> Min Hu (Connor) (3): >> app/procinfo: add dpdk version dump >> app/procinfo: add RSS RETA dump >> app/procinfo: add module eeprom info dump >> >> app/proc-info/main.c | 324 ++++++++++++++++++++++++++++++--- >> doc/guides/tools/proc_info.rst | 36 +++- >> 2 files changed, 336 insertions(+), 24 deletions(-) > > The last patch was a mix of various changes in the documentation. > Please make sure to update the documentation as part of the code > changes, in the future. > And separate fixes with proper Fixes: tag from other changes. Thanks for pointing this and helping to fix. > > Series applied, thanks. Many thanks for the work. Thanks, Dongdong. >