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 74B9BA0545; Thu, 15 Dec 2022 11:56:57 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6277A40684; Thu, 15 Dec 2022 11:56:57 +0100 (CET) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 4BC6F40223 for ; Thu, 15 Dec 2022 11:56:55 +0100 (CET) Received: from kwepemm600004.china.huawei.com (unknown [172.30.72.53]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4NXq0971NLzmWZ9; Thu, 15 Dec 2022 18:55:53 +0800 (CST) 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.34; Thu, 15 Dec 2022 18:56:53 +0800 Message-ID: <7c73a379-3775-8138-1fcf-23731f98bb0d@huawei.com> Date: Thu, 15 Dec 2022 18:56:53 +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 v2 0/3] net/bonding: support device private dump To: "humin (Q)" , Chengwen Feng , , CC: , References: <20221205081051.25905-1-fengchengwen@huawei.com> <20221214061325.20272-1-fengchengwen@huawei.com> <83aae131-14f0-72b8-4dac-792abc6bb52f@huawei.com> From: "lihuisong (C)" In-Reply-To: <83aae131-14f0-72b8-4dac-792abc6bb52f@huawei.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.103.231] X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) 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 在 2022/12/14 17:55, humin (Q) 写道: > Acked-by:Min Hu (Connor) Indeed, it is better to move them to bonding PMD. lgtm Series-acked-by: Huisong Li > > 在 2022/12/14 14:13, Chengwen Feng 写道: >> This patchset adds device private dump for bonding PMD, and use >> rte_eth_dev_priv_dump API to implement testpmd show bonding command. >> >> Chengwen Feng (3): >>    net/bonding: support private dump ops >>    net/bonding: support dump LACP info >>    net/bonding: use dump API to impl show bonding cmd >> >> --- >> v2: >> * address Min Hu's comment >> * use rte_eth_dev_priv_dump API to implement testpmd show bonding >>    command. >> >>   .../link_bonding_poll_mode_drv_lib.rst        |  13 +- >>   drivers/net/bonding/bonding_testpmd.c         | 281 +----------------- >>   drivers/net/bonding/rte_eth_bond_pmd.c        | 244 ++++++++++++++- >>   3 files changed, 249 insertions(+), 289 deletions(-) >> > > .