From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 1BCC3B349 for ; Tue, 23 Sep 2014 15:16:23 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by fmsmga101.fm.intel.com with ESMTP; 23 Sep 2014 06:18:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,580,1406617200"; d="scan'208";a="479438621" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by azsmga001.ch.intel.com with ESMTP; 23 Sep 2014 06:18:18 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s8NDIHV1001200; Tue, 23 Sep 2014 14:18:17 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s8NDIGiJ031243; Tue, 23 Sep 2014 14:18:16 +0100 Received: (from dwdohert@localhost) by sivswdev02.ir.intel.com with id s8NDIGIp031235; Tue, 23 Sep 2014 14:18:16 +0100 From: Declan Doherty To: dev@dpdk.org Date: Tue, 23 Sep 2014 14:18:05 +0100 Message-Id: <1411478290-28807-1-git-send-email-declan.doherty@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1409560289-29558-5-git-send-email-declan.doherty@intel.com> References: <1409560289-29558-5-git-send-email-declan.doherty@intel.com> Subject: [dpdk-dev] [PATCH v3 0/5] link bonding 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: Tue, 23 Sep 2014 13:16:24 -0000 This patch set contains a typo fix for the bond free mbufs patch aswell as updates to the test app patch to rebase for changes in the mbuf patches . It also contains a patch to add support for slave devices which don't support link status interrupts and also a patch to tidy up the link bonding unit test so that all tests use the new test macros. Declan Doherty (5): bond: free mbufs if transmission fails in bonding tx_burst functions test app: adding support for generating variable sized packet testpmd: adding parameter to reconfig method to set socket_id when adding new port to portlist bond: lsc polling support bond: unit test test macro refactor app/test-pmd/cmdline.c | 2 +- app/test-pmd/testpmd.c | 3 +- app/test-pmd/testpmd.h | 2 +- app/test/packet_burst_generator.c | 25 +- app/test/packet_burst_generator.h | 6 +- app/test/test.h | 7 +- app/test/test_link_bonding.c | 3245 ++++++++++++++-------------- app/test/virtual_pmd.c | 97 +- app/test/virtual_pmd.h | 53 +- lib/librte_pmd_bond/rte_eth_bond.h | 80 + lib/librte_pmd_bond/rte_eth_bond_api.c | 309 ++- lib/librte_pmd_bond/rte_eth_bond_args.c | 30 +- lib/librte_pmd_bond/rte_eth_bond_pmd.c | 470 +++- lib/librte_pmd_bond/rte_eth_bond_private.h | 71 +- 14 files changed, 2450 insertions(+), 1950 deletions(-) -- 1.7.4.1