Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b402f06d6e31b8c3c74bfc3e7d2e292dd4a1b90a
Commit:     b402f06d6e31b8c3c74bfc3e7d2e292dd4a1b90a
Parent:     aa2e3e4f83590fa4c69fe95f01c1a52557859d19
Author:     Eric W. Biederman <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 14 00:33:21 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Feb 14 08:09:55 2007 -0800

    [PATCH] sysctl: x25: remove unnecessary insert_at_head from 
register_sysctl_table
    
    There has not been much maintenance on sysctl in years, and as a result is
    there is a lot to do to allow future interesting work to happen, and being
    ambitious I'm trying to do it all at once :)
    
    The patches in this series fall into several general categories.
    
    - Removal of useless attempts to override the standard sysctls
    
    - Registers of sysctl numbers in sysctl.h so someone else does not use
      the magic number and conflict.
    
    - C99 conversions so it becomes possible to change the layout of
      struct ctl_table without breaking everything.
    
    - Removal of useless claims of module ownership, in the proc dir entries
    
    - Removal of sys_sysctl support where people had used conflicting sysctl
      numbers. Trying to break glibc or other applications by changing the
      ABI is not cool.  9 instances of this in the kernel seems a little
      extreme.
    
    - General enhancements when I got the junk I could see out.
    
    This patch:
    
    Since x25 uses unique binary numbers inserting yourself at the head of the
    search list for sysctls so you can override already registered sysctls is
    pointless.
    
    Signed-off-by: Eric W. Biederman <[EMAIL PROTECTED]>
    Cc: Ralf Baechle <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 net/x25/sysctl_net_x25.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/x25/sysctl_net_x25.c b/net/x25/sysctl_net_x25.c
index 5f63106..68300d4 100644
--- a/net/x25/sysctl_net_x25.c
+++ b/net/x25/sysctl_net_x25.c
@@ -106,7 +106,7 @@ static struct ctl_table x25_root_table[] = {
 
 void __init x25_register_sysctl(void)
 {
-       x25_table_header = register_sysctl_table(x25_root_table, 1);
+       x25_table_header = register_sysctl_table(x25_root_table, 0);
 }
 
 void x25_unregister_sysctl(void)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to