dev.dpdk.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/4] NIC filters support for generic filter
@ 2014-05-24  1:37 Jingjing Wu
       [not found] ` <1400895442-32433-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 22+ messages in thread
From: Jingjing Wu @ 2014-05-24  1:37 UTC (permalink / raw)
  To: dev-VfR2kkLFssw

--- the v2 patchset changes:
--- add NIC filter support for 82576
--- rework for code rule warning if using git apply to apply patch

A generic filter mechanism for handling special packet is required.
It will allow filters to be set in HW when available so that specific
packet may be filtered by NICs to specific descriptor queues for
processing. Currently only Flow Director for Intel's 10GbE 82599
devices is available. Other types of filter are not support.
NIC filters list below are implemented in this patchset:
  ethertype filter, syn filter, 2tuple filter and flex filter for 82580 and i350
  ethertype filter, syn filter, 5tuple filter for 82576 
  ethertype filter, syn filter and 5tuple filter for 82599


jingjing.wu (4):
  add ethdev APIs for NIC filters of generic filter
  add igb NIC filters of generic filter feature
  add ixgbe NIC filters of generic filter feature
  add commands in testpmd for NIC filters

 app/test-pmd/cmdline.c              | 907 +++++++++++++++++++++++++++++++++++-
 app/test-pmd/config.c               | 145 ++++++
 app/test-pmd/testpmd.h              |   6 +
 lib/librte_ether/rte_ethdev.c       | 281 +++++++++++
 lib/librte_ether/rte_ethdev.h       | 421 ++++++++++++++++-
 lib/librte_pmd_e1000/e1000_ethdev.h |  53 +++
 lib/librte_pmd_e1000/igb_ethdev.c   | 745 +++++++++++++++++++++++++++++
 lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 409 ++++++++++++++++
 lib/librte_pmd_ixgbe/ixgbe_ethdev.h |  33 ++
 9 files changed, 2998 insertions(+), 2 deletions(-)

-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2014-06-14  9:00 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-24  1:37 [PATCH v2 0/4] NIC filters support for generic filter Jingjing Wu
     [not found] ` <1400895442-32433-1-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-05-24  1:37   ` [PATCH v2 1/4]ethdev: add ethdev APIs for NIC filters of " Jingjing Wu
     [not found]     ` <1400895442-32433-2-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-05-27  7:57       ` Ming, LiX
     [not found]         ` <0976FC66838DDE4585886952506C9436FBA620-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-05-27  9:18           ` Thomas Monjalon
2014-05-24  1:37   ` [PATCH v2 2/4]e1000: add igb NIC filters of generic filter feature Jingjing Wu
     [not found]     ` <1400895442-32433-3-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-05-27  7:59       ` Ming, LiX
2014-05-24  1:37   ` [PATCH v2 3/4]ixgbe: add ixgbe " Jingjing Wu
     [not found]     ` <1400895442-32433-4-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-05-27  8:00       ` Ming, LiX
2014-05-24  1:37   ` [PATCH v2 4/4]app/test-pmd: add commands in testpmd for NIC filters Jingjing Wu
     [not found]     ` <1400895442-32433-5-git-send-email-jingjing.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2014-05-27  8:00       ` Ming, LiX
2014-05-27 23:21   ` [PATCH v2 0/4] NIC filters support for generic filter Thomas Monjalon
2014-05-28  0:53     ` Wu, Jingjing
     [not found]       ` <9BB6961774997848B5B42BEC655768F8A789C6-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-05-28  1:12         ` Wu, Jingjing
     [not found]           ` <9BB6961774997848B5B42BEC655768F8A78A07-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-06-11 15:45             ` Thomas Monjalon
2014-06-12  8:08               ` Wu, Jingjing
     [not found]                 ` <9BB6961774997848B5B42BEC655768F8A8BBB5-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-06-12 15:36                   ` Thomas Monjalon
2014-06-13 11:51                     ` Vladimir Medvedkin
     [not found]                       ` <CANDrEH=8SeES7N5eybWaCvJdE0JkZpq-DuxSVYdXAXbm=Wf-Ww-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-06-13 14:12                         ` Wu, Jingjing
     [not found]                           ` <9BB6961774997848B5B42BEC655768F8A8D402-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-06-13 16:19                             ` Vladimir Medvedkin
     [not found]                               ` <CANDrEHkPvqmkA6vUukApzTfwJAWz6_R8Lf+RBcJq1J6UNq0uMw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-06-14  1:00                                 ` Wu, Jingjing
     [not found]                                   ` <9BB6961774997848B5B42BEC655768F8A8D780-0J0gbvR4kTg/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2014-06-14  9:00                                     ` Vladimir Medvedkin
2014-06-04  4:16   ` Cao, Waterman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).