svn commit: r359898 - head/sys/conf

Conrad Meyer cem at FreeBSD.org
Mon Apr 13 20:25:01 UTC 2020


Author: cem
Date: Mon Apr 13 20:25:01 2020
New Revision: 359898
URL: https://svnweb.freebsd.org/changeset/base/359898

Log:
  Disable QUEUE_MACRO_DEBUG_TRACE in LINT kernels
  
  It changes the size of TAILQ_ENTRY, which obviously impacts ABI in a variety of
  ways.  Some of these things are _Static_asserted.  For now, mask the option
  from LINT.
  
  Reported by:	crees, np, jhb
  X-MFC-With:	r359829
  Sponsored by:	Dell EMC Isilon

Modified:
  head/sys/conf/NOTES

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Mon Apr 13 20:12:47 2020	(r359897)
+++ head/sys/conf/NOTES	Mon Apr 13 20:25:01 2020	(r359898)
@@ -423,7 +423,7 @@ options 	QUEUE_MACRO_DEBUG_TRASH
 # Stores information about the last caller to modify the list object
 # in the list object.  Requires additional memory overhead.
 #
-options 	QUEUE_MACRO_DEBUG_TRACE
+#options 	QUEUE_MACRO_DEBUG_TRACE
 
 #
 # SYSCTL_DEBUG enables a 'sysctl' debug tree that can be used to dump the


More information about the svn-src-all mailing list