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 <bruce.richardson@intel.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Reviewed-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
Bruce Richardson 2021-01-15 11:10:37 +00:00 committed by David Marchand
parent a6bf1fd817
commit b7c0591fd6
2 changed files with 6 additions and 0 deletions

@ -17,7 +17,9 @@
*/
#include <stdint.h>
#include <rte_compat.h>
#include <rte_byteorder.h>
#include <generic/rte_atomic.h>
#ifdef __cplusplus

@ -66,8 +66,12 @@
* - any name that does not start with "rte_" in an application
*/
#include <stdio.h>
#include <stdint.h>
#include <sys/types.h>
#include <rte_compat.h>
#ifdef __cplusplus
extern "C" {
#endif