From patchwork Mon Aug 22 18:13:30 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Gunthorpe X-Patchwork-Id: 9294037 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 2789E608A7 for ; Mon, 22 Aug 2016 18:13:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1D9A6287D1 for ; Mon, 22 Aug 2016 18:13:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 10F4B287E6; Mon, 22 Aug 2016 18:13:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 071BB287D1 for ; Mon, 22 Aug 2016 18:13:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752429AbcHVSN4 (ORCPT ); Mon, 22 Aug 2016 14:13:56 -0400 Received: from quartz.orcorp.ca ([184.70.90.242]:41280 "EHLO quartz.orcorp.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751590AbcHVSNz (ORCPT ); Mon, 22 Aug 2016 14:13:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=obsidianresearch.com; s=rsa1; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=26fOqcQsCIXkRoige9wT1ul15KaYNoD1XdDpSa6QwBc=; b=Hdxvkw9Rcc8/YYMXBNfTNjT9xLeQnm3Ef8MrciLIeprbylMnURKFHnh1XHGW453aA7JVVw4tqKw1zw2a0uysqGROVHIUf+UBWliMus8pfJvV8DUmIQCGCw1nK/sPWVwyTCGdnf6kqDsRkaWvcvxCCwp796dTqcyNYFqXpGCiv9s=; Received: from [10.0.0.151] (helo=jggl.edm.orcorp.ca) by quartz.orcorp.ca with esmtps (TLS1.2:ECDHE_RSA_AES_128_CBC_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1bbtjL-0004r7-EB; Mon, 22 Aug 2016 12:13:51 -0600 From: Jason Gunthorpe To: Doug Ledford , linux-rdma@vger.kernel.org Cc: Devesh Sharma , Hal Rosenstock , Mike Marciniszyn , Moni Shoua , Sean Hefty , Steve Wise , Tatyana Nikolova , Vladimir Sokolovsky , Yishai Hadas Subject: [RFCv2 07/15] hfi/ipath: Use the name of the provider for the .driver file Date: Mon, 22 Aug 2016 12:13:30 -0600 Message-Id: <1471889618-1605-8-git-send-email-jgunthorpe@obsidianresearch.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1471889618-1605-1-git-send-email-jgunthorpe@obsidianresearch.com> References: <1471889618-1605-1-git-send-email-jgunthorpe@obsidianresearch.com> X-Broken-Reverse-DNS: no host name found for IP address 10.0.0.151 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The standard is to use the same name for the library and .driver file. The library is called hfi1verbs/ipathverbs so should the .driver, add the verbs suffix. Signed-off-by: Jason Gunthorpe --- libhfi1verbs/Makefile.am | 4 ++-- libhfi1verbs/{hfi1.driver => hfi1verbs.driver} | 0 libipathverbs/Makefile.am | 4 ++-- libipathverbs/{ipath.driver => ipathverbs.driver} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename libhfi1verbs/{hfi1.driver => hfi1verbs.driver} (100%) rename libipathverbs/{ipath.driver => ipathverbs.driver} (100%) diff --git a/libhfi1verbs/Makefile.am b/libhfi1verbs/Makefile.am index 2c690b0570fb..d86ea3dd57e6 100644 --- a/libhfi1verbs/Makefile.am +++ b/libhfi1verbs/Makefile.am @@ -63,7 +63,7 @@ if HAVE_IBV_DEVICE_LIBRARY_EXTENSION src_libhfi1verbs_la_LDFLAGS = -avoid-version -release @IBV_DEVICE_LIBRARY_EXTENSION@ \ $(hfiverbs_version_script) hfiverbsconfdir = $(sysconfdir)/libibverbs.d - hfiverbsconf_DATA = hfi1.driver + hfiverbsconf_DATA = hfi1verbs.driver else hfiverbslibdir = $(libdir)/infiniband hfiverbslib_LTLIBRARIES = src/hfiverbs.la @@ -77,7 +77,7 @@ EXTRA_DIST = src/hfiverbs.h \ config \ autom4te.cache \ libhfi1verbs.spec.in \ - hfi1.driver + hfi1verbs.driver dist-hook: libhfi1verbs.spec cp libhfi1verbs.spec $(distdir) diff --git a/libhfi1verbs/hfi1.driver b/libhfi1verbs/hfi1verbs.driver similarity index 100% rename from libhfi1verbs/hfi1.driver rename to libhfi1verbs/hfi1verbs.driver diff --git a/libipathverbs/Makefile.am b/libipathverbs/Makefile.am index f9d4698c5e2c..4d3e9258d989 100644 --- a/libipathverbs/Makefile.am +++ b/libipathverbs/Makefile.am @@ -45,7 +45,7 @@ if HAVE_IBV_DEVICE_LIBRARY_EXTENSION src_libipathverbs_la_LDFLAGS = -avoid-version -release @IBV_DEVICE_LIBRARY_EXTENSION@ \ $(ipathverbs_version_script) ipathverbsconfdir = $(sysconfdir)/libibverbs.d - ipathverbsconf_DATA = ipath.driver + ipathverbsconf_DATA = ipathverbs.driver else ipathverbslibdir = $(libdir)/infiniband ipathverbslib_LTLIBRARIES = src/ipathverbs.la @@ -59,7 +59,7 @@ EXTRA_DIST = src/ipathverbs.h \ src/ipath-abi.h \ src/ipathverbs.map \ libipathverbs.spec.in \ - ipath.driver \ + ipathverbs.driver \ truescale-serdes.cmds \ truescale.conf diff --git a/libipathverbs/ipath.driver b/libipathverbs/ipathverbs.driver similarity index 100% rename from libipathverbs/ipath.driver rename to libipathverbs/ipathverbs.driver