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