Skip to content

Commit 01a412d

Browse files
committed
Merge tag 'pull-ufs-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull ufs fix from Al Viro: "Fix regression in ufs options parsing" * tag 'pull-ufs-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: fix the regression in ufs options parsing
2 parents 964ebc0 + e09a335 commit 01a412d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/ufs/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ static int ufs_parse_param(struct fs_context *fc, struct fs_parameter *param)
397397
pr_err("ufstype can't be changed during remount\n");
398398
return -EINVAL;
399399
}
400-
if (!ctx->flavour) {
400+
if (ctx->flavour) {
401401
pr_err("conflicting ufstype options\n");
402402
return -EINVAL;
403403
}

0 commit comments

Comments
 (0)