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 90794A0A02 for ; Fri, 15 Jan 2021 12:45:20 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7F26F14100B; Fri, 15 Jan 2021 12:45:20 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 08129140FFE; Fri, 15 Jan 2021 12:45:17 +0100 (CET) IronPort-SDR: pSs1VXRcAH9roo5JoJ+szdlIeCkrjB2VLHMlPkvcco5Ae16MDh3g4WHGovLJuzWB5G90Cn80rh MHl8aJ1IY7Aw== X-IronPort-AV: E=McAfee;i="6000,8403,9864"; a="157716169" X-IronPort-AV: E=Sophos;i="5.79,349,1602572400"; d="scan'208";a="157716169" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jan 2021 03:45:16 -0800 IronPort-SDR: sMpnCkWmqbU2KAX5F8GFesFTsDJP41rL+KUXyynCU9Rgy9fJAUJbQK7udoJNGgWOi4qL2bERbl hE4FG+okLPdA== X-IronPort-AV: E=Sophos;i="5.79,349,1602572400"; d="scan'208";a="382635681" 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:45:13 -0800 From: "Medvedkin, Vladimir" To: Bruce Richardson , dev@dpdk.org Cc: david.marchand@redhat.com, stable@dpdk.org, Konstantin Ananyev , Bernard Iremonger , Akhil Goyal References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210115111052.16437-1-bruce.richardson@intel.com> <20210115111052.16437-10-bruce.richardson@intel.com> <40459d99-f163-71cc-f910-0edfb3e9b9bf@intel.com> Message-ID: <5b7fd1d6-eee6-e468-65fd-5f9163614b57@intel.com> Date: Fri, 15 Jan 2021 11:45:11 +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: <40459d99-f163-71cc-f910-0edfb3e9b9bf@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-stable] [PATCH v2 09/19] ipsec: fix missing header include 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" Hi Bruce, Just a one nit, please put before rte_ includes. On 15/01/2021 11:37, Medvedkin, Vladimir wrote: > > > On 15/01/2021 11:10, Bruce Richardson wrote: >> The rte_ipsec_sad.h header used the standard uintXX_t types, but did not >> include stdint.h header for them. >> >> Fixes: 401633d9c112 ("ipsec: add inbound SAD API") >> Cc: stable@dpdk.org >> >> Signed-off-by: Bruce Richardson >> --- >>   lib/librte_ipsec/rte_ipsec_sad.h | 1 + >>   1 file changed, 1 insertion(+) >> >> diff --git a/lib/librte_ipsec/rte_ipsec_sad.h >> b/lib/librte_ipsec/rte_ipsec_sad.h >> index 3e67ab1e4b..66c703ff3a 100644 >> --- a/lib/librte_ipsec/rte_ipsec_sad.h >> +++ b/lib/librte_ipsec/rte_ipsec_sad.h >> @@ -7,6 +7,7 @@ >>   #define _RTE_IPSEC_SAD_H_ >>   #include >> +#include >>   /** >>    * @file rte_ipsec_sad.h >> > > Acked-by: Vladimir Medvedkin > -- Regards, Vladimir