diff options
| author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2026-02-09 10:51:38 +0100 |
|---|---|---|
| committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2026-02-09 10:59:28 +0100 |
| commit | c1f221c1be6f641506d647297062ce5d21d03867 (patch) | |
| tree | 95bce12f858f4ff184cb046d241d4a97caacc8f5 /fs/ntfs3 | |
| parent | 3c6248937fb9fe5cfb29aa8813e18c50095e4db7 (diff) | |
| download | lwn-c1f221c1be6f641506d647297062ce5d21d03867.tar.gz lwn-c1f221c1be6f641506d647297062ce5d21d03867.zip | |
fs/ntfs3: add fall-through between switch labels
Add fall-through to fix the warning in ntfs_fs_parse_param().
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202602041402.uojBz5QY-lkp@intel.com/
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3')
| -rw-r--r-- | fs/ntfs3/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 4f423d3a248c..a3c07f2b604f 100644 --- a/fs/ntfs3/super.c +++ b/fs/ntfs3/super.c @@ -385,6 +385,7 @@ static int ntfs_fs_parse_param(struct fs_context *fc, break; case Opt_acl_bool: if (result.boolean) { + fallthrough; case Opt_acl: #ifdef CONFIG_NTFS3_FS_POSIX_ACL fc->sb_flags |= SB_POSIXACL; |
