From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by dpdk.org (Postfix) with ESMTP id 6DC953F9 for ; Fri, 6 Jun 2014 10:32:47 +0200 (CEST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 06 Jun 2014 01:33:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.98,987,1392192000"; d="scan'208";a="441704377" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by azsmga001.ch.intel.com with ESMTP; 06 Jun 2014 01:32:59 -0700 Received: from irsmsx107.ger.corp.intel.com (163.33.3.99) by IRSMSX102.ger.corp.intel.com (163.33.3.155) with Microsoft SMTP Server (TLS) id 14.3.123.3; Fri, 6 Jun 2014 09:32:58 +0100 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.58]) by IRSMSX107.ger.corp.intel.com ([169.254.10.208]) with mapi id 14.03.0123.003; Fri, 6 Jun 2014 09:32:58 +0100 From: "De Lara Guarch, Pablo" To: "Ananyev, Konstantin" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCHv2 0/5] ACL library Thread-Index: AQHPeqrX62/0dr1GpEyMVUwx77UTFptjzl8w Date: Fri, 6 Jun 2014 08:32:57 +0000 Message-ID: References: <1401305210-10357-1-git-send-email-konstantin.ananyev@intel.com> In-Reply-To: <1401305210-10357-1-git-send-email-konstantin.ananyev@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCHv2 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, 06 Jun 2014 08:32:47 -0000 Acked-by: Pablo de Lara Guarch > -----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 >=20 > 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. >=20 > Note that these patch series require other patch: > "lpm: Introduce rte_lpm_lookupx4" be already installed. >=20 > 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 applica= tion > to implement packet classification and L3 forwarding. > 5) add doxygen configuration and start page >=20 > v2 fixes: > * Fixed several checkpatch.pl issues > * Added doxygen related changes >=20 > 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 >=20 > -- > 1.7.7.6