[dpdk-dev] [PATCH 1/4] acl: Add ACL library (librte_acl) into DPDK.

Thomas Monjalon thomas.monjalon at 6wind.com
Wed May 28 00:21:33 CEST 2014


Hi Konstantin,

Glad to see this new library coming in.

2014-05-22 21:48, Konstantin Ananyev:
> The ACL library is used to perform an N-tuple search over a set of rules
> with multiple categories and find the best match for each category.
> 
> Signed-off-by: Konstantin Ananyev <konstantin.ananyev at intel.com>
> ---
>  config/common_linuxapp               |    6 +
>  lib/librte_acl/Makefile              |   60 +
>  lib/librte_acl/acl.h                 |  182 +++
>  lib/librte_acl/acl_bld.c             | 2002 ++++++++++++++++++++++++++++++++++
>  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 ++
>  13 files changed, 5189 insertions(+), 0 deletions(-)

As you are introducing a new library, you need to update
doxygen configuration and start page:
	doc/doxy-api.conf
	doc/doxy-api-index.md

I've run checkpatch.pl from kernel.org on these ACL patches
and it reports a lot of code style issues.
Could you have a look at it please?

Thanks
-- 
Thomas


More information about the dev mailing list