From: Bruce Richardson Date: Mon, 25 May 2015 12:23:54 +0000 (+0100) Subject: kni: fix missing header dependencies X-Git-Tag: spdx-start~9150 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=365f618238d093706dc94b471001da0cbb59914b;p=dpdk.git 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 --- 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