From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 55BCE5957 for ; Mon, 19 Oct 2015 18:20:03 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 19 Oct 2015 09:19:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,702,1437462000"; d="scan'208";a="797053006" Received: from unknown (HELO dwdohert-dpdk-fedora-20.ir.intel.com) ([163.33.213.96]) by orsmga001.jf.intel.com with ESMTP; 19 Oct 2015 09:19:48 -0700 To: Eric Kinzie , dev@dpdk.org References: <1445268976-27491-1-git-send-email-ehkinzie@gmail.com> From: Declan Doherty Message-ID: <562519E1.2070409@intel.com> Date: Mon, 19 Oct 2015 17:27:13 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1445268976-27491-1-git-send-email-ehkinzie@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v6 0/4] bonding corrections and additions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Oct 2015 16:20:03 -0000 On 19/10/15 16:36, Eric Kinzie wrote: > This patchset makes a couple of small corrections to the bonding driver > and introduces the ability to use an external state machine for mode > 4 operation. > > Changes in v2: > . eliminate external_sm field in 802.3ad configuration > (rte_eth_bond_8023ad_conf). > . stop bonding device before changing the periodic callback function. > start again if needed. > . remove unnecessary calls to valid_bonded_port_id(). > . do not check for NULL tx_ring. > . return error in rte_eth_bond_8023ad_ext_slowtx() if packet is not LACP. > . remove check for external sm configuration in periodic callback > . check for valid LACPDU in test application's rx callback > . add "Fixes:" tags > > Changes in v3: > . update rte_eth_bond_version.map > > Changes in v4: > . version functions that modify slowrx_cb > > Changes in v5: > . remove "__vsym" from source files and use updated symbol version macros > > Changes in v6: > . updated symbols have version 2.2 > . specify versioned local symbol names in map so they don't become exported > > Eric Kinzie (4): > bond mode 4: copy entire config structure > bond mode 4: do not ignore multicast > bond mode 4: allow external state machine > bond mode 4: tests for external state machine > > app/test/test_link_bonding_mode4.c | 217 ++++++++++++++++++- > drivers/net/bonding/Makefile | 2 +- > drivers/net/bonding/rte_eth_bond_8023ad.c | 241 ++++++++++++++++++++- > drivers/net/bonding/rte_eth_bond_8023ad.h | 44 ++++ > drivers/net/bonding/rte_eth_bond_8023ad_private.h | 28 +++ > drivers/net/bonding/rte_eth_bond_pmd.c | 1 + > drivers/net/bonding/rte_eth_bond_version.map | 10 + > 7 files changed, 529 insertions(+), 14 deletions(-) > Series Acked-by: Declan Doherty