gro: fix missing includes
authorThomas Monjalon <thomas@monjalon.net>
Fri, 4 Aug 2017 09:55:41 +0000 (11:55 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 4 Aug 2017 23:19:13 +0000 (01:19 +0200)
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 <thomas@monjalon.net>
Acked-by: John McNamara <john.mcnamara@intel.com>
lib/librte_gro/rte_gro.h

index 69721a9..d57e0c5 100644 (file)
@@ -38,6 +38,9 @@
  * Interface to GRO library
  */
 
+#include <stdint.h>
+#include <rte_mbuf.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif