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 19BA2A0A02 for ; Fri, 15 Jan 2021 12:37:16 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0D9A5140FFA; Fri, 15 Jan 2021 12:37:16 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 19EAA140FD3; Fri, 15 Jan 2021 12:37:12 +0100 (CET) IronPort-SDR: Fd69BFQ2nsnU0zg+yTjaVBBjskdAHhvZM0+WPmpLngO6K4lc7tlOFYzMb7WlmqnlRjzkY62BwD QL2CRU1dIqJA== X-IronPort-AV: E=McAfee;i="6000,8403,9864"; a="175956267" X-IronPort-AV: E=Sophos;i="5.79,349,1602572400"; d="scan'208";a="175956267" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jan 2021 03:37:11 -0800 IronPort-SDR: PYD8SGbop3LWn+XtrUmkbLk5R9maIzXf7rMkSljDyncnP7Cpjpx2f/ZVjABuWNMlSGMiPsu+sX 0uMI9v7K1Fyg== X-IronPort-AV: E=Sophos;i="5.79,349,1602572400"; d="scan'208";a="382630378" Received: from vmedvedk-mobl.ger.corp.intel.com (HELO [10.252.17.50]) ([10.252.17.50]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jan 2021 03:37:10 -0800 To: Bruce Richardson , dev@dpdk.org Cc: david.marchand@redhat.com, stable@dpdk.org References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210115111052.16437-1-bruce.richardson@intel.com> <20210115111052.16437-8-bruce.richardson@intel.com> From: "Medvedkin, Vladimir" Message-ID: <8ad311aa-d53c-eaae-4e29-594aab9c9582@intel.com> Date: Fri, 15 Jan 2021 11:37:08 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.5.1 MIME-Version: 1.0 In-Reply-To: <20210115111052.16437-8-bruce.richardson@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-stable] [PATCH v2 07/19] rib: fix missing header includes 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" On 15/01/2021 11:10, Bruce Richardson wrote: > The standard integer types, and the size_t types are missing their > required header includes in the rib header file. > > Fixes: 5a5793a5ffa2 ("rib: add RIB library") > Cc: stable@dpdk.org > > Signed-off-by: Bruce Richardson > --- > lib/librte_rib/rte_rib.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/lib/librte_rib/rte_rib.h b/lib/librte_rib/rte_rib.h > index f80752e5bd..6253860523 100644 > --- a/lib/librte_rib/rte_rib.h > +++ b/lib/librte_rib/rte_rib.h > @@ -18,6 +18,8 @@ > * Level compressed tree implementation for IPv4 Longest Prefix Match > */ > > +#include > +#include > #include > > #ifdef __cplusplus > Acked-by: Vladimir Medvedkin -- Regards, Vladimir