From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com
 [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id CD9481B01C;
 Thu, 11 Jan 2018 18:45:56 +0100 (CET)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 6772520C9D;
 Thu, 11 Jan 2018 12:45:56 -0500 (EST)
Received: from frontend2 ([10.202.2.161])
 by compute1.internal (MEProxy); Thu, 11 Jan 2018 12:45:56 -0500
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=4qA0WICFqs7zC+BdUwD+jb13Fs
 5yU2gsG3YP4fKZGpY=; b=igsyad+2FrLHW5TvyLVjQhM7G5rfuEZymK5HPi6z1i
 jMDP/kaDeGv30LVrzOHe9OcCZZKrW8ptIgbJfXh/OlZQcswKoH9xJrnHbIAAcAfL
 DTuLT1tz+thHAmkW0jMnHs7mpwOFDnSDxXmD03naVoMDtxh02n1hgH+HBRgb0V8M
 k=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=4qA0WI
 CFqs7zC+BdUwD+jb13Fs5yU2gsG3YP4fKZGpY=; b=p1vms3m1238K8Fe8/e8vGE
 iKKR1yKDUbAx/UoLmguHxwRMXKufUwNP9bIrIkhtZUoihbj4wKGWlTDHSqAs8IzM
 j6Bn7kR0RuoGDAHnwMan5caFdt7KnRVYSmP/2zYT80RlqRPMhLU02ivEs7fb0t+W
 t6w90Avprmft7Tsle/txUPRyOHPhNgxl/cSCUipnmIl8bzcM5bejID9VfBYxWyKO
 gWETYpbTiHNSVqXLbC1U6wi8hu++JpW+GusyyW5JYPFkbSVm3/F1riJV/eN9gCaW
 HEOxpXp1h4EGZZT75pNGI5DunpoWSI9vCVyU9ufmt4P6VuQPL73t9Kf249fxKvRA
 ==
X-ME-Sender: <xms:1KJXWuc_ExqlEOfi7Vu5L0uTek8FIR0DNE7g6M2rWY2p6Ao1ftPL7Q>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 1BBB224718;
 Thu, 11 Jan 2018 12:45:56 -0500 (EST)
From: Thomas Monjalon <thomas@monjalon.net>
To: "Yigit, Ferruh" <ferruh.yigit@intel.com>
Cc: dev@dpdk.org, "Iremonger, Bernard" <bernard.iremonger@intel.com>,
 "stable@dpdk.org" <stable@dpdk.org>
Date: Thu, 11 Jan 2018 18:45:28 +0100
Message-ID: <7942537.rN8x7J2uFX@xps>
In-Reply-To: <8CEF83825BEC744B83065625E567D7C24E06AA19@IRSMSX108.ger.corp.intel.com>
References: <20171212183956.52341-1-ferruh.yigit@intel.com>
 <8CEF83825BEC744B83065625E567D7C24E06AA19@IRSMSX108.ger.corp.intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] kni: fix build dependency
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 11 Jan 2018 17:45:57 -0000

> > kni library has a dependency to new PCI library, adding that dependency.
> > 
> > build error:
> >   CC rte_kni.o
> > In file included from dpdk/lib/librte_kni/rte_kni.c:48:0:
> >   dpdk/build/include/rte_kni.h:49:21:
> >   fatal error: rte_pci.h: No such file or directory
> >     #include <rte_pci.h>
> >                        ^
> > 
> > Fixes: c752998b5e2e ("pci: introduce library and driver")
> > Cc: stable@dpdk.org
> > 
> > Reported-by: Bernard Iremonger <bernard.iremonger@intel.com>
> > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> Acked-by: Bernard Iremonger <Bernard.iremonger@intel.com>

Applied, thanks