From patchwork Mon Jul 13 13:51:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 73946 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3F031A0540; Mon, 13 Jul 2020 15:51:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E5CFE1D716; Mon, 13 Jul 2020 15:51:28 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id CB2671C19B for ; Mon, 13 Jul 2020 15:51:26 +0200 (CEST) IronPort-SDR: XQJfwG40mxIvRFsQTBZmqkZDIWWFwfYYk16Fso8qzXeIbkmopVPvfJLT7qTGGyhcVtxodKB1fk 6mY8BhexgucA== X-IronPort-AV: E=McAfee;i="6000,8403,9680"; a="128667006" X-IronPort-AV: E=Sophos;i="5.75,347,1589266800"; d="scan'208";a="128667006" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jul 2020 06:51:25 -0700 IronPort-SDR: CeZPZHHUQL1U0VDz/4rU/ZR8l42xakDrXczKY6gJkk/34Fswh8/iIqbzzw08w7jWP/OZoN8XMH smFZUgTHhsyA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,347,1589266800"; d="scan'208";a="268377989" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.180]) by fmsmga007.fm.intel.com with ESMTP; 13 Jul 2020 06:51:23 -0700 From: Ferruh Yigit To: Honnappa Nagarahalli , Ruifeng Wang , Vladimir Medvedkin , Ray Kinsella Cc: dev@dpdk.org, Ferruh Yigit Date: Mon, 13 Jul 2020 14:51:20 +0100 Message-Id: <20200713135120.3230675-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.25.4 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] lib: fix build for missing RCU library dependency 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 'librte_rcu' is now dependency to 'librte_lpm' library, this dependency should be reflected to build system. Fixes: 8a9f8564e9f9 ("lpm: implement RCU rule reclamation") Signed-off-by: Ferruh Yigit Reviewed-by: Ruifeng Wang Acked-by: Ray Kinsella Reviewed-by: Ruifeng Wang Acked-by: Ray Kinsella --- Cc: ruifeng.wang@arm.com --- lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile b/lib/Makefile index 4b981f505e..8f5b68a2d4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -59,7 +59,7 @@ DEPDIRS-librte_rib := librte_eal librte_mempool DIRS-$(CONFIG_RTE_LIBRTE_FIB) += librte_fib DEPDIRS-librte_fib := librte_eal librte_rib DIRS-$(CONFIG_RTE_LIBRTE_LPM) += librte_lpm -DEPDIRS-librte_lpm := librte_eal librte_hash +DEPDIRS-librte_lpm := librte_eal librte_hash librte_rcu DIRS-$(CONFIG_RTE_LIBRTE_ACL) += librte_acl DEPDIRS-librte_acl := librte_eal DIRS-$(CONFIG_RTE_LIBRTE_MEMBER) += librte_member