Skip to content

Commit e09a335

Browse files
author
Al Viro
committed
fix the regression in ufs options parsing
A really dumb braino on rebasing and a dumber fuckup with managing #for-next Fixes: b70cb45 ("ufs: convert ufs to the new mount API") Fucked-up-by: Al Viro <[email protected]> Signed-off-by: Al Viro <[email protected]>
1 parent 89be9a8 commit e09a335

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)