sysctl: Register the base sysctl table like any other sysctl table.
Simplify the code by treating the base sysctl table like any other sysctl table and register it with register_sysctl_table. To ensure this table is registered early enough to avoid problems call sysctl_init from proc_sys_init. Rename sysctl_net.c:sysctl_init() to net_sysctl_init() to avoid name conflicts now that kernel/sysctl.c:sysctl_init() is no longer static. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
@@ -468,5 +468,6 @@ int __init proc_sys_init(void)
|
||||
proc_sys_root->proc_iops = &proc_sys_dir_operations;
|
||||
proc_sys_root->proc_fops = &proc_sys_dir_file_operations;
|
||||
proc_sys_root->nlink = 0;
|
||||
return 0;
|
||||
|
||||
return sysctl_init();
|
||||
}
|
||||
|
Reference in New Issue
Block a user