Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Aug 2015 19:53:20 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287264 - head/sys/kern
Message-ID:  <201508281953.t7SJrKGI049644@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508281953.t7SJrKGI049644>