From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 322371E43; Thu, 18 Feb 2016 12:19:09 +0000 (UTC) Received: from sopuli.koti.laiskiainen.org (vpn1-5-209.ams2.redhat.com [10.36.5.209]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u1ICJ7B6000831; Thu, 18 Feb 2016 07:19:08 -0500 To: Jan Viktorin , dev@dpdk.org References: <20160218124514.101c4d2c@pcviktorin.fit.vutbr.cz> <1455796069-1260-1-git-send-email-viktorin@rehivetech.com> From: Panu Matilainen Message-ID: <56C5B6BB.4020603@redhat.com> Date: Thu, 18 Feb 2016 14:19:07 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 In-Reply-To: <1455796069-1260-1-git-send-email-viktorin@rehivetech.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Subject: Re: [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 12:19:09 -0000 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 -