From: Thomas Monjalon Date: Fri, 4 Aug 2017 09:55:41 +0000 (+0200) Subject: gro: fix missing includes X-Git-Tag: spdx-start~2219 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e258d5fe3b34fd4b637ab955d63a340c8682ad09;p=dpdk.git gro: fix missing includes The GRO header file depends on stdint and mbuf. Spotted with devtools/check-includes.sh Fixes: e996506a1c07 ("lib/gro: add Generic Receive Offload API framework") Signed-off-by: Thomas Monjalon Acked-by: John McNamara --- diff --git a/lib/librte_gro/rte_gro.h b/lib/librte_gro/rte_gro.h index 69721a9c0a..d57e0c5f9b 100644 --- a/lib/librte_gro/rte_gro.h +++ b/lib/librte_gro/rte_gro.h @@ -38,6 +38,9 @@ * Interface to GRO library */ +#include +#include + #ifdef __cplusplus extern "C" { #endif