DPDK patches and discussions
 help / color / mirror / Atom feed
From: "De Lara Guarch, Pablo" <pablo.de.lara.guarch@intel.com>
To: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCHv2 0/5] ACL library
Date: Fri, 6 Jun 2014 08:32:57 +0000	[thread overview]
Message-ID: <E115CCD9D858EF4F90C690B0DCB4D897082C8F84@IRSMSX103.ger.corp.intel.com> (raw)
In-Reply-To: <1401305210-10357-1-git-send-email-konstantin.ananyev@intel.com>

Acked-by: Pablo de Lara Guarch <pablo.de.lara.guarch@intel.com>

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Konstantin Ananyev
> Sent: Wednesday, May 28, 2014 8:27 PM
> To: dev@dpdk.org; dev@dpdk.org
> Subject: [dpdk-dev] [PATCHv2 0/5] ACL library
> 
> 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.
> 
> Note that these patch series require other patch:
> "lpm: Introduce rte_lpm_lookupx4" be already installed.
> 
> This patch series contains the following items:
> 1) librte_acl.
> 2) UT changes reflect latest changes in rte_acl library.
> 3) teat-acl: usage example and main test application for the ACL library.
>    Provides IPv4/IPv6 5-tuple classification.
> 4) l3fwd-acl: demonstrates the use of the ACL library in the DPDK application
>    to implement packet classification and L3 forwarding.
> 5) add doxygen configuration and start page
> 
> v2 fixes:
> * Fixed several checkpatch.pl issues
> * Added doxygen related changes
> 
>  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                  |  128 ++-
>  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            | 2048
> ++++++++++++++++++++++++++++++++++
>  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             |  927 +++++++++++++++
>  lib/librte_acl/acl_vect.h            |  129 +++
>  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, 8552 insertions(+), 45 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

  parent reply	other threads:[~2014-06-06  8:32 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-28 19:26 Konstantin Ananyev
2014-05-28 19:26 ` [dpdk-dev] [PATCHv2 1/5] acl: Add ACL library (librte_acl) into DPDK Konstantin Ananyev
2014-05-28 19:26 ` [dpdk-dev] [PATCHv2 2/5] acl: update UT to reflect latest changes in the librte_acl Konstantin Ananyev
2014-05-28 19:26 ` [dpdk-dev] [PATCHv2 3/5] acl: New test-acl application Konstantin Ananyev
2014-05-28 19:26 ` [dpdk-dev] [PATCHv2 4/5] acl: New sample l3fwd-acl Konstantin Ananyev
2014-05-28 19:26 ` [dpdk-dev] [PATCHv2 5/5] acl: add doxygen configuration and start page Konstantin Ananyev
2014-06-06  5:54 ` [dpdk-dev] [PATCHv2 0/5] ACL library Cao, Waterman
2014-06-06  8:32 ` De Lara Guarch, Pablo [this message]
2014-06-11 22:01 ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E115CCD9D858EF4F90C690B0DCB4D897082C8F84@IRSMSX103.ger.corp.intel.com \
    --to=pablo.de.lara.guarch@intel.com \
    --cc=dev@dpdk.org \
    --cc=konstantin.ananyev@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).