diff options
Diffstat (limited to 'fs/ufs/super.c')
-rw-r--r-- | fs/ufs/super.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ufs/super.c b/fs/ufs/super.c index 6b9be90dae7d..2c47daed56da 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c | |||
@@ -1454,16 +1454,16 @@ static const struct super_operations ufs_super_ops = { | |||
1454 | .show_options = ufs_show_options, | 1454 | .show_options = ufs_show_options, |
1455 | }; | 1455 | }; |
1456 | 1456 | ||
1457 | static int ufs_get_sb(struct file_system_type *fs_type, | 1457 | static struct dentry *ufs_mount(struct file_system_type *fs_type, |
1458 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) | 1458 | int flags, const char *dev_name, void *data) |
1459 | { | 1459 | { |
1460 | return get_sb_bdev(fs_type, flags, dev_name, data, ufs_fill_super, mnt); | 1460 | return mount_bdev(fs_type, flags, dev_name, data, ufs_fill_super); |
1461 | } | 1461 | } |
1462 | 1462 | ||
1463 | static struct file_system_type ufs_fs_type = { | 1463 | static struct file_system_type ufs_fs_type = { |
1464 | .owner = THIS_MODULE, | 1464 | .owner = THIS_MODULE, |
1465 | .name = "ufs", | 1465 | .name = "ufs", |
1466 | .get_sb = ufs_get_sb, | 1466 | .mount = ufs_mount, |
1467 | .kill_sb = kill_block_super, | 1467 | .kill_sb = kill_block_super, |
1468 | .fs_flags = FS_REQUIRES_DEV, | 1468 | .fs_flags = FS_REQUIRES_DEV, |
1469 | }; | 1469 | }; |