From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ravi Kerur Subject: [PATCH v5 0/3] examples/l3fwd: merge l3fwd-acl code into l3fwd Date: Wed, 8 Mar 2017 13:32:06 -0800 Message-ID: <1489008729-28784-1-git-send-email-rkerur@gmail.com> References: <1488743225-25750-2-git-send-email-rkerur@gmail.com> Cc: Ravi Kerur To: dev@dpdk.org, konstantin.ananyev@intel.com, bruce.richardson@intel.com Return-path: Received: from mail-pg0-f67.google.com (mail-pg0-f67.google.com [74.125.83.67]) by dpdk.org (Postfix) with ESMTP id 047CD201 for ; Wed, 8 Mar 2017 22:32:13 +0100 (CET) Received: by mail-pg0-f67.google.com with SMTP id 77so4535547pgc.0 for ; Wed, 08 Mar 2017 13:32:13 -0800 (PST) In-Reply-To: <1488743225-25750-2-git-send-email-rkerur@gmail.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patchset merges l3fwd-acl and l3fwd code into common directory. Adds file read options to build LPM and EM tables. Ravi Kerur (3): examples/l3fwd: Merge l3fwd-acl code into l3fwd examples/l3fwd: add config file support for LPM examples/l3fwd: add config file support for EM examples/l3fwd-acl/Makefile | 56 - examples/l3fwd-acl/main.c | 2079 ------------------------------------- examples/l3fwd/Makefile | 2 +- examples/l3fwd/l3fwd.h | 77 ++ examples/l3fwd/l3fwd_acl.c | 1033 ++++++++++++++++++ examples/l3fwd/l3fwd_acl.h | 234 +++++ examples/l3fwd/l3fwd_acl_scalar.h | 182 ++++ examples/l3fwd/l3fwd_em.c | 390 +++++-- examples/l3fwd/l3fwd_lpm.c | 323 ++++-- examples/l3fwd/main.c | 250 +++-- 10 files changed, 2286 insertions(+), 2340 deletions(-) delete mode 100644 examples/l3fwd-acl/Makefile delete mode 100644 examples/l3fwd-acl/main.c create mode 100644 examples/l3fwd/l3fwd_acl.c create mode 100644 examples/l3fwd/l3fwd_acl.h create mode 100644 examples/l3fwd/l3fwd_acl_scalar.h -- 2.7.4