From: Eric W. Biederman Date: Wed, 14 Feb 2007 08:33:27 +0000 (-0800) Subject: [PATCH] sysctl: ipx: remove unnecessary insert_at_head flag X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ecab963ac1aa7d92369564c5dd4ad04ec5853380;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [PATCH] sysctl: ipx: remove unnecessary insert_at_head flag The sysctl numbers used are unique so setting the insert_at_head flag servers no semantic 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/ipx/sysctl_net_ipx.c b/net/ipx/sysctl_net_ipx.c index 85ae35fa1e0e..0397b0985b79 100644 --- a/net/ipx/sysctl_net_ipx.c +++ b/net/ipx/sysctl_net_ipx.c @@ -52,7 +52,7 @@ static struct ctl_table_header *ipx_table_header; void ipx_register_sysctl(void) { - ipx_table_header = register_sysctl_table(ipx_root_table, 1); + ipx_table_header = register_sysctl_table(ipx_root_table, 0); } void ipx_unregister_sysctl(void)