From patchwork Mon Jun 24 02:59:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Kent X-Patchwork-Id: 11012099 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 401C7186E for ; Mon, 24 Jun 2019 03:08:35 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2DF0C28B02 for ; Mon, 24 Jun 2019 03:08:35 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2257128B1E; Mon, 24 Jun 2019 03:08:35 +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=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI 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 C730D28B02 for ; Mon, 24 Jun 2019 03:08:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726981AbfFXDIe (ORCPT ); Sun, 23 Jun 2019 23:08:34 -0400 Received: from icp-osb-irony-out1.external.iinet.net.au ([203.59.1.210]:33411 "EHLO icp-osb-irony-out1.external.iinet.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726980AbfFXDIe (ORCPT ); Sun, 23 Jun 2019 23:08:34 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2AJAQCVOxBd/3Gu0HYNVxwBAQEEAQEHBAEBgWeELYQWk0kGgRGJeIUXihCBZwkBAQEBAQEBAQE3AQEBhDoDAgKDATgTAQMBAQEEAQEBAQQBkHsCAQMjVhAYDQImAgJHEAYThRmiSXGBMRqKEYEMKIFiihN4gQeBRIMdhCyDIoJYBI5KhXc/lQkJghaTfQyNIAOKGC2DY6IogXlNLgqDJ4JNF44tZZAyAQE X-IPAS-Result: A2AJAQCVOxBd/3Gu0HYNVxwBAQEEAQEHBAEBgWeELYQWk0kGgRGJeIUXihCBZwkBAQEBAQEBAQE3AQEBhDoDAgKDATgTAQMBAQEEAQEBAQQBkHsCAQMjVhAYDQImAgJHEAYThRmiSXGBMRqKEYEMKIFiihN4gQeBRIMdhCyDIoJYBI5KhXc/lQkJghaTfQyNIAOKGC2DY6IogXlNLgqDJ4JNF44tZZAyAQE X-IronPort-AV: E=Sophos;i="5.63,410,1557158400"; d="scan'208";a="221015963" Received: from unknown (HELO [192.168.1.222]) ([118.208.174.113]) by icp-osb-irony-out1.iinet.net.au with ESMTP; 24 Jun 2019 10:59:22 +0800 Subject: [PATCH 10/10] xfs: mount-api - rename xfs_fill_super() From: Ian Kent To: linux-xfs Cc: Dave Chinner , David Howells , Al Viro Date: Mon, 24 Jun 2019 10:59:21 +0800 Message-ID: <156134516161.2519.11373830976371295990.stgit@fedora-28> In-Reply-To: <156134510205.2519.16185588460828778620.stgit@fedora-28> References: <156134510205.2519.16185588460828778620.stgit@fedora-28> User-Agent: StGit/unknown-version MIME-Version: 1.0 Sender: linux-xfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Now the legacy mount functions have been removed xfs_fill_super() can be renamed to xfs_fs_fill_super() in keeping with the previous xfs naming convention. Signed-off-by: Ian Kent Reviewed-by: Darrick J. Wong --- fs/xfs/xfs_super.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 643b40e8a328..38f3af44fbbf 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1756,7 +1756,7 @@ __xfs_fs_fill_super( } STATIC int -xfs_fill_super( +xfs_fs_fill_super( struct super_block *sb, struct fs_context *fc) { @@ -1798,7 +1798,7 @@ STATIC int xfs_get_tree( struct fs_context *fc) { - return vfs_get_block_super(fc, xfs_fill_super); + return vfs_get_block_super(fc, xfs_fs_fill_super); } STATIC void