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 12A2A590C for ; Fri, 22 Aug 2014 09:38:14 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 22 Aug 2014 00:41:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,378,1406617200"; d="scan'208";a="580288846" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga001.fm.intel.com with ESMTP; 22 Aug 2014 00:41:54 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 22 Aug 2014 00:41:53 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.17]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.174]) with mapi id 14.03.0195.001; Fri, 22 Aug 2014 15:41:52 +0800 From: "Jiajia, SunX" To: "Doherty, Declan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/6] link bonding Thread-Index: AQHPu7TOpxHEUqoCD0mTrJk1/rrO8JvcNtaQ Date: Fri, 22 Aug 2014 07:41:51 +0000 Message-ID: References: <1408456313-28812-1-git-send-email-declan.doherty@intel.com> In-Reply-To: <1408456313-28812-1-git-send-email-declan.doherty@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/6] 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: Fri, 22 Aug 2014 07:38:15 -0000 Tested-by: Jiajia, SunX < sunx.jiajia@intel.com> These patches have be verified, and are ready to integrate into DPDK.org. There are 18 test cases in this feature now. All cases are passed. Please s= ee the test result as following:=20 active_backup_all_slave_down PASSED active_backup_change_primary PASSED active_backup_one_slave_down PASSED active_backup_rx_tx PASSED bonded_mac_address PASSED broadcast_rx_tx PASSED broadcast_tx_all_slave_down PASSED broadcast_tx_one_slave_down PASSED create_bonded_devices_and_slaves PASSED device_promiscuous_mode PASSED round_robin_all_slave_down PASSED round_robin_one_slave_down PASSED round_robin_rx_tx PASSED xor_l34_forward PASSED xor_rx PASSED xor_tx PASSED xor_tx_all_slave_down PASSED xor_tx_one_slave_down PASSED Test environment: Fedora 20, 3.11.10-301.fc20.x86_64, GCC 4.8.2, Intel Xeon= processor E5-2680 v2, with Intel Niantic 82599. > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty > Sent: Tuesday, August 19, 2014 9:52 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 0/6] link bonding >=20 > 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. >=20 >=20 > Declan Doherty (6): > 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 > test app: adding support for generating variable sized packets > testpmd: adding parameter to reconfig method to set socket_id when > adding new port to portlist >=20 > app/test-pmd/cmdline.c | 2 +- > app/test-pmd/testpmd.c | 3 +- > app/test-pmd/testpmd.h | 2 +- > app/test/packet_burst_generator.c | 22 +-- > app/test/packet_burst_generator.h | 6 +- > app/test/test_link_bonding.c | 234 > ++++++++++++++++++++++++++------ > lib/librte_pmd_bond/rte_eth_bond_api.c | 4 + > lib/librte_pmd_bond/rte_eth_bond_pmd.c | 124 +++++++++++------ > 8 files changed, 295 insertions(+), 102 deletions(-)