[dpdk-dev] [PATCH v2 0/2] Add example l3fwd-regex

guyk at marvell.com guyk at marvell.com
Wed Sep 9 14:08:51 CEST 2020


From: Guy Kaneti <guyk at marvell.com>

The L3 Forwarding with Regex application is a simple example of
packet processing using DPDK Regex framework.
The application performs L3 LPM based forwarding while using
Regex framework for pre-filtering decision.

v2:
* Rebase.
* Add release notes.
* fix spelling mistake
* fix build error

Guy Kaneti (2):
  examples/l3fwd-regex: add regex based l3fwd
  doc: add l3fwd-regex application user guide

 MAINTAINERS                                   |    3 +
 doc/guides/rel_notes/release_20_11.rst        |    4 +
 doc/guides/sample_app_ug/index.rst            |    1 +
 doc/guides/sample_app_ug/intro.rst            |    4 +
 doc/guides/sample_app_ug/l3_forward_regex.rst |  235 ++++
 examples/l3fwd-regex/l3fwd.h                  |  207 +++
 examples/l3fwd-regex/l3fwd_lpm.c              |  484 +++++++
 examples/l3fwd-regex/l3fwd_regex.c            |  487 +++++++
 examples/l3fwd-regex/l3fwd_regex.h            |   38 +
 examples/l3fwd-regex/main.c                   | 1117 +++++++++++++++++
 examples/l3fwd-regex/meson.build              |   10 +
 examples/meson.build                          |    2 +-
 12 files changed, 2591 insertions(+), 1 deletion(-)
 create mode 100644 doc/guides/sample_app_ug/l3_forward_regex.rst
 create mode 100644 examples/l3fwd-regex/l3fwd.h
 create mode 100644 examples/l3fwd-regex/l3fwd_lpm.c
 create mode 100644 examples/l3fwd-regex/l3fwd_regex.c
 create mode 100644 examples/l3fwd-regex/l3fwd_regex.h
 create mode 100644 examples/l3fwd-regex/main.c
 create mode 100644 examples/l3fwd-regex/meson.build

-- 
2.28.0



More information about the dev mailing list