From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wes1-so1.wedos.net (wes1-so1.wedos.net [46.28.106.15]) by dpdk.org (Postfix) with ESMTP id E51D695CD for ; Thu, 18 Feb 2016 12:43:46 +0100 (CET) Received: from pcviktorin.fit.vutbr.cz (pcviktorin.fit.vutbr.cz [147.229.13.147]) by wes1-so1.wedos.net (Postfix) with ESMTPSA id 3q5Z1Z2ZQbzCZR; Thu, 18 Feb 2016 12:43:46 +0100 (CET) Date: Thu, 18 Feb 2016 12:45:14 +0100 From: Jan Viktorin To: Jijiang Liu Message-ID: <20160218124514.101c4d2c@pcviktorin.fit.vutbr.cz> Organization: RehiveTech MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: dev@dpdk.org Subject: [dpdk-dev] Fw: dpdk-armv7 - Build # 281 - Failure! X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2016 11:43:47 -0000 Hello, I've noticed a build regression for vhost library. See the log. I'll send a fix for this very soon. Regards Jan >From viktorin@rehivetech.com Thu Feb 18 12:46:25 2016 Return-Path: Received: from wes1-so2.wedos.net (wes1-so2.wedos.net [46.28.106.16]) by dpdk.org (Postfix) with ESMTP id CB597C34C for ; Thu, 18 Feb 2016 12:46:25 +0100 (CET) Received: from pcviktorin.fit.vutbr.cz (pcviktorin.fit.vutbr.cz [147.229.13.147]) by wes1-so2.wedos.net (Postfix) with ESMTPSA id 3q5Z4d45fyzCfx; Thu, 18 Feb 2016 12:46:25 +0100 (CET) From: Jan Viktorin To: dev@dpdk.org Date: Thu, 18 Feb 2016 12:47:49 +0100 Message-Id: <1455796069-1260-1-git-send-email-viktorin@rehivetech.com> X-Mailer: git-send-email 2.7.0 In-Reply-To: <20160218124514.101c4d2c@pcviktorin.fit.vutbr.cz> References: <20160218124514.101c4d2c@pcviktorin.fit.vutbr.cz> Cc: Jan Viktorin Subject: [dpdk-dev] [PATCH] vhost: fix missing dependency on librte_net X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2016 11:46:25 -0000 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 ^ compilation terminated. Fixes: d0cf91303d73 ("vhost: add Tx offload capabilities") Signed-off-by: Jan Viktorin --- 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