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 A32157E85 for ; Mon, 24 Nov 2014 13:17:00 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 24 Nov 2014 04:27:46 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="420762699" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by FMSMGA003.fm.intel.com with ESMTP; 24 Nov 2014 04:18:03 -0800 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 sAOCRilA004395; Mon, 24 Nov 2014 12:27:44 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id sAOCRix4024144; Mon, 24 Nov 2014 12:27:44 GMT Received: (from dwdohert@localhost) by sivswdev02.ir.intel.com with id sAOCRh6q024140; Mon, 24 Nov 2014 12:27:43 GMT From: Declan Doherty To: dev@dpdk.org Date: Mon, 24 Nov 2014 12:27:27 +0000 Message-Id: <1416832054-24086-1-git-send-email-declan.doherty@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1415362978-6306-1-git-send-email-declan.doherty@intel.com> References: <1415362978-6306-1-git-send-email-declan.doherty@intel.com> Subject: [dpdk-dev] [PATCH v7 0/7] 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: Mon, 24 Nov 2014 12:17:01 -0000 v7: - Fixes for checkpatch issues and typo fixes - Removed patch "test app: adding support for generating variable sized" as this was already committed in commit aca4360340f169dcc11b1a9be955b44de8b9f6eb v6: - Re-based to dpdk.org addressing associated issues for MBUF_REFCNT - Added details to testpmd user guide for new command to set link status polling interval. v5: - Fix uninitialized variable in broadcast_tx_burst function which caused a build error in 32-bit build - Address unit test issue which is exposed by new test in mode 4/5 patch sets v4: - Re-based to account for changes in master. - Fix for rte_eth_bond_slaves_get() introduced in v3 patch set - Addressed issue around disabling/enabling link status polling around adding/ removing slaves devices. v3 : - Typo fix for the bond free mbufs patch. - Re-based to account for changes in the mbuf patches. - Add support for slave devices which don't support link status interrupts - Tidy up the link bonding unit test so that all tests use the new test macros. v2 : Addresses issues with the logic around the handling of fail transmissions. In this version all modes behave in a manner similar to a standard PMD, returning the number of successfully transmitted mbufs and with the failing mbufs at the end of bufs array for freeing / retransmission by the application software v1: This patch set adds support for link status interrupt in the link bonding pmd. It also contains some patches to tidy up the code structure and to of the link bonding code and to fix bugs relating to transmission failures in the under lying slave pmd which could lead to leaked mbufs. Declan Doherty (7): bond: link status interrupt support bond: removing switch statement from rx burst method bond: fix naming inconsistency in tx_burst_round_robin bond: free mbufs if transmission fails in bonding tx_burst functions 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 | 65 +- app/test-pmd/testpmd.c | 3 +- app/test-pmd/testpmd.h | 2 +- app/test/packet_burst_generator.c | 11 +- app/test/packet_burst_generator.h | 15 +- app/test/test.h | 7 +- app/test/test_link_bonding.c | 3371 ++++++++++++++------------- app/test/virtual_pmd.c | 95 +- app/test/virtual_pmd.h | 53 +- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 19 + lib/librte_pmd_bond/rte_eth_bond.h | 80 + lib/librte_pmd_bond/rte_eth_bond_api.c | 319 ++- lib/librte_pmd_bond/rte_eth_bond_args.c | 28 +- lib/librte_pmd_bond/rte_eth_bond_pmd.c | 553 ++++-- lib/librte_pmd_bond/rte_eth_bond_private.h | 71 +- 15 files changed, 2719 insertions(+), 1973 deletions(-) -- 1.7.4.1