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:
507fb14
)
efd: fix missing include in exported header
author
Adrien Mazarguil
<adrien.mazarguil@6wind.com>
Wed, 26 Apr 2017 12:07:17 +0000
(14:07 +0200)
committer
Thomas Monjalon
<thomas@monjalon.net>
Sun, 30 Apr 2017 22:13:15 +0000
(
00:13
+0200)
This commit addresses the following compilation errors:
In file included from /tmp/check-includes.sh.8373.c:1:0:
build/include/rte_efd.h:133:9: error: unknown type name 'uint8_t'
[...]
Fixes:
56b6ef874f80
("efd: new Elastic Flow Distributor library")
Cc: stable@dpdk.org
Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
lib/librte_efd/rte_efd.h
patch
|
blob
|
history
diff --git
a/lib/librte_efd/rte_efd.h
b/lib/librte_efd/rte_efd.h
index
6d31e18
..
1596863
100644
(file)
--- a/
lib/librte_efd/rte_efd.h
+++ b/
lib/librte_efd/rte_efd.h
@@
-40,6
+40,8
@@
* RTE EFD Table
*/
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif