From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jingjing Wu Subject: [PATCH 0/4] support control packet filter on Fortville Date: Thu, 25 Sep 2014 14:59:25 +0800 Message-ID: <1411628369-29532-1-git-send-email-jingjing.wu@intel.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 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