From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 131C85941 for ; Tue, 2 Sep 2014 15:29:10 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 02 Sep 2014 06:32:21 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,449,1406617200"; d="scan'208";a="567140690" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by orsmga001.jf.intel.com with ESMTP; 02 Sep 2014 06:32:20 -0700 Received: from irsmsx107.ger.corp.intel.com (163.33.3.99) by IRSMSX102.ger.corp.intel.com (163.33.3.155) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 2 Sep 2014 14:31:08 +0100 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.157]) by IRSMSX107.ger.corp.intel.com ([169.254.10.108]) with mapi id 14.03.0195.001; Tue, 2 Sep 2014 14:31:08 +0100 From: "De Lara Guarch, Pablo" To: "Doherty, Declan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2 0/6] link bonding Thread-Index: AQHPxb9WXGzBAoUo+0+EXd+sEUWhTpvt1s9w Date: Tue, 2 Sep 2014 13:31:07 +0000 Message-ID: References: <1408456313-28812-1-git-send-email-declan.doherty@intel.com> <1409560289-29558-1-git-send-email-declan.doherty@intel.com> In-Reply-To: <1409560289-29558-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: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 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: Tue, 02 Sep 2014 13:29:12 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty > Sent: Monday, September 01, 2014 9:31 AM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 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 > V2 addresses issues with the logic around the handling of fail transmissi= ons. > In this version all modei behave in a manner similar to a standard PMD, > returning > the number of successfully transmitted mbufs and with the failing mbufs a= t > the end of bufs array for freeing / retansmission by the application soft= ware >=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 | 620 > +++++++++++++++++++++++++++++--- > app/test/virtual_pmd.c | 80 ++++- > app/test/virtual_pmd.h | 7 + > lib/librte_pmd_bond/rte_eth_bond_api.c | 4 + > lib/librte_pmd_bond/rte_eth_bond_pmd.c | 161 ++++++--- > 10 files changed, 779 insertions(+), 128 deletions(-) Acked-by Pablo de Lara