From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id AC0001B4A4 for ; Fri, 29 Jun 2018 15:54:11 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Jun 2018 06:54:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,285,1526367600"; d="scan'208";a="53238584" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.107]) by orsmga008.jf.intel.com with SMTP; 29 Jun 2018 06:54:08 -0700 Received: by (sSMTP sendmail emulation); Fri, 29 Jun 2018 14:54:04 +0100 Date: Fri, 29 Jun 2018 14:54:03 +0100 From: Bruce Richardson To: Medvedkin Vladimir Cc: dev@dpdk.org, thomas@monjalon.net, cristian.dumitrescu@intel.com Message-ID: <20180629135403.GA756@bricha3-MOBL.ger.corp.intel.com> References: <1524780214-23196-1-git-send-email-medvedkinv@gmail.com> <1524780214-23196-2-git-send-email-medvedkinv@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1524780214-23196-2-git-send-email-medvedkinv@gmail.com> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.10.0 (2018-05-17) Subject: Re: [dpdk-dev] [PATCH v4 1/4] Add RIB library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Jun 2018 13:54:12 -0000 On Fri, Apr 27, 2018 at 01:03:31AM +0300, Medvedkin Vladimir wrote: > Signed-off-by: Medvedkin Vladimir > --- > config/common_base | 6 + > doc/api/doxy-api.conf | 1 + > lib/Makefile | 2 + > lib/librte_rib/Makefile | 23 ++ > lib/librte_rib/meson.build | 6 + > lib/librte_rib/rte_rib.c | 520 +++++++++++++++++++++++++++++++++++++ > lib/librte_rib/rte_rib.h | 302 +++++++++++++++++++++ > lib/librte_rib/rte_rib_version.map | 18 ++ > lib/meson.build | 2 +- > mk/rte.app.mk | 1 + > 10 files changed, 880 insertions(+), 1 deletion(-) > create mode 100644 lib/librte_rib/Makefile > create mode 100644 lib/librte_rib/meson.build > create mode 100644 lib/librte_rib/rte_rib.c > create mode 100644 lib/librte_rib/rte_rib.h > create mode 100644 lib/librte_rib/rte_rib_version.map > > --- /dev/null > +++ b/lib/librte_rib/meson.build > @@ -0,0 +1,6 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2017 Intel Corporation > + > +sources = files('rte_rib.c', 'rte_dir24_8.c') > +headers = files('rte_rib.h', 'rte_dir24_8.h') > +deps += ['mempool'] The dir24_8 files don't exist yet - to avoid breaking the build they should be added in a subsequent patch. /Bruce