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 887E77E74 for ; Mon, 13 Oct 2014 04:20:36 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 12 Oct 2014 19:28:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,707,1406617200"; d="scan'208";a="613394448" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga002.fm.intel.com with ESMTP; 12 Oct 2014 19:28:12 -0700 Received: from fmsmsx156.amr.corp.intel.com (10.18.116.74) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.195.1; Sun, 12 Oct 2014 19:28:12 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by fmsmsx156.amr.corp.intel.com (10.18.116.74) with Microsoft SMTP Server (TLS) id 14.3.195.1; Sun, 12 Oct 2014 19:28:11 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.203]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.204]) with mapi id 14.03.0195.001; Mon, 13 Oct 2014 10:28:10 +0800 From: "Liu, Jijiang" To: "thomas.monjalon@6wind.com" Thread-Topic: [dpdk-dev] [PATCH 0/5]support filter of unicast and multicast MAC address for VF on Fortville Thread-Index: Ac/YmSsG/b8ZgTHhRn2GkDjgj6bthQN894vw Date: Mon, 13 Oct 2014 02:28:09 +0000 Message-ID: <1ED644BD7E0A5F4091CF203DAFB8E4CC01D764EF@SHSMSX101.ccr.corp.intel.com> References: <86228AFD5BCD8E4EBFD2B90117B5E81E10CE0FA5@SHSMSX103.ccr.corp.intel.com> In-Reply-To: <86228AFD5BCD8E4EBFD2B90117B5E81E10CE0FA5@SHSMSX103.ccr.corp.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 Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH 0/5]support filter of unicast and multicast MAC address for VF on Fortville 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, 13 Oct 2014 02:20:37 -0000 Hi Thomas, Any comments on this patch set? Thanks Jijiang Liu > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Liu, Yong > Sent: Thursday, September 25, 2014 4:18 PM > To: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/5]support filter of unicast and multicas= t MAC > address for VF on Fortville >=20 > Tested-by: Liu Yong >=20 > This patch set has been tested by Intel. > Please see information as the following: >=20 > Host: > OS : Fedora 20 x86_64 > Kernel : 3.11.10-301 > GCC : 4.8.3 > CPU : Intel Xeon CPU E5-2680 v2 @ 2.80GHz > NIC : 2*40G (8086:1583) > Qemu : 1.6.2 > libvirt : 1.1.3 > Guest: > OS : Fedora 20 x86_64 > Kernel : 3.11.10-301 > GCC : 4.8.3 >=20 > We verified perfect and hash match filter of unicast and multicast MAC ad= dress > for VF work normally on FVL. >=20 > > -----Original Message----- > > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jijiang Liu > > Sent: Tuesday, September 23, 2014 11:30 AM > > To: dev@dpdk.org > > Subject: [dpdk-dev] [PATCH 0/5]support filter of unicast and multicast > > MAC address for VF on Fortville > > > > The patch set enhances MACVLAN filter configurability and supports > > perfect and hash match filter of unicast and multicast MAC address for > > VF on Fortville. > > > > It mainly includes: > > - Use new filter mechanism discussed at > > http://dpdk.org/ml/archives/dev/2014-September/005179.html. > > - Enhance MACVLAN filter to be configurable. Now the following > > options are > > configurable: > > 1. Perfect match of MAC address > > 2. Perfect match of MAC address and VLAN ID > > 3. Hash match of MAC address > > 4. Hash match of MAC address and perfect match of VLAN ID > > 5. To Queue: use MAC and VLAN to point to a queue > > - Support perfect and hash match of unicast and multicast MAC address > > for VF for i40e > > > > > > jijiangl (5): > > Use new filter framework > > Add new definations for MACVLAN filter enhancement in rte_eth_ctrl.h > file > > Change parameters of MAC/VLAN filter to be configurable > > Add VF MACVLAN filter handle for i40e > > Test VF MACVLAN filter for i40e > > > > app/test-pmd/cmdline.c | 115 +++++++++++++- > > lib/librte_ether/Makefile | 1 + > > lib/librte_ether/rte_eth_ctrl.h | 104 ++++++++++++ > > lib/librte_ether/rte_ethdev.c | 33 ++++ > > lib/librte_ether/rte_ethdev.h | 48 ++++++- > > lib/librte_pmd_i40e/i40e_ethdev.c | 321 > > ++++++++++++++++++++++++++++++++----- > > lib/librte_pmd_i40e/i40e_ethdev.h | 18 ++- > > lib/librte_pmd_i40e/i40e_pf.c | 7 +- > > 8 files changed, 601 insertions(+), 46 deletions(-) create mode > > 100644 lib/librte_ether/rte_eth_ctrl.h > > > > -- > > 1.7.7.6