aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index f2a0778536f4..d03c89a36655 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -853,14 +853,16 @@ fail_vfsop:
853 return -error; 853 return -error;
854} 854}
855 855
856STATIC struct super_block * 856STATIC int
857xfs_fs_get_sb( 857xfs_fs_get_sb(
858 struct file_system_type *fs_type, 858 struct file_system_type *fs_type,
859 int flags, 859 int flags,
860 const char *dev_name, 860 const char *dev_name,
861 void *data) 861 void *data,
862 struct vfsmount *mnt)
862{ 863{
863 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super); 864 return get_sb_bdev(fs_type, flags, dev_name, data, xfs_fs_fill_super,
865 mnt);
864} 866}
865 867
866STATIC struct super_operations xfs_super_operations = { 868STATIC struct super_operations xfs_super_operations = {