From: Eric W. Biederman Date: Wed, 14 Feb 2007 08:33:26 +0000 (-0800) Subject: [PATCH] sysctl: llc: remove unnecessary insert_at_head flag X-Git-Tag: v2.6.21-rc1~239 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9fa7b46d73d2849a7234d0967152c39deb4e815f;p=karo-tx-linux.git [PATCH] sysctl: llc: remove unnecessary insert_at_head flag The sysctl numbers used are unique so setting the insert_at_head flag serves no semantis purpose, and is just confusing. Signed-off-by: Eric W. Biederman Cc: Arnaldo Carvalho de Melo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/net/llc/sysctl_net_llc.c b/net/llc/sysctl_net_llc.c index d047a3e15714..bcec7e1eda95 100644 --- a/net/llc/sysctl_net_llc.c +++ b/net/llc/sysctl_net_llc.c @@ -116,7 +116,7 @@ static struct ctl_table_header *llc_table_header; int __init llc_sysctl_init(void) { - llc_table_header = register_sysctl_table(llc_root_table, 1); + llc_table_header = register_sysctl_table(llc_root_table, 0); return llc_table_header ? 0 : -ENOMEM; }