diff options
Diffstat (limited to 'fs/hugetlbfs/inode.c')
| -rw-r--r-- | fs/hugetlbfs/inode.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 3a5b4e92345..4665c26171f 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c @@ -723,10 +723,10 @@ void hugetlb_put_quota(struct address_space *mapping)  	}  } -static struct super_block *hugetlbfs_get_sb(struct file_system_type *fs_type, -	int flags, const char *dev_name, void *data) +static int hugetlbfs_get_sb(struct file_system_type *fs_type, +	int flags, const char *dev_name, void *data, struct vfsmount *mnt)  { -	return get_sb_nodev(fs_type, flags, data, hugetlbfs_fill_super); +	return get_sb_nodev(fs_type, flags, data, hugetlbfs_fill_super, mnt);  }  static struct file_system_type hugetlbfs_fs_type = {  |