From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 51C8DB3B5 for ; Thu, 25 Sep 2014 09:48:07 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 25 Sep 2014 00:45:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="391361773" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by FMSMGA003.fm.intel.com with ESMTP; 25 Sep 2014 00:48:25 -0700 Received: from fmsmsx115.amr.corp.intel.com (10.18.116.19) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 25 Sep 2014 00:54:23 -0700 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx115.amr.corp.intel.com (10.18.116.19) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 25 Sep 2014 00:54:23 -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; Thu, 25 Sep 2014 15:54:21 +0800 From: "Zhang, Helin" To: "Wu, Jingjing" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH 0/4] support control packet filter on Fortville Thread-Index: AQHP2I5YlimDn5Grg02NCQ5Su0PKrJwRen9w Date: Thu, 25 Sep 2014 07:54:20 +0000 Message-ID: References: <1411628369-29532-1-git-send-email-jingjing.wu@intel.com> In-Reply-To: <1411628369-29532-1-git-send-email-jingjing.wu@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/4] support control packet filter 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: Thu, 25 Sep 2014 07:48:10 -0000 Reviewed-by: Helin Zhang Great to have these patches! > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jingjing Wu > Sent: Thursday, September 25, 2014 2:59 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 0/4] support control packet filter on Fortvill= e >=20 > The patch set enables control packet filter on Fortville. > Control packet filter can assign packet to specific destination by filter= ing with > mac address and ethertype or only ethertype. >=20 > It mainly includes: > - Use new filter mechanism discussed at > http://dpdk.org/ml/archives/dev/2014-September/005179.html. > - control packet filter implementation in i40e pmd driver >=20 > jingjing.wu (4): > new filter APIs definition > define CTRL_PKT filter type and its structure > ctrl_pkt filter implementation in i40e pmd driver > add commands for control packet filter >=20 > app/test-pmd/cmdline.c | 149 > +++++++++++++++++++++++++++++++++++ > lib/librte_ether/Makefile | 1 + > lib/librte_ether/rte_eth_ctrl.h | 102 ++++++++++++++++++++++++ > lib/librte_ether/rte_ethdev.c | 32 ++++++++ > lib/librte_ether/rte_ethdev.h | 44 +++++++++++ > lib/librte_pmd_i40e/i40e_ethdev.c | 161 > ++++++++++++++++++++++++++++++++++++++ > 6 files changed, 489 insertions(+) > create mode 100644 lib/librte_ether/rte_eth_ctrl.h >=20 > -- > 1.8.1.4