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 D5E7FA04B1; Tue, 24 Nov 2020 16:23:03 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B5158C92E; Tue, 24 Nov 2020 16:23:02 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 6DB2DC90E; Tue, 24 Nov 2020 16:22:59 +0100 (CET) IronPort-SDR: rFOO2VMkRDnpXzmB1XfTHziltfskrCeTRqlXF1cwACF3eujg77/ymaDZd1GU8iMQC9dxruG5Xx 1qreKzMQLdzw== X-IronPort-AV: E=McAfee;i="6000,8403,9815"; a="171180581" X-IronPort-AV: E=Sophos;i="5.78,366,1599548400"; d="scan'208";a="171180581" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Nov 2020 07:22:57 -0800 IronPort-SDR: WYSxX81ijsTaK4Aj/FltMGqCoFp1WWjG5wnGr0kIXfbHM92SUhLx2eZ/8baD98SGOynBTX9Zon O0Jcei5XSNyA== X-IronPort-AV: E=Sophos;i="5.78,366,1599548400"; d="scan'208";a="361918145" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.6.210]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 24 Nov 2020 07:22:56 -0800 Date: Tue, 24 Nov 2020 15:22:53 +0000 From: Bruce Richardson To: Timothy Redaelli Cc: Anatoly Burakov , dev@dpdk.org, stable@dpdk.org Message-ID: <20201124152253.GB1771@bricha3-MOBL.ger.corp.intel.com> References: <4a04b06b040ac16c45addf92fb43f59b070f185a.1606229937.git.tredaelli@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4a04b06b040ac16c45addf92fb43f59b070f185a.1606229937.git.tredaelli@redhat.com> Subject: Re: [dpdk-dev] [PATCH 2/2] eal: fix loading of shared libs from driver plugin directories 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" On Tue, Nov 24, 2020 at 04:14:15PM +0100, Timothy Redaelli wrote: > Commit 49b536fc3060 ("eal: load only shared libs from driver plugin directories") > introduced a check that any shared library must ends with .so, but it can't > work, at least, on Fedora/CentOS/RHEL since .so symlinks are not installed > when you install dpdk package, but only when you install dpdk-devel package. > > This commit adds also a check for .so.ABI_VERSION to check for shared > lib. > > See Fedora Packaging Guidelines for more informations: > https://docs.fedoraproject.org/en-US/packaging-guidelines/#_devel_packages > > Fixes: 49b536fc3060 ("eal: load only shared libs from driver plugin directories") > Cc: bruce.richardson@intel.com > Signed-off-by: Timothy Redaelli > --- Acked-by: Bruce Richardson