From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id BDD4858D7 for ; Fri, 13 Jun 2014 13:26:50 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 13 Jun 2014 04:27:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,471,1400050800"; d="scan'208";a="547481047" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 13 Jun 2014 04:27:04 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s5DBR351009797; Fri, 13 Jun 2014 12:27:03 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s5DBR3oP022533; Fri, 13 Jun 2014 12:27:03 +0100 Received: (from kananye1@localhost) by sivswdev02.ir.intel.com with id s5DBR3Jc022529; Fri, 13 Jun 2014 12:27:03 +0100 From: Konstantin Ananyev To: dev@dpdk.org Date: Fri, 13 Jun 2014 12:26:49 +0100 Message-Id: <1402658814-21881-1-git-send-email-konstantin.ananyev@intel.com> X-Mailer: git-send-email 1.7.0.7 To: dev@dpdk.org Subject: [dpdk-dev] [PATCHv3 0/5] ACL library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2014 11:26:51 -0000 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