From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id CD7BF1B32A for ; Tue, 7 Nov 2017 00:44:35 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 6CFB420744; Mon, 6 Nov 2017 18:44:35 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Mon, 06 Nov 2017 18:44:35 -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=RrRCCEV4G06ITbT+YlVIHSMUrx KvzyGzWHzop16ci1Y=; b=F7TKOm3dhh1JW5FhgSL7f+qvVBKA/ShF/sTTQcj65B NV0gR6wtqDDhnnu14CACJ0eLb89afH05FChT5PYWo37MYiUmt43Z1A6wMrNfTKmI nxOjsapDU3R1IlIQuSHpjVFqTiLSwKk53oOZ0sSj/5yvJnbvIy12Ewz4fOwR/1IF 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=RrRCCE V4G06ITbT+YlVIHSMUrxKvzyGzWHzop16ci1Y=; b=N27lTtbRBwPxFcaLBIQHhM jVJF0je75gnB+UD3HZxQLNttikAdmSASfSque7E6IK72hx8q2BBg66bLH5hVEmgg HW2H/o96B5yjYgNi51/m7UvATafVefdtkQdZ2+VOAJha03DTq6xzsiB8EE8vCtT8 KFvQARYeUs9uv0MYPRqgDMgpjVKUcBU61d1uC8820hGL1ioEQsBd7auf33g0QqWd wd6NLq0dnQaGJB6DXZ7pWdlgyQZ/tJDDilFpU71GY7YU7sP3DqE/vGOgwlrGO1om Yff/XenU0mI0cqNgt2EFE0/SDfqCrPYP71ICFPHteNg+LaS9TZ1cUGO/vTIqjxsg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 29BC424E4D; Mon, 6 Nov 2017 18:44:35 -0500 (EST) From: Thomas Monjalon To: =?ISO-8859-1?Q?Ga=EBtan?= Rivet Cc: dev@dpdk.org Date: Tue, 07 Nov 2017 00:44:34 +0100 Message-ID: <1908722.EftEn6FQRr@xps> In-Reply-To: <20171106084334.GN10890@bidouze.vm.6wind.com> References: <20171106020847.10462-1-thomas@monjalon.net> <20171106084334.GN10890@bidouze.vm.6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" Subject: Re: [dpdk-dev] [PATCH] bus/pci: fix namespace of sysfs path function 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: , X-List-Received-Date: Mon, 06 Nov 2017 23:44:36 -0000 06/11/2017 09:43, Ga=EBtan Rivet: > There are others namespace inconsistencies with my pci move, I will send > additional fixes later. >=20 > On Mon, Nov 06, 2017 at 03:08:47AM +0100, Thomas Monjalon wrote: > > The function pci_get_sysfs_path was moved from EAL to the PCI driver. > >=20 > > The namespace is now fixed by adding "rte_" prefix. > > The map files are fixed by removing the symbol from EAL and adding > > it to the PCI driver. > >=20 > > It is an API break but it is probably not used by applications. > > Anyway this API is already broken by the move in a new header file. > >=20 > > Fixes: c752998b5e2e ("pci: introduce library and driver") > >=20 > > Signed-off-by: Thomas Monjalon > Acked-by: Gaetan Rivet Applied