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 C94CAA0547; Wed, 1 Jun 2022 20:49:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AD10540689; Wed, 1 Jun 2022 20:49:26 +0200 (CEST) Received: from mail-108-mta105.mxroute.com (mail-108-mta105.mxroute.com [136.175.108.105]) by mails.dpdk.org (Postfix) with ESMTP id 2E0044003F for ; Wed, 1 Jun 2022 20:49:25 +0200 (CEST) Received: from filter006.mxroute.com ([140.82.40.27] 140.82.40.27.vultrusercontent.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta105.mxroute.com (ZoneMTA) with ESMTPSA id 1812099d102000c327.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Wed, 01 Jun 2022 18:49:20 +0000 X-Zone-Loop: c3eb537d2c8b351c84ac98449140b875734920ee6198 X-Originating-IP: [140.82.40.27] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Type:MIME-Version:Message-ID:In-reply-to:Date:Subject:Cc:To: From:References:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=NlmDJOBSHuVtqVC0GjKTUCeSAYmJlN7nw0Nqs68mUmo=; b=kNnHlWehysznRdYOfgRX8Q7KGe UwR4+LlO9khgZf/HJ3SfCfLOVaIeIN0nPdaQ+2dxF1o7z72kzW+HRak3olnjzbmJglEHiNufJPp3X Fl4iTl2+F6MtDXyZbTBBxYo4XB5QtAbdcnE3NJkOZE6uxztcC+fq0MuznY+xn8ZEUpvg/ry0sNKMJ K1c5ywuuMBMOqhBZ5Eb1zeulIiZ+UGksyrfy4F4ifVSbVqg6zDS5nA17n7F5wQcUi1YSKqwX0fsB1 um4/RVwBmKOWDNPce55lZF9Q9T7rglRxuKJx8RXLoaeDjdfCUCYtan/6I4CTXSweH3kROudk7aQor tpnpe0DA==; References: <20220527023351.40577-1-humin29@huawei.com> <20220601074930.10313-1-humin29@huawei.com> <40b88110-1474-9175-46a1-3d305126465e@oktetlabs.ru> User-agent: mu4e 1.6.10; emacs 27.1 From: Ray Kinsella To: Andrew Rybchenko Cc: "Min Hu (Connor)" , dev@dpdk.org, Thomas Monjalon , Ferruh Yigit , Stephen Hemminger Subject: Re: [PATCH v3 0/4] support HW Rx/Tx descriptor dump Date: Wed, 01 Jun 2022 19:48:52 +0100 In-reply-to: <40b88110-1474-9175-46a1-3d305126465e@oktetlabs.ru> Message-ID: <87mtewgqxe.fsf@mdr78.vserver.site> MIME-Version: 1.0 Content-Type: text/plain X-AuthUser: mdr@ashroe.eu 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 Andrew Rybchenko writes: > Again, please, add maintainers using --cc-cmd or --to-cmd to patches. > Also, don't forget to keep in Cc participants of the discussion. And you can add my Acked-by to 1/4. > On 6/1/22 10:49, Min Hu (Connor) wrote: >> This patch set support HW Rx/Tx descriptor dump by using procinfo tool. >> Min Hu (Connor) (4): >> ethdev: introduce ethdev HW desc dump PI >> net/hns3: rename hns3 dump files >> net/hns3: support Rx/Tx bd dump >> app/procinfo: support descriptor dump >> app/proc-info/main.c | 81 +++++++++++++++++++ >> doc/guides/rel_notes/release_22_07.rst | 7 ++ >> .../hns3/{hns3_ethdev_dump.c => hns3_dump.c} | 66 ++++++++++++++- >> drivers/net/hns3/hns3_dump.h | 17 ++++ >> drivers/net/hns3/hns3_ethdev.c | 3 + >> drivers/net/hns3/hns3_ethdev.h | 1 - >> drivers/net/hns3/hns3_ethdev_vf.c | 3 + >> drivers/net/hns3/meson.build | 2 +- >> lib/ethdev/ethdev_driver.h | 42 ++++++++++ >> lib/ethdev/rte_ethdev.c | 44 ++++++++++ >> lib/ethdev/rte_ethdev.h | 44 ++++++++++ >> lib/ethdev/version.map | 2 + >> 12 files changed, 309 insertions(+), 3 deletions(-) >> rename drivers/net/hns3/{hns3_ethdev_dump.c => hns3_dump.c} (93%) >> create mode 100644 drivers/net/hns3/hns3_dump.h >> --- >> v3: >> * fix desc id handling. >> v2: >> * add 'const' for ethdev. -- Regards, Ray K