1
0
Fork 0

[PATCH] sysctl: decnet: remove unnecessary insert_at_head flag

The sysctl numbers used are unique so setting the insert_at_head flag does not
succeed in overriding any sysctls, and is just confusing because it doesn't.
Clear the flag.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Patrick Caulfield <patrick@tykepenguin.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
wifi-calibration
Eric W. Biederman 2007-02-14 00:33:28 -08:00 committed by Linus Torvalds
parent ecab963ac1
commit d87abf4276
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ static ctl_table dn_root_table[] = {
void dn_register_sysctl(void)
{
dn_table_header = register_sysctl_table(dn_root_table, 1);
dn_table_header = register_sysctl_table(dn_root_table, 0);
}
void dn_unregister_sysctl(void)