svn commit: r324890 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Mon Oct 23 01:00:37 UTC 2017


Author: mjg
Date: Mon Oct 23 01:00:35 2017
New Revision: 324890
URL: https://svnweb.freebsd.org/changeset/base/324890

Log:
  Bump WITNESS_PENDLIST to accomodate sleepq chain bump.
  
  Reported by:	ngie

Modified:
  head/sys/kern/subr_witness.c

Modified: head/sys/kern/subr_witness.c
==============================================================================
--- head/sys/kern/subr_witness.c	Mon Oct 23 00:56:59 2017	(r324889)
+++ head/sys/kern/subr_witness.c	Mon Oct 23 01:00:35 2017	(r324890)
@@ -137,7 +137,7 @@ __FBSDID("$FreeBSD$");
 #define	WITNESS_COUNT 		1536
 #endif
 #define	WITNESS_HASH_SIZE	251	/* Prime, gives load factor < 2 */
-#define	WITNESS_PENDLIST	(1024 + MAXCPU)
+#define	WITNESS_PENDLIST	(2048 + MAXCPU)
 
 /* Allocate 256 KB of stack data space */
 #define	WITNESS_LO_DATA_COUNT	2048


More information about the svn-src-head mailing list