From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 2E28168B8 for ; Wed, 8 Oct 2014 10:42:57 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 08 Oct 2014 01:47:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,676,1406617200"; d="scan'208";a="615032149" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga002.jf.intel.com with ESMTP; 08 Oct 2014 01:49:49 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.195.1; Wed, 8 Oct 2014 01:49:49 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.195.1; Wed, 8 Oct 2014 01:49:49 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.230]) by shsmsx102.ccr.corp.intel.com ([169.254.2.192]) with mapi id 14.03.0195.001; Wed, 8 Oct 2014 16:49:48 +0800 From: "Jiajia, SunX" To: "Doherty, Declan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v4 0/8] link bonding Thread-Index: AQHP3JUrrDZPLMrP7U2gB5UK0dn915wl7qNA Date: Wed, 8 Oct 2014 08:49:47 +0000 Message-ID: References: <1408456313-28812-1-git-send-email-declan.doherty@intel.com> <1412071079-7355-1-git-send-email-declan.doherty@intel.com> In-Reply-To: <1412071079-7355-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 v4 0/8] 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: Wed, 08 Oct 2014 08:42:57 -0000 Tested-by: Jiajia, SunX This patch has been verified on FC20 with Niantic. The test environment detail information as the following: CPU: Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz OS: Linux 3.11.10-301.fc20.x86_64 =20 GCC: 4.8.2 NIC: Niantic. > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty > Sent: Tuesday, September 30, 2014 5:58 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v4 0/8] link bonding >=20 > v4: > - Rebased 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. >=20 > v3 : > - Typo fix for the bond free mbufs patch. > - Rebased 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. >=20 > 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 >=20 > v1: >=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 > Declan Doherty (8): > 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 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 >=20 > app/test-pmd/cmdline.c | 65 +- > 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 | 3342 ++++++++++++++------ > -------- > 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 | 319 ++- > lib/librte_pmd_bond/rte_eth_bond_args.c | 30 +- > lib/librte_pmd_bond/rte_eth_bond_pmd.c | 550 +++-- > lib/librte_pmd_bond/rte_eth_bond_private.h | 71 +- > 14 files changed, 2692 insertions(+), 1958 deletions(-) >=20 > -- > 1.7.12.2