From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrien Mazarguil Subject: [PATCH v3 09/14] efd: fix missing include in exported header Date: Wed, 26 Apr 2017 14:07:17 +0200 Message-ID: <141c3de9963bf12ea857c05d807a330ce2472306.1493208189.git.adrien.mazarguil@6wind.com> References: Cc: stable@dpdk.org, Byron Marohn , Pablo de Lara Guarch To: dev@dpdk.org Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 0B43168A9 for ; Wed, 26 Apr 2017 14:07:44 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id r190so20467946wme.1 for ; Wed, 26 Apr 2017 05:07:44 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 Cc: Byron Marohn Cc: Pablo de Lara Guarch Signed-off-by: Adrien Mazarguil --- 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 + #ifdef __cplusplus extern "C" { #endif -- 2.1.4