From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id AB9FC5688 for ; Wed, 2 Sep 2015 17:59:21 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 02 Sep 2015 08:59:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,454,1437462000"; d="scan'208";a="637182971" Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga003.jf.intel.com with ESMTP; 02 Sep 2015 08:59:20 -0700 Received: from irsmsx105.ger.corp.intel.com ([169.254.7.51]) by irsmsx110.ger.corp.intel.com ([163.33.3.25]) with mapi id 14.03.0224.002; Wed, 2 Sep 2015 16:59:18 +0100 From: "Ananyev, Konstantin" To: Thomas Monjalon , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2 08/10] acl: remove old API Thread-Index: AQHQ5YIOkpU9zeQSIEOQ1HhhfGYiqJ4pZWgg Date: Wed, 2 Sep 2015 15:59:18 +0000 Message-ID: <2601191342CEEE43887BDE71AB97725836A82112@irsmsx105.ger.corp.intel.com> References: <1441138697-25157-1-git-send-email-thomas.monjalon@6wind.com> <1441199803-27055-1-git-send-email-thomas.monjalon@6wind.com> <1441199803-27055-9-git-send-email-thomas.monjalon@6wind.com> In-Reply-To: <1441199803-27055-9-git-send-email-thomas.monjalon@6wind.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 08/10] acl: remove old API 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: Wed, 02 Sep 2015 15:59:22 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Wednesday, September 02, 2015 2:17 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 08/10] acl: remove old API >=20 > The functions and structures are moved to app/test in order to keep > existing unit tests. Some minor changes were done in these functions > because of library scope restrictions. > An enum is also copied in two other applications to keep existing code. > The library version is incremented. >=20 > Signed-off-by: Thomas Monjalon > Acked-by: Stephen Hemminger > Acked-by: Neil Horman > --- Acked-by: Konstantin Ananyev > app/test-acl/main.c | 17 +++ > app/test/test_acl.c | 194 +++++++++++++++++++++++++++++= ++++++ > app/test/test_acl.h | 59 +++++++++++ > doc/guides/rel_notes/deprecation.rst | 4 - > doc/guides/rel_notes/release_2_2.rst | 4 +- > examples/l3fwd-acl/main.c | 17 +++ > lib/librte_acl/Makefile | 2 +- > lib/librte_acl/rte_acl.c | 170 -----------------------------= - > lib/librte_acl/rte_acl.h | 104 ------------------- > lib/librte_acl/rte_acl_version.map | 2 - > 10 files changed, 291 insertions(+), 282 deletions(-) >=20