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 77CBEA0A04 for ; Fri, 15 Jan 2021 16:40:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5AA68140FAC; Fri, 15 Jan 2021 16:40:28 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 2D7F0140FAC; Fri, 15 Jan 2021 16:40:27 +0100 (CET) Received: from [192.168.1.192] (unknown [188.242.181.57]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id AAE277F56C; Fri, 15 Jan 2021 18:40:26 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru AAE277F56C DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1610725226; bh=ozQbLza7MQgxaUxbzEj0Ok+2cGRD/iGfkHtYXvyO6Ak=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=lYEZ5ylD4oy1nDyTfeZ9P578taRPa+f46QHPYXNPWRI367Jh6VBh79x8UeVOzolHU sqVtV2KSw2p+d3f8m6VBEssQeK2KdZalmkVwzO/GV8nyXL/mQWYo6+GB1pHkC2Rd3t tbEfWKED3tjUkt30tGUeWizjI62M6EhBDnzro0ec= To: Bruce Richardson , dev@dpdk.org Cc: david.marchand@redhat.com, stable@dpdk.org, Olivier Matz , Thomas Monjalon , Konstantin Ananyev , Andrew Rybchenko , Michel Machado References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210115111052.16437-1-bruce.richardson@intel.com> <20210115111052.16437-6-bruce.richardson@intel.com> From: Andrew Rybchenko Message-ID: Date: Fri, 15 Jan 2021 18:40:26 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <20210115111052.16437-6-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] [dpdk-dev] [PATCH v2 05/19] mbuf: 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" On 1/15/21 2:10 PM, Bruce Richardson wrote: > The rte_mbuf_dyn.h header file uses a number of types and macros without > including the required header files to get the definitions of those > macros/types. Similarly, the rte_mbuf_core.h file was missing an > include for rte_byteorder.h header. > > Fixes: 4958ca3a443a ("mbuf: support dynamic fields and flags") > Fixes: 3eb860b08eb7 ("mbuf: move definitions into a separate file") > Cc: stable@dpdk.org > > Signed-off-by: Bruce Richardson Acked-by: Andrew Rybchenko