git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1742d1
)
gro: fix missing includes
author
Thomas Monjalon
<thomas@monjalon.net>
Fri, 4 Aug 2017 09:55:41 +0000
(11:55 +0200)
committer
Thomas 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
patch
|
blob
|
history
diff --git
a/lib/librte_gro/rte_gro.h
b/lib/librte_gro/rte_gro.h
index
69721a9
..
d57e0c5
100644
(file)
--- a/
lib/librte_gro/rte_gro.h
+++ b/
lib/librte_gro/rte_gro.h
@@
-38,6
+38,9
@@
* Interface to GRO library
*/
+#include <stdint.h>
+#include <rte_mbuf.h>
+
#ifdef __cplusplus
extern "C" {
#endif