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 9A11CB4F0 for ; Fri, 13 Feb 2015 17:10:17 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 13 Feb 2015 08:02:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,571,1418112000"; d="scan'208";a="685358182" Received: from dwdohert-dpdk-fedora-20.ir.intel.com ([163.33.213.98]) by orsmga002.jf.intel.com with ESMTP; 13 Feb 2015 08:10:00 -0800 Message-ID: <54DE2285.8000507@intel.com> Date: Fri, 13 Feb 2015 16:12:53 +0000 From: Declan Doherty User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Michal Jastrzebski , dev@dpdk.org References: <1423840570-6452-1-git-send-email-michalx.k.jastrzebski@intel.com> In-Reply-To: <1423840570-6452-1-git-send-email-michalx.k.jastrzebski@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 0/6] Link Bonding mode 6 support (ALB) 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: Fri, 13 Feb 2015 16:10:18 -0000 On 13/02/15 15:16, Michal Jastrzebski wrote: > This patchset add support for link bonding mode 6. > Additionally it changes an arp_header structure definition. > Also a basic example is introduced. Using this example, > Bonding will configure each client ARP table, > that packets from each client will be received on different slave, > mode 6 uses round-robin policy to assign slave to client IP address. > > Michal Jastrzebski (6): > net: changed arp_hdr struct declaration > bond: add link bonding mode 6 implementation > bond: add debug info for mode 6 link bonding > bond: add example application for link bonding mode 6 > bond: modify TLB unit tests > bond: add unit tests for link bonding mode 6. > > app/test-pmd/icmpecho.c | 27 +- > app/test/packet_burst_generator.c | 41 +- > app/test/packet_burst_generator.h | 11 +- > app/test/test_link_bonding.c | 422 ++++++++++++++- > app/test/test_pmd_perf.c | 3 +- > app/test/virtual_pmd.c | 103 ++-- > app/test/virtual_pmd.h | 5 +- > config/common_linuxapp | 3 +- > examples/bond/Makefile | 57 ++ > examples/bond/main.c | 792 ++++++++++++++++++++++++++++ > examples/bond/main.h | 46 ++ > lib/librte_net/rte_arp.h | 13 +- > lib/librte_pmd_bond/Makefile | 1 + > lib/librte_pmd_bond/rte_eth_bond.h | 11 +- > lib/librte_pmd_bond/rte_eth_bond_alb.c | 256 +++++++++ > lib/librte_pmd_bond/rte_eth_bond_alb.h | 109 ++++ > lib/librte_pmd_bond/rte_eth_bond_api.c | 28 +- > lib/librte_pmd_bond/rte_eth_bond_args.c | 3 +- > lib/librte_pmd_bond/rte_eth_bond_pmd.c | 460 ++++++++++++++-- > lib/librte_pmd_bond/rte_eth_bond_private.h | 12 + > 20 files changed, 2257 insertions(+), 146 deletions(-) > create mode 100644 examples/bond/Makefile > create mode 100644 examples/bond/main.c > create mode 100644 examples/bond/main.h > create mode 100644 lib/librte_pmd_bond/rte_eth_bond_alb.c > create mode 100644 lib/librte_pmd_bond/rte_eth_bond_alb.h > Series Acked-by: Declan Doherty