Commit 4ace1f85 authored by Miklos Szeredi's avatar Miklos Szeredi

fuse: clear MS_I_VERSION

Fuse doesn't support i_version (yet).
Signed-off-by: default avatarMiklos Szeredi <mszeredi@suse.cz>
parent 3ad22c62
......@@ -1004,7 +1004,7 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
if (sb->s_flags & MS_MANDLOCK)
goto err;
sb->s_flags &= ~MS_NOSEC;
sb->s_flags &= ~(MS_NOSEC | MS_I_VERSION);
if (!parse_fuse_opt((char *) data, &d, is_bdev))
goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment