[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20260209114206.7307-1-almaz.alexandrovich@paragon-software.com>
Date: Mon, 9 Feb 2026 12:42:06 +0100
From: Konstantin Komarov <almaz.alexandrovich@...agon-software.com>
To: <ntfs3@...ts.linux.dev>
CC: <linux-kernel@...r.kernel.org>, <linux-fsdevel@...r.kernel.org>,
Konstantin Komarov <almaz.alexandrovich@...agon-software.com>, kernel test
robot <lkp@...el.com>
Subject: [PATCH] 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@...el.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202602041402.uojBz5QY-lkp@intel.com/
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@...agon-software.com>
---
fs/ntfs3/super.c | 1 +
1 file changed, 1 insertion(+)
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;
--
2.43.0
Powered by blists - more mailing lists