Browse Source

[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>
Eric W. Biederman 18 năm trước cách đây
mục cha
commit
d87abf4276
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      net/decnet/sysctl_net_decnet.c

+ 1 - 1
net/decnet/sysctl_net_decnet.c

@@ -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)