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>
This commit is contained in:
Kaixiong Yu
2025-01-11 15:07:50 +08:00
committed by Joel Granados
parent f569ca4b14
commit fa89dbda45

View File

@@ -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;
}