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 117C0A046B for ; Tue, 23 Jul 2019 20:51:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 85DE81C0BC; Tue, 23 Jul 2019 20:51:28 +0200 (CEST) Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by dpdk.org (Postfix) with ESMTP id C6C1E1B9C9 for ; Tue, 23 Jul 2019 20:51:27 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id A54D661F; Tue, 23 Jul 2019 14:51:26 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 23 Jul 2019 14:51:26 -0400 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=4xvMHNS25+g/RAf2qZRg+xAK1JsfaLSsBK1NSAyk67w=; b=jFj+uZEelA+h NlirECE5rt3dRgr3HDwO9d9XwO4AKmIGW15eznT6JC0neSTVH58YWIl3AHtl4432 TZw96vNJJGqgdENHhOq8byJZrbge10rhs7cJEfG506wVklX3qpFcwCsC7k7oO//H bLR/01Pd8w0h8fGWFrzMVMvvMhhzv6k= 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=fm3; bh=4xvMHNS25+g/RAf2qZRg+xAK1JsfaLSsBK1NSAyk6 7w=; b=ck6ncLbEXRvs5KKlc+QbAv5Rdot2cWmHk9GR+zV8/mz2OCfzC8tso+b5I Z03mxclknRPUn0dorx6JLxuwJF9QgNk8VorPGyzgXRkDCUHQy06nfVeNkFhGcPUY 2tzAiOBhvDhdEqnp1Pgk5ekJaqig1pCdiBSkb+wDBcQ6EABqQ240MDikLqcvevzj 0GGuewTUOU2gdBSiWHTwaqrk+JcGKWMn4WcJSlLR+bV0hEXkDU6wf63srbUM6j+c TkCf69FMpc9KLDtX8l3jRMW2tSc+NrPoVe2+E21/kn544np/Vn1VoCt9qooeMcgh KQogI0I/QS8zw+xLakArz5ILB9taw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrjeekgddufedtucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukf hppeelfedrvdefrdduleekrdekleenucfrrghrrghmpehmrghilhhfrhhomhepthhhohhm rghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (89.198.23.93.rev.sfr.net [93.23.198.89]) by mail.messagingengine.com (Postfix) with ESMTPA id ADADB380079; Tue, 23 Jul 2019 14:51:23 -0400 (EDT) From: Thomas Monjalon To: Bruce Richardson Cc: dev@dpdk.org, david.marchand@redhat.com Date: Tue, 23 Jul 2019 20:51:16 +0200 Message-ID: <2508954.GCZQXFcKRW@xps> In-Reply-To: <20190723162648.15217-1-bruce.richardson@intel.com> References: <20190723162648.15217-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] raw/ioat: fix compiler warning for incorrect include 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" 23/07/2019 18:26, Bruce Richardson: > Some builds with clang report an error because '<>' rather than '""' were > used for including the ioat spec header file. > > Target: x86_64-native-bsdapp-clang > 22:10: error: 'rte_ioat_spec.h' file not found with include; use "quotes" instead > #include > ^~~~~~~~~~~~~~~~~ > "rte_ioat_spec.h" > 1 error generated. > > Since this file should always be in the same directory as the main header, > we can safely change the include line to fix this error. > > Fixes: abff4333ec20 ("raw/ioat: create device on probe and destroy on release") > > Signed-off-by: Bruce Richardson Applied, thanks