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 17CDEA0A0B for ; Mon, 25 Jan 2021 15:11:36 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F0D35140F29; Mon, 25 Jan 2021 15:11:35 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 92DB5140DF1; Mon, 25 Jan 2021 15:11:33 +0100 (CET) IronPort-SDR: m7Nm0FIa/5l0qlcXkqpuxsiZpc6v/xzNXh9070I+Wxz5dDNIu2S/jzFcEn0f5tPpoCHAKbs+Wr tHEAE02xNv/w== X-IronPort-AV: E=McAfee;i="6000,8403,9874"; a="241266103" X-IronPort-AV: E=Sophos;i="5.79,373,1602572400"; d="scan'208";a="241266103" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jan 2021 06:11:31 -0800 IronPort-SDR: ngOKAE3kSsl9AOEMY8qeBP0Py4PSrewgwnRCaffHKo/033CPf6GEgvwiebEvTTg6MMYashVQzJ Y+ETesZ9R0ew== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,373,1602572400"; d="scan'208";a="504149207" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by orsmga004.jf.intel.com with ESMTP; 25 Jan 2021 06:11:29 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: david.marchand@redhat.com, thomas@monjalon.net, Bruce Richardson , stable@dpdk.org, Honnappa Nagarahalli , Steve Capper , Phil Yang , Gavin Hu Date: Mon, 25 Jan 2021 14:11:12 +0000 Message-Id: <20210125141115.573122-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210125141115.573122-1-bruce.richardson@intel.com> References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210125141115.573122-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v3 1/4] eal: add missing include to mcslock X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Include 'rte_branch_prediction.h' to get the likely/unlikely macro definitions. Fixes: 2173f3333b61 ("mcslock: add MCS queued lock implementation") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson --- lib/librte_eal/include/generic/rte_mcslock.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/include/generic/rte_mcslock.h b/lib/librte_eal/include/generic/rte_mcslock.h index d370bef17a..9f323bd2a2 100644 --- a/lib/librte_eal/include/generic/rte_mcslock.h +++ b/lib/librte_eal/include/generic/rte_mcslock.h @@ -22,6 +22,7 @@ #include #include #include +#include /** * The rte_mcslock_t type. -- 2.27.0