[dpdk-dev] [PATCH] vhost: fix missing dependency on librte_net

Jan Viktorin viktorin at rehivetech.com
Thu Feb 18 12:47:49 CET 2016


This patch fixes the following build regression:

lib/librte_vhost/vhost_rxtx.c: At top level:
lib/librte_vhost/vhost_rxtx.c:41:20: fatal error: rte_ip.h: No such file or directory
 #include <rte_ip.h>
                    ^
		    compilation terminated.

Fixes: d0cf91303d73 ("vhost: add Tx offload capabilities")

Signed-off-by: Jan Viktorin <viktorin at rehivetech.com>
---
 lib/librte_vhost/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_vhost/Makefile b/lib/librte_vhost/Makefile
index 035b569..ef9bbae 100644
--- a/lib/librte_vhost/Makefile
+++ b/lib/librte_vhost/Makefile
@@ -65,5 +65,6 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_VHOST)-include += rte_virtio_net.h
 DEPDIRS-$(CONFIG_RTE_LIBRTE_VHOST) += lib/librte_eal
 DEPDIRS-$(CONFIG_RTE_LIBRTE_VHOST) += lib/librte_ether
 DEPDIRS-$(CONFIG_RTE_LIBRTE_VHOST) += lib/librte_mbuf
+DEPDIRS-$(CONFIG_RTE_LIBRTE_VHOST) += lib/librte_net
 
 include $(RTE_SDK)/mk/rte.lib.mk
-- 
2.7.0



More information about the dev mailing list