diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 00:33:23 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 08:09:55 -0800 | 
| commit | 7e35280e517c28b991667a608990227503dd2a30 (patch) | |
| tree | 8253209f6c30f29eac09dd907d45e7ecaa9b9577 /net/sunrpc/sysctl.c | |
| parent | 50d851f7227cf9e7fcc4cd1d2b3c72ddd64c50e6 (diff) | |
| download | olio-linux-3.10-7e35280e517c28b991667a608990227503dd2a30.tar.xz olio-linux-3.10-7e35280e517c28b991667a608990227503dd2a30.zip  | |
[PATCH] sysctl: sunrpc: remove unnecessary insert_at_head flag
Because the sunrpc sysctls don't conflict with any other sysctls the setting
the insert at head flag to register_sysctl has no semantic meaning.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/sunrpc/sysctl.c')
| -rw-r--r-- | net/sunrpc/sysctl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c index 47d8df2b5eb..64ce7098f54 100644 --- a/net/sunrpc/sysctl.c +++ b/net/sunrpc/sysctl.c @@ -36,7 +36,7 @@ void  rpc_register_sysctl(void)  {  	if (!sunrpc_table_header) { -		sunrpc_table_header = register_sysctl_table(sunrpc_table, 1); +		sunrpc_table_header = register_sysctl_table(sunrpc_table, 0);  #ifdef CONFIG_PROC_FS  		if (sunrpc_table[0].de)  			sunrpc_table[0].de->owner = THIS_MODULE;  |