diff options
Diffstat (limited to 'fs/ubifs/super.c')
| -rw-r--r-- | fs/ubifs/super.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 5862dd9d278..1c766c39c03 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -2136,7 +2136,7 @@ static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags,  	dbg_gen("opened ubi%d_%d", c->vi.ubi_num, c->vi.vol_id); -	sb = sget(fs_type, sb_test, sb_set, c); +	sb = sget(fs_type, sb_test, sb_set, flags, c);  	if (IS_ERR(sb)) {  		err = PTR_ERR(sb);  		kfree(c); @@ -2153,7 +2153,6 @@ static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags,  			goto out_deact;  		}  	} else { -		sb->s_flags = flags;  		err = ubifs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);  		if (err)  			goto out_deact;  |