* [PATCH] fs: fix switch/case indentation in sysfs() syscall
@ 2026-08-08 18:28 Manush Prajwal
2026-08-12 7:24 ` Christian Brauner
0 siblings, 1 reply; 2+ messages in thread
From: Manush Prajwal @ 2026-08-08 18:28 UTC (permalink / raw)
To: viro, brauner; +Cc: jack, linux-fsdevel, linux-kernel, Manush Prajwal
The case labels in the sysfs(2) syscall implementation are indented
one level deeper than the switch statement itself, which does not
match the kernel coding style (switch and case should be at the same
indentation level). Fix the indentation; no functional change.
Signed-off-by: Manush Prajwal <manushprajwal555@gmail.com>
---
fs/filesystems.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/fs/filesystems.c b/fs/filesystems.c
index 673a03b5f..3083d904d 100644
--- a/fs/filesystems.c
+++ b/fs/filesystems.c
@@ -201,17 +201,17 @@ SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2)
int retval = -EINVAL;
switch (option) {
- case 1:
- retval = fs_index((const char __user *) arg1);
- break;
+ case 1:
+ retval = fs_index((const char __user *) arg1);
+ break;
- case 2:
- retval = fs_name(arg1, (char __user *) arg2);
- break;
+ case 2:
+ retval = fs_name(arg1, (char __user *) arg2);
+ break;
- case 3:
- retval = fs_maxindex();
- break;
+ case 3:
+ retval = fs_maxindex();
+ break;
}
return retval;
}
--
2.46.2.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-12 7:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-08 18:28 [PATCH] fs: fix switch/case indentation in sysfs() syscall Manush Prajwal
2026-08-12 7:24 ` Christian Brauner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox