From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ravi Kerur Subject: [v3 0/3] Merge l3fwd-acl and l3fwd Date: Sat, 4 Mar 2017 12:44:16 -0800 Message-ID: <1488660259-6228-1-git-send-email-rkerur@gmail.com> Cc: konstantin.ananyev@intel.com, bruce.richardson@intel.com, Ravi Kerur To: dev@dpdk.org Return-path: Received: from mail-pf0-f193.google.com (mail-pf0-f193.google.com [209.85.192.193]) by dpdk.org (Postfix) with ESMTP id ECBED952 for ; Sat, 4 Mar 2017 21:45:13 +0100 (CET) Received: by mail-pf0-f193.google.com with SMTP id x66so13272090pfb.1 for ; Sat, 04 Mar 2017 12:45:13 -0800 (PST) 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): Merge l3fwd-acl and l3fwd code. LPM config file read option. EM config file read option. examples/l3fwd-acl/Makefile | 56 - examples/l3fwd-acl/main.c | 2079 ------------------------------------- examples/l3fwd/Makefile | 2 +- examples/l3fwd/l3fwd.h | 92 ++ 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 | 231 +++-- 10 files changed, 2281 insertions(+), 2341 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