diff options
-rw-r--r-- | fs/gfs2/ops_fstype.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index b68eb6b4a4c1..b040fda1f54c 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -812,11 +812,10 @@ static int fill_super(struct super_block *sb, void *data, int silent) | |||
812 | return error; | 812 | return error; |
813 | } | 813 | } |
814 | 814 | ||
815 | static struct super_block *gfs2_get_sb(struct file_system_type *fs_type, | 815 | static int gfs2_get_sb(struct file_system_type *fs_type, int flags, |
816 | int flags, const char *dev_name, | 816 | const char *dev_name, void *data, struct vfsmount *mnt) |
817 | void *data) | ||
818 | { | 817 | { |
819 | return get_sb_bdev(fs_type, flags, dev_name, data, fill_super); | 818 | return get_sb_bdev(fs_type, flags, dev_name, data, fill_super, mnt); |
820 | } | 819 | } |
821 | 820 | ||
822 | static void gfs2_kill_sb(struct super_block *sb) | 821 | static void gfs2_kill_sb(struct super_block *sb) |