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 9576FB3A5 for ; Wed, 17 Sep 2014 16:16:39 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 17 Sep 2014 07:22:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,540,1406617200"; d="scan'208";a="600981212" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 17 Sep 2014 07:22:13 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s8HEMBBQ028196; Wed, 17 Sep 2014 15:22:12 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id s8HEMBfA013963; Wed, 17 Sep 2014 15:22:11 +0100 Received: (from pwodkowx@localhost) by sivswdev01.ir.intel.com with id s8HEMBgM013955; Wed, 17 Sep 2014 15:22:11 +0100 From: Pawel Wodkowski To: dev@dpdk.org Date: Wed, 17 Sep 2014 15:21:51 +0100 Message-Id: <1410963713-13837-1-git-send-email-pawelx.wodkowski@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH 0/2] bond: add mode 4 support 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, 17 Sep 2014 14:16:40 -0000 This patch set adds support of mode 4 to link bonding pmd. It also introduce some minor changes to the orginal pmd driver to easer integrate mode 4. This patchset depend on Declan Doherty patch set: http://dpdk.org/ml/archives/dev/2014-September/005069.html Pawel Wodkowski (2): bond: Extract common code to separate functions bond: Add mode4 (802.3AX) lib/librte_ether/rte_ether.h | 1 + lib/librte_pmd_bond/Makefile | 1 + lib/librte_pmd_bond/rte_eth_bond.h | 4 + lib/librte_pmd_bond/rte_eth_bond_8023ad.c | 1064 ++++++++++++++++++++++++++++ lib/librte_pmd_bond/rte_eth_bond_8023ad.h | 411 +++++++++++ lib/librte_pmd_bond/rte_eth_bond_api.c | 79 ++- lib/librte_pmd_bond/rte_eth_bond_args.c | 1 + lib/librte_pmd_bond/rte_eth_bond_pmd.c | 224 +++++- lib/librte_pmd_bond/rte_eth_bond_private.h | 37 +- 9 files changed, 1781 insertions(+), 41 deletions(-) create mode 100644 lib/librte_pmd_bond/rte_eth_bond_8023ad.c create mode 100644 lib/librte_pmd_bond/rte_eth_bond_8023ad.h -- 1.7.9.5