From: Konstantin Komarov Date: Mon, 9 Feb 2026 09:51:38 +0000 (+0100) Subject: fs/ntfs3: add fall-through between switch labels X-Git-Tag: v7.0-rc1~55^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1f221c1be6f641506d647297062ce5d21d03867;p=thirdparty%2Fkernel%2Flinux.git 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 Closes: https://lore.kernel.org/oe-kbuild-all/202602041402.uojBz5QY-lkp@intel.com/ Signed-off-by: Konstantin Komarov --- diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c index 4f423d3a248c3..a3c07f2b604fb 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;