DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCHv3 0/5] ACL library
@ 2014-06-13 11:26 Konstantin Ananyev
  2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 1/5] Add ACL library (librte_acl) into DPDK Konstantin Ananyev
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Konstantin Ananyev @ 2014-06-13 11:26 UTC (permalink / raw)
  To: dev, dev

The ACL library is used to perform an N-tuple search over a set of rules
with multiple categories and find the best match (highest priority)
for each category.
This code was previously released under a proprietary license,
but is now being released under a BSD license to allow its
integration with the rest of the Intel DPDK codebase.

Konstantin Ananyev (5):
  Add ACL library (librte_acl) into DPDK
  acl: update UT to reflect latest changes in the librte_acl
  acl: New test-acl application
  acl: New sample l3fwd-acl
  acl: add doxygen configuration and start page

v2 fixes:
* Fixed several checkpatch.pl issues
* Added doxygen related changes

v3 fixes:
* Fixed even more checkpatch.pl issues
* fix for: when all rules are wildcards rte_classify() will not work correclty

 app/Makefile                         |    1 +
 app/test-acl/Makefile                |   45 +
 app/test-acl/main.c                  | 1029 ++++++++++++++++
 app/test-acl/main.h                  |   50 +
 app/test/test_acl.c                  |  216 +++--
 config/common_linuxapp               |    6 +
 doc/doxy-api-index.md                |    3 +-
 doc/doxy-api.conf                    |    3 +-
 examples/Makefile                    |    1 +
 examples/l3fwd-acl/Makefile          |   56 +
 examples/l3fwd-acl/main.c            | 2140 ++++++++++++++++++++++++++++++++++
 examples/l3fwd-acl/main.h            |   45 +
 lib/librte_acl/Makefile              |   60 +
 lib/librte_acl/acl.h                 |  182 +++
 lib/librte_acl/acl_bld.c             | 2001 +++++++++++++++++++++++++++++++
 lib/librte_acl/acl_gen.c             |  473 ++++++++
 lib/librte_acl/acl_run.c             |  944 +++++++++++++++
 lib/librte_acl/acl_vect.h            |  132 +++
 lib/librte_acl/rte_acl.c             |  413 +++++++
 lib/librte_acl/rte_acl.h             |  453 +++++++
 lib/librte_acl/rte_acl_osdep.h       |   92 ++
 lib/librte_acl/rte_acl_osdep_alone.h |  277 +++++
 lib/librte_acl/tb_mem.c              |  102 ++
 lib/librte_acl/tb_mem.h              |   73 ++
 24 files changed, 8714 insertions(+), 83 deletions(-)
 create mode 100644 app/test-acl/Makefile
 create mode 100644 app/test-acl/main.c
 create mode 100644 app/test-acl/main.h
 create mode 100644 examples/l3fwd-acl/Makefile
 create mode 100644 examples/l3fwd-acl/main.c
 create mode 100644 examples/l3fwd-acl/main.h
 create mode 100644 lib/librte_acl/Makefile
 create mode 100644 lib/librte_acl/acl.h
 create mode 100644 lib/librte_acl/acl_bld.c
 create mode 100644 lib/librte_acl/acl_gen.c
 create mode 100644 lib/librte_acl/acl_run.c
 create mode 100644 lib/librte_acl/acl_vect.h
 create mode 100644 lib/librte_acl/rte_acl.c
 create mode 100644 lib/librte_acl/rte_acl.h
 create mode 100644 lib/librte_acl/rte_acl_osdep.h
 create mode 100644 lib/librte_acl/rte_acl_osdep_alone.h
 create mode 100644 lib/librte_acl/tb_mem.c
 create mode 100644 lib/librte_acl/tb_mem.h

-- 
1.7.7.6

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

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

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-13 11:26 [dpdk-dev] [PATCHv3 0/5] ACL library Konstantin Ananyev
2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 1/5] Add ACL library (librte_acl) into DPDK Konstantin Ananyev
2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 2/5] acl: update UT to reflect latest changes in the librte_acl Konstantin Ananyev
2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 3/5] acl: New test-acl application Konstantin Ananyev
2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 4/5] acl: New sample l3fwd-acl Konstantin Ananyev
2014-06-13 11:26 ` [dpdk-dev] [PATCHv3 5/5] acl: add doxygen configuration and start page Konstantin Ananyev
2014-06-13 11:56 ` [dpdk-dev] [PATCHv3 0/5] ACL library Thomas Monjalon
2014-06-13 12:02   ` Ananyev, Konstantin
2014-06-13 23:38     ` Thomas Monjalon
2014-06-14  0:07       ` Richardson, Bruce
2014-06-14  7:55         ` Thomas Monjalon

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).