Skip to content

Commit

Permalink
[PATCH] sysctl: ipx: remove unnecessary insert_at_head flag
Browse files Browse the repository at this point in the history
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 <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
ebiederm authored and Linus Torvalds committed Feb 14, 2007
1 parent 9fa7b46 commit ecab963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipx/sysctl_net_ipx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ecab963

Please sign in to comment.