mbox

[v6,0/2] support metadata as flow rule criteria

Message ID 1540131768-32824-1-git-send-email-dekelp@mellanox.com (mailing list archive)
Headers

Message

Dekel Peled Oct. 21, 2018, 2:22 p.m. UTC
  This series implements the match-metadata feature described in [1].

[1] "[RFC v2] ethdev: support metadata as flow rule criteria"
	http://mails.dpdk.org/archives/dev/2018-August/110194.html
	
---	
v6:
Apply code review comments:
* Squash testpmd patches into single patch.
* Update documentation.
* testpmd support exact metadata value only ('is' option).

v5:
Apply code review comments:
* Update mbuf comments for clarity .
* Update feature description in programmer guide.

v4:
Apply code review comments:
* Change location of metadata item in mbuf.
* Update debug commands.

v3:
* Add link to RFC email.
* Add cover letter subject line.

v2:
* Fix some checkpatch coding style issues (wrongly sent).
---	

Dekel Peled (2):
  ethdev: support metadata as flow rule criteria
  app/testpmd: support metadata as flow rule item

 app/test-pmd/cmdline.c                      | 111 +++++++++++++++++++++++++++-
 app/test-pmd/cmdline_flow.c                 |  28 +++++++
 app/test-pmd/testpmd.c                      |   5 ++
 app/test-pmd/testpmd.h                      |   2 +
 app/test-pmd/txonly.c                       |   9 +++
 doc/guides/prog_guide/rte_flow.rst          |  21 ++++++
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |  21 +++++-
 lib/librte_ethdev/rte_ethdev.c              |   1 +
 lib/librte_ethdev/rte_ethdev.h              |   5 ++
 lib/librte_ethdev/rte_flow.c                |   1 +
 lib/librte_ethdev/rte_flow.h                |  24 ++++++
 lib/librte_mbuf/rte_mbuf.c                  |   2 +
 lib/librte_mbuf/rte_mbuf.h                  |  68 +++++++++++------
 13 files changed, 271 insertions(+), 27 deletions(-)