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 8A26AA0544; Fri, 23 Sep 2022 09:44:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 65C0940156; Fri, 23 Sep 2022 09:44:58 +0200 (CEST) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id DA03040156 for ; Fri, 23 Sep 2022 09:44:56 +0200 (CEST) Received: from kwepemi500017.china.huawei.com (unknown [172.30.72.57]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4MYkcp4MBczpStk; Fri, 23 Sep 2022 15:42:02 +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; Fri, 23 Sep 2022 15:44:53 +0800 From: Dongdong Liu To: , , , , , CC: Dongdong Liu Subject: [PATCH v4 0/3] support ethdev Rx/Tx descriptor dump Date: Fri, 23 Sep 2022 15:43:13 +0800 Message-ID: <20220923074316.25077-1-liudongdong3@huawei.com> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20220527023351.40577-1-humin29@huawei.com> References: <20220527023351.40577-1-humin29@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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Support ethdev Rx/Tx descriptor dump by using procinfo tool. Note: '[PATCH v4 1/3] net/hns3: support Rx/Tx bd dump' depend on [1] applied first. Hope patchset [1] can be applied soon. [1]: [PATCH RESEND 00/13] some bugfixes and clean code for hns3 https://patches.dpdk.org/project/dpdk/list/?series=24533 v3->v4: 1. Modify the desc dump API to dump specified number of descriptors. 2. Modify the hn3 pmd implementation and procinfo part. Min Hu (Connor) (3): ethdev: introduce ethdev desc dump API net/hns3: support Rx/Tx bd dump app/procinfo: support descriptor dump app/proc-info/main.c | 80 ++++++++++++++++++++++++++ doc/guides/rel_notes/release_22_11.rst | 7 +++ drivers/net/hns3/hns3_dump.c | 80 ++++++++++++++++++++++++++ drivers/net/hns3/hns3_dump.h | 5 ++ drivers/net/hns3/hns3_ethdev.c | 2 + drivers/net/hns3/hns3_ethdev_vf.c | 2 + lib/ethdev/ethdev_driver.h | 46 +++++++++++++++ lib/ethdev/rte_ethdev.c | 52 +++++++++++++++++ lib/ethdev/rte_ethdev.h | 49 ++++++++++++++++ lib/ethdev/version.map | 2 + 10 files changed, 325 insertions(+) -- 2.22.0