From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E5418A04FA; Thu, 6 Feb 2020 03:29:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3E8BD1C1E3; Thu, 6 Feb 2020 03:29:24 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id ECA2C1C1E0 for ; Thu, 6 Feb 2020 03:29:22 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 87E7A22091; Wed, 5 Feb 2020 21:29:22 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Wed, 05 Feb 2020 21:29:22 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=tVVGelOqzEaUQtoJQ+UtLQUlymW10YiuXE8W+Mr9NWk=; b=GofoTGye04ap 4NcX8GWnA8RdnOPf6FXn4oOMTOxSOEqjjhCGKG57sJ4GYYtCmYjpsjsWBi956DK/ RdU4lfBEo7oGIPsvwS66XtGGzXydmeGQDyY+XBJ66XHT2bbdNGNpmVO8b4w4ThkW kAJ7KJkPS/4Eny2H/WHSsFFi6EsyWjU= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=tVVGelOqzEaUQtoJQ+UtLQUlymW10YiuXE8W+Mr9N Wk=; b=zvXcyoVu1Nqbhx1Ama4/fSY1uucqlgqITMMlJlUrMF2N2cxjNJCsvaxuH /wUy8uZiJ8lf3KU8U2Uf3luEata3uR8vAPTi82jl7+CBHElGsaqLocgLA8HyMPH9 bCdtNvWQHVhOpGD3OMZewaafcIMDWlekFzYpKcgo8H9Xph9az6Mc1NPk6lYox2DL GiCTMm5QKDBPEK3lyB8GBIS/LC5at2iMBv+4kDsJq+LkRohbCiZNe4YPfJ2aoBmc NBox3jhOyxLadC2J9Pqc9OYhA0RFJ9gh+0VfPKNbpGjX/KOBC6hJiyRJY5K1H/Tp cCxUcF7kAwmCB5F+/rxQLA6yaYKMA== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedugedrhedvgdegjecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuihiivgeptdenucfrrghr rghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhhonhdrnhgvth X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 8E2CB30607B0; Wed, 5 Feb 2020 21:29:21 -0500 (EST) From: Thomas Monjalon To: Junxiao Shi Cc: dev@dpdk.org, Bruce Richardson Date: Thu, 06 Feb 2020 03:29:20 +0100 Message-ID: <3819694.6PsWsQAL7t@xps> In-Reply-To: <20200128135100.GA356@bricha3-MOBL.ger.corp.intel.com> References: <202001272140.00RLeVmL031759@lectura.cs.arizona.edu> <20200128135100.GA356@bricha3-MOBL.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] bpf: properly install headers in meson build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 28/01/2020 14:51, Bruce Richardson: > On Mon, Jan 27, 2020 at 02:38:00PM -0700, Junxiao Shi wrote: > > Previously, when librte_bpf is built with meson+ninja, its > > headers such as bpf_def is not installed to the system. > > This commit fixes this problem. > > > > Fixes: 94972f3 ("bpf: add BPF loading and execution framework") > > > > Signed-off-by: Junxiao Shi > > --- > > -install_headers = files('bpf_def.h', > > +install_headers('bpf_def.h', > > 'rte_bpf.h', > > 'rte_bpf_ethdev.h') > > > Yes, good catch. > > Acked-by: Bruce Richardson Applied, thanks