[dpdk-stable] [PATCH 09/13] efd: fix missing include in exported	header
    Adrien Mazarguil 
    adrien.mazarguil at 6wind.com
       
    Mon Apr 24 17:53:03 CEST 2017
    
    
  
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 at dpdk.org
Cc: Byron Marohn <byron.marohn at intel.com>
Cc: Pablo de Lara Guarch <pablo.de.lara.guarch at intel.com>
Signed-off-by: Adrien Mazarguil <adrien.mazarguil at 6wind.com>
---
 lib/librte_efd/rte_efd.h | 2 ++
 1 file changed, 2 insertions(+)
diff --git a/lib/librte_efd/rte_efd.h b/lib/librte_efd/rte_efd.h
index 6d31e18..1596863 100644
--- 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
-- 
2.1.4
    
    
More information about the stable
mailing list