Skip to content

Commit c1f221c

Browse files
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>
1 parent 3c62489 commit c1f221c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

fs/ntfs3/super.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ static int ntfs_fs_parse_param(struct fs_context *fc,
385385
break;
386386
case Opt_acl_bool:
387387
if (result.boolean) {
388+
fallthrough;
388389
case Opt_acl:
389390
#ifdef CONFIG_NTFS3_FS_POSIX_ACL
390391
fc->sb_flags |= SB_POSIXACL;

0 commit comments

Comments
 (0)