From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6C0AEA0546; Tue, 6 Apr 2021 13:11:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E704540F35; Tue, 6 Apr 2021 13:11:14 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 127424067C for ; Tue, 6 Apr 2021 13:11:13 +0200 (CEST) IronPort-SDR: b29UC9pwL8CRvB90wjXGBbcPSyqR5xstGR086DpyMNx5uYPdkjWrQbyNohHTrSJ7X5sCJAWJYm C9SuF4oXYeqw== X-IronPort-AV: E=McAfee;i="6000,8403,9945"; a="193082377" X-IronPort-AV: E=Sophos;i="5.81,309,1610438400"; d="scan'208";a="193082377" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2021 04:11:13 -0700 IronPort-SDR: O3VVzh285rTEAQS46okw7R2H4M82TU4XS71Fc69Fb8PnCOELhDo0iiRj3txFq234cfDRnVuDKA Skwsh1DLfaWA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,309,1610438400"; d="scan'208";a="609244317" Received: from silpixa00400466.ir.intel.com ([10.237.213.210]) by fmsmga006.fm.intel.com with ESMTP; 06 Apr 2021 04:11:10 -0700 From: Conor Walsh To: jerinj@marvell.com, stephen@networkplumber.org, bernard.iremonger@intel.com, konstantin.ananyev@intel.com, vladimir.medvedkin@intel.com, anatoly.burakov@intel.com, john.mcnamara@intel.com Cc: dev@dpdk.org, Conor Walsh Date: Tue, 6 Apr 2021 11:11:01 +0000 Message-Id: <20210406111106.2020555-1-conor.walsh@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210402105252.1145821-1-conor.walsh@intel.com> References: <20210402105252.1145821-1-conor.walsh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v7 0/5] examples/l3fwd: add FIB lookup method to l3fwd X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Currently the l3fwd sample app supports LPM and EM lookup methods this patchset implements the FIB library as another lookup method for l3fwd. Instead of adding an individual flag for FIB, a new flag '--lookup' has been added that allows the user to select their desired lookup method. The flags '-E' and '-L' have been retained for backwards compatibility. --- v7: - Error log for invalid lookup method now runs within the parse_lookup function for better maintainability v6: - rte_exit no longer used within parse_lookup, exiting due to incorrect config is now handled the same as the other config options - Corrected a typo within print usage - Moved -E and -L to the bottom of print usage as they are now legacy flags v5: - Removed runtime checks to ensure desired port is within portmask, unused ports are still removed during setup v4: - Changed individual switches for lookup methods to an enum for all lookup methods - Removed '-F' and introduced '--lookup' flag to select lookup methods - Fixed indentation issues - Renamed some variables for increased clarity - Minor changes to some logic for readability - Implemented MAC updating for FIB on non-SSE machines - Implemented RFC1812 for FIB on non-SSE machines - Added checks to ensure desired port is within portmask v3: add support for NEON, PPC 64 and machines that do not support SSE, NEON or PPC 64. v2: added the socket header file to fix FreeBSD build. Conor Walsh (5): examples/l3fwd: fix LPM IPv6 subnets examples/l3fwd: move l3fwd routes to common header examples/l3fwd: add FIB infrastructure examples/l3fwd: implement FIB lookup method doc/guides/l3_forward: update documentation for FIB doc/guides/sample_app_ug/l3_forward.rst | 113 ++++- examples/l3fwd/Makefile | 2 +- examples/l3fwd/l3fwd.h | 27 +- examples/l3fwd/l3fwd_common_route.h | 48 +++ examples/l3fwd/l3fwd_event.c | 9 + examples/l3fwd/l3fwd_event.h | 1 + examples/l3fwd/l3fwd_fib.c | 528 ++++++++++++++++++++++++ examples/l3fwd/l3fwd_lpm.c | 68 +-- examples/l3fwd/main.c | 119 ++++-- examples/l3fwd/meson.build | 4 +- 10 files changed, 819 insertions(+), 100 deletions(-) create mode 100644 examples/l3fwd/l3fwd_common_route.h create mode 100644 examples/l3fwd/l3fwd_fib.c -- 2.25.1