From e258d5fe3b34fd4b637ab955d63a340c8682ad09 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Fri, 4 Aug 2017 11:55:41 +0200 Subject: [PATCH] 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 --- lib/librte_gro/rte_gro.h | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.20.1