From: Adrien Mazarguil Date: Wed, 26 Apr 2017 12:07:17 +0000 (+0200) Subject: efd: fix missing include in exported header X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c67ae2bd090f8956b30c868a0a9f0b194aec09da;p=dpdk.git efd: fix missing include in exported header 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 Acked-by: Pablo de Lara --- diff --git a/lib/librte_efd/rte_efd.h b/lib/librte_efd/rte_efd.h index 6d31e18236..159686358f 100644 --- a/lib/librte_efd/rte_efd.h +++ b/lib/librte_efd/rte_efd.h @@ -40,6 +40,8 @@ * RTE EFD Table */ +#include + #ifdef __cplusplus extern "C" { #endif