Skip to content

Commit

Permalink
fuse: clear MS_I_VERSION
Browse files Browse the repository at this point in the history
Fuse doesn't support i_version (yet).

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
  • Loading branch information
Miklos Szeredi committed Apr 28, 2014
1 parent 3ad22c6 commit 4ace1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/fuse/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4ace1f8

Please sign in to comment.