]> Git Repo - linux.git/commitdiff
[PATCH] sysctl: sunrpc: remove unnecessary insert_at_head flag
authorEric W. Biederman <[email protected]>
Wed, 14 Feb 2007 08:33:23 +0000 (00:33 -0800)
committerLinus Torvalds <[email protected]>
Wed, 14 Feb 2007 16:09:55 +0000 (08:09 -0800)
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 <[email protected]>
Cc: Trond Myklebust <[email protected]>
Cc: Neil Brown <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
net/sunrpc/sysctl.c
net/sunrpc/xprtsock.c

index 47d8df2b5eb2a94bf378704a748555efdcc86221..64ce7098f541d11976f080248099b45fa12bae46 100644 (file)
@@ -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;
index 95e03ad1c555cefed900ce12cffda1537518c8e0..389b1180911a49f6b588aa99ad1192027cbfcb68 100644 (file)
@@ -1636,7 +1636,7 @@ int init_socket_xprt(void)
 {
 #ifdef RPC_DEBUG
        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;
This page took 0.055783 seconds and 4 git commands to generate.