summaryrefslogtreecommitdiff
path: root/kernel/sys.c
diff options
context:
space:
mode:
authorJoel Granados <joel.granados@kernel.org>2025-06-27 10:12:40 +0200
committerJoel Granados <joel.granados@kernel.org>2025-07-23 11:56:02 +0200
commit73184c8e4ff447b866dac13fc4f1a4079c78a69d (patch)
tree5acf82346874554a483738356f32f1bac71d0ac2 /kernel/sys.c
parent25ebbce1f188aa2d3e83fcfcf24da8610362564b (diff)
sysctl: rename kern_table -> sysctl_subsys_table
Renamed sysctl table from kern_table to sysctl_subsys_table and grouped the two arch specific ctls to the end of the array. This is part of a greater effort to move ctl tables into their respective subsystems which will reduce the merge conflicts in kernel/sysctl.c. Signed-off-by: Joel Granados <joel.granados@kernel.org>
Diffstat (limited to 'kernel/sys.c')
-rw-r--r--kernel/sys.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/sys.c b/kernel/sys.c
index bbeee62f9abc..18a037cc6f61 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -210,7 +210,6 @@ static int __init init_overflow_sysctl(void)
postcore_initcall(init_overflow_sysctl);
-
/*
* Returns true if current's euid is same as p's uid or euid,
* or has CAP_SYS_NICE to p's user_ns.