diff options
Diffstat (limited to 'fs/ntfs/super.c')
-rw-r--r-- | fs/ntfs/super.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index 27833f6df49f..d5d5e969294f 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c | |||
@@ -3093,10 +3093,11 @@ struct kmem_cache *ntfs_index_ctx_cache; | |||
3093 | /* Driver wide mutex. */ | 3093 | /* Driver wide mutex. */ |
3094 | DEFINE_MUTEX(ntfs_lock); | 3094 | DEFINE_MUTEX(ntfs_lock); |
3095 | 3095 | ||
3096 | static struct super_block *ntfs_get_sb(struct file_system_type *fs_type, | 3096 | static int ntfs_get_sb(struct file_system_type *fs_type, |
3097 | int flags, const char *dev_name, void *data) | 3097 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
3098 | { | 3098 | { |
3099 | return get_sb_bdev(fs_type, flags, dev_name, data, ntfs_fill_super); | 3099 | return get_sb_bdev(fs_type, flags, dev_name, data, ntfs_fill_super, |
3100 | mnt); | ||
3100 | } | 3101 | } |
3101 | 3102 | ||
3102 | static struct file_system_type ntfs_fs_type = { | 3103 | static struct file_system_type ntfs_fs_type = { |