From 365f618238d093706dc94b471001da0cbb59914b Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Mon, 25 May 2015 13:23:54 +0100 Subject: [PATCH 1/1] kni: fix missing header dependencies The file rte_kni.h depends upon a number of other headers, some of which are missing from the #include lines. The following #includes are added: * rte_memory.h - for the definition of phys_addr_t * rte_mempool.h - for the definition of mempool struct and the mempool create function. Signed-off-by: Bruce Richardson Acked-by: Marc Sune --- lib/librte_kni/rte_kni.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_kni/rte_kni.h b/lib/librte_kni/rte_kni.h index 98edd72414..44240fec9c 100644 --- a/lib/librte_kni/rte_kni.h +++ b/lib/librte_kni/rte_kni.h @@ -47,6 +47,8 @@ */ #include +#include +#include #include -- 2.20.1