diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-07-23 08:53:38 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-07-23 08:53:38 -0700 |
| commit | 01a412d06bc5786eb4e44a6c8f0f4659bd4c9864 (patch) | |
| tree | 6ae4436557d0cb4f0a178bfb16d1964b3f319190 | |
| parent | Merge tag 'platform-drivers-x86-v6.16-4' of git://git.kernel.org/pub/scm/linu... (diff) | |
| parent | fix the regression in ufs options parsing (diff) | |
| download | linux-01a412d06bc5786eb4e44a6c8f0f4659bd4c9864.tar.gz linux-01a412d06bc5786eb4e44a6c8f0f4659bd4c9864.zip | |
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
Diffstat (limited to '')
| -rw-r--r-- | fs/ufs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ufs/super.c b/fs/ufs/super.c index eea718ac66b4..6e4585169f94 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c @@ -397,7 +397,7 @@ static int ufs_parse_param(struct fs_context *fc, struct fs_parameter *param) pr_err("ufstype can't be changed during remount\n"); return -EINVAL; } - if (!ctx->flavour) { + if (ctx->flavour) { pr_err("conflicting ufstype options\n"); return -EINVAL; } |
