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 310FEA0351; Wed, 22 Dec 2021 04:27:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B5B9740040; Wed, 22 Dec 2021 04:27:56 +0100 (CET) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 125DD4003C for ; Wed, 22 Dec 2021 04:27:55 +0100 (CET) Received: from dggeme756-chm.china.huawei.com (unknown [172.30.72.54]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4JJf0169zxzcc6t; Wed, 22 Dec 2021 11:27:29 +0800 (CST) Received: from [10.67.103.128] (10.67.103.128) by dggeme756-chm.china.huawei.com (10.3.19.102) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.20; Wed, 22 Dec 2021 11:27:52 +0800 Subject: Re: [PATCH v2 0/8] net/bonding: fixes and LACP short timeout To: Robert Sanford , CC: , References: <1639592401-56845-2-git-send-email-rsanford@akamai.com> <1640116650-3475-1-git-send-email-rsanford@akamai.com> From: "Min Hu (Connor)" Message-ID: <15f5fdef-2e0f-10b7-9d41-eff077878ba1@huawei.com> Date: Wed, 22 Dec 2021 11:27:52 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.3.1 MIME-Version: 1.0 In-Reply-To: <1640116650-3475-1-git-send-email-rsanford@akamai.com> Content-Type: text/plain; charset="gbk"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.103.128] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggeme756-chm.china.huawei.com (10.3.19.102) 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 Acked-by: Min Hu (Connor) ÔÚ 2021/12/22 3:57, Robert Sanford дµÀ: > This patchset makes the following changes to net/bonding: > - Clean up minor errors in spelling, whitespace, C++ wrappers, and > comments. > - Replace directly overwriting of slave port's rte_eth_conf by copying > it, but only updating it via rte_eth_dev_configure(). > - Make minor changes to allocation of mbuf pool and rx/tx rings. > - Add support for enabling LACP short timeout, i.e., link partner can > use fast periodic time interval between transmits. > - Include bond_8023ad and bond_alb in doxygen. > - Remove self from Timers maintainers. > - Add API stubs to net/ring PMD. > - Add LACP short timeout to tests. > > V2 changes: > - Additional typo and whitespace corrections. > - Minor changes to LACP private rings creation. > - Add net/ring API stubs patch. > - Insert extra "bond_handshake" to LACP short timeout autotest. > > Robert Sanford (8): > net/bonding: fix typos and whitespace > net/bonding: fix bonded dev configuring slave dev > net/bonding: change mbuf pool and ring creation > net/bonding: support enabling LACP short timeout > net/bonding: add bond_8023ad and bond_alb to doc > Remove self from Timers maintainers. > net/ring: add promiscuous and allmulticast API stubs > net/bonding: add LACP short timeout to tests > > MAINTAINERS | 1 - > app/test-pmd/cmdline.c | 81 +++++++++++++++++++++- > app/test/test_link_bonding_mode4.c | 98 ++++++++++++++++++++++----- > doc/api/doxy-api-index.md | 2 + > drivers/net/bonding/eth_bond_8023ad_private.h | 15 ++-- > drivers/net/bonding/rte_eth_bond_8023ad.c | 58 ++++++++++------ > drivers/net/bonding/rte_eth_bond_8023ad.h | 18 +++-- > drivers/net/bonding/rte_eth_bond_pmd.c | 43 ++++++------ > drivers/net/ring/rte_eth_ring.c | 28 ++++++++ > 9 files changed, 272 insertions(+), 72 deletions(-) >