Author: imp
Date: Fri Aug 28 19:53:19 2015
New Revision: 287264
URL: https://svnweb.freebsd.org/changeset/base/287264

Log:
  Per overwhelming sentiment in the code review, use FEATURE instead.
  
  Differential Revision: https://reviews.freebsd.org/D3488
  MFC After: 2 days

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c   Fri Aug 28 16:29:38 2015        (r287263)
+++ head/sys/kern/init_main.c   Fri Aug 28 19:53:19 2015        (r287264)
@@ -119,12 +119,8 @@ SYSCTL_INT(_debug, OID_AUTO, bootverbose
 
 /* Want to avoid defining INVARIANTS if not already defined */
 #ifdef INVARIANTS
-static int     invariants = 1;
-#else
-static int     invariants = 0;
+FEATURE(invariants, "Kernel compiled with INVARIANTS, may affect performance");
 #endif
-SYSCTL_INT(_debug, OID_AUTO, invariants, CTLFLAG_RD, &invariants, 0,
-       "Kernel compiled with invariants");
 
 /*
  * This ensures that there is at least one entry so that the sysinit_set
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to