From mboxrd@z Thu Jan 1 00:00:00 1970 From: Panu Matilainen Subject: Re: [PATCH] vhost: fix missing dependency on librte_net Date: Thu, 18 Feb 2016 14:19:07 +0200 Message-ID: <56C5B6BB.4020603@redhat.com> References: <20160218124514.101c4d2c@pcviktorin.fit.vutbr.cz> <1455796069-1260-1-git-send-email-viktorin@rehivetech.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit To: Jan Viktorin , dev@dpdk.org Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id ABE2993FA for ; Thu, 18 Feb 2016 13:19:09 +0100 (CET) In-Reply-To: <1455796069-1260-1-git-send-email-viktorin@rehivetech.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 02/18/2016 01:47 PM, Jan Viktorin wrote: > 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 > I sent the same patch a few hours ago :) http://dpdk.org/ml/archives/dev/2016-February/033427.html - Panu -