Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern avoid code duplication.



details:   https://anonhg.NetBSD.org/src/rev/58fb5c41ddca
branches:  trunk
changeset: 761679:58fb5c41ddca
user:      christos <christos%NetBSD.org@localhost>
date:      Sat Feb 05 01:22:12 2011 +0000

description:
avoid code duplication.

diffstat:

 sys/kern/init_sysctl.c |  23 ++++++++++-------------
 1 files changed, 10 insertions(+), 13 deletions(-)

diffs (49 lines):

diff -r beff4832f47e -r 58fb5c41ddca sys/kern/init_sysctl.c
--- a/sys/kern/init_sysctl.c    Sat Feb 05 00:37:40 2011 +0000
+++ b/sys/kern/init_sysctl.c    Sat Feb 05 01:22:12 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: init_sysctl.c,v 1.178 2011/01/28 20:31:10 pooka Exp $ */
+/*     $NetBSD: init_sysctl.c,v 1.179 2011/02/05 01:22:12 christos Exp $ */
 
 /*-
  * Copyright (c) 2003, 2007, 2008, 2009 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysctl.c,v 1.178 2011/01/28 20:31:10 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysctl.c,v 1.179 2011/02/05 01:22:12 christos Exp $");
 
 #include "opt_sysv.h"
 #include "opt_compat_netbsd.h"
@@ -734,22 +734,19 @@
                       sysctl_security_setidcore, 0, &security_setidcore_mode,
                       0,
                       CTL_CREATE, CTL_EOL);
-#ifdef KERN_SA
        sysctl_createv(clog, 0, NULL, NULL,
                       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
                       CTLTYPE_INT, "no_sa_support",
-                      SYSCTL_DESCR("0 if the kernel supports SA, otherwise it doesn't"),
-                      NULL, 0, &sa_system_disabled, 0,
-                      CTL_KERN, CTL_CREATE, CTL_EOL);
+                      SYSCTL_DESCR("0 if the kernel supports SA, otherwise "
+                      "it doesn't"),
+                      NULL, 
+#ifdef KERN_SA
+                      0, &sa_system_disabled,
 #else
-       sysctl_createv(clog, 0, NULL, NULL,
-                      CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
-                      CTLTYPE_INT, "no_sa_support",
-                      SYSCTL_DESCR("0 if the kernel supports SA, otherwise it doesn't"),
-                      NULL, 1, NULL, 0,
+                      1, NULL,
+#endif
+                      0,
                       CTL_KERN, CTL_CREATE, CTL_EOL);
-#endif
-
        /* kern.posix. */
        sysctl_createv(clog, 0, NULL, &rnode,
                        CTLFLAG_PERMANENT,



Home | Main Index | Thread Index | Old Index