From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 85373ADC4 for ; Thu, 25 Sep 2014 08:53:18 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by fmsmga102.fm.intel.com with ESMTP; 24 Sep 2014 23:59:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,595,1406617200"; d="scan'208";a="479885676" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by azsmga001.ch.intel.com with ESMTP; 24 Sep 2014 23:59:32 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id s8P6xVB9029019 for ; Thu, 25 Sep 2014 14:59:31 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s8P6xTfC029567 for ; Thu, 25 Sep 2014 14:59:31 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id s8P6xTh0029563 for dev@dpdk.org; Thu, 25 Sep 2014 14:59:29 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Thu, 25 Sep 2014 14:59:25 +0800 Message-Id: <1411628369-29532-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [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 06:53:19 -0000 The patch set enables control packet filter on Fortville. Control packet filter can assign packet to specific destination by filtering with mac address and ethertype or only ethertype. 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 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 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 -- 1.8.1.4