diff options
author | 2025-01-11 15:07:50 +0800 | |
---|---|---|
committer | 2025-02-07 16:53:05 +0100 | |
commit | fa89dbda458b915dcb2f099c1fee495bde28943e (patch) | |
tree | 32afa1cf41ba9ffa9af7c8427c021e03f6219034 | |
parent | sh: vdso: move the sysctl to arch/sh/kernel/vsyscall/vsyscall.c (diff) | |
download | wireguard-linux-fa89dbda458b915dcb2f099c1fee495bde28943e.tar.xz wireguard-linux-fa89dbda458b915dcb2f099c1fee495bde28943e.zip |
sysctl: remove the vm_table
After patch1~14 is applied, all sysctls of vm_table
would be moved. So, delete vm_table.
Signed-off-by: Kaixiong Yu <yukaixiong@huawei.com>
Signed-off-by: Joel Granados <joel.granados@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | kernel/sysctl.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index ebe7c19abffb..4f2d93f701e5 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -2012,12 +2012,9 @@ static const struct ctl_table kern_table[] = { #endif }; -static const struct ctl_table vm_table[] = {}; - int __init sysctl_init_bases(void) { register_sysctl_init("kernel", kern_table); - register_sysctl_init("vm", vm_table); return 0; } |