From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 Subject: [PATCH 10/10] xfs: mount-api - rename xfs_fill_super() From: Ian Kent 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> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-xfs-owner@vger.kernel.org List-ID: List-Id: xfs To: linux-xfs Cc: Dave Chinner , David Howells , Al Viro 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 --- 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