From: Bruce Richardson Date: Fri, 15 Jan 2021 11:10:37 +0000 (+0000) Subject: mbuf: fix missing header include X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=b7c0591fd6117be644b16fc85bfdb2bbb362820f;p=dpdk.git mbuf: fix missing header include 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 Reviewed-by: David Marchand --- diff --git a/lib/librte_mbuf/rte_mbuf_core.h b/lib/librte_mbuf/rte_mbuf_core.h index 567551deab..a85cabdd18 100644 --- a/lib/librte_mbuf/rte_mbuf_core.h +++ b/lib/librte_mbuf/rte_mbuf_core.h @@ -17,7 +17,9 @@ */ #include + #include +#include #include #ifdef __cplusplus diff --git a/lib/librte_mbuf/rte_mbuf_dyn.h b/lib/librte_mbuf/rte_mbuf_dyn.h index fc4eee71d0..13f06d8ed2 100644 --- a/lib/librte_mbuf/rte_mbuf_dyn.h +++ b/lib/librte_mbuf/rte_mbuf_dyn.h @@ -66,8 +66,12 @@ * - any name that does not start with "rte_" in an application */ +#include +#include #include +#include + #ifdef __cplusplus extern "C" { #endif