svn commit: r201963 - user/kmacy/releng_8_fcs_buf_xen/sys/i386/include

Kip Macy kmacy at FreeBSD.org
Sat Jan 9 23:43:22 UTC 2010


Author: kmacy
Date: Sat Jan  9 23:43:22 2010
New Revision: 201963
URL: http://svn.freebsd.org/changeset/base/201963

Log:
  increase kstack pages to compensate for reduced optimization and witness on debug kernels

Modified:
  user/kmacy/releng_8_fcs_buf_xen/sys/i386/include/param.h

Modified: user/kmacy/releng_8_fcs_buf_xen/sys/i386/include/param.h
==============================================================================
--- user/kmacy/releng_8_fcs_buf_xen/sys/i386/include/param.h	Sat Jan  9 23:42:31 2010	(r201962)
+++ user/kmacy/releng_8_fcs_buf_xen/sys/i386/include/param.h	Sat Jan  9 23:43:22 2010	(r201963)
@@ -114,7 +114,11 @@
 #define IOPAGES	2		/* pages of i/o permission bitmap */
 
 #ifndef KSTACK_PAGES
+#if !defined(WITNESS) && !defined(DEBUG)
 #define KSTACK_PAGES 2		/* Includes pcb! */
+#else
+#define KSTACK_PAGES 3		/* Includes pcb! */
+#endif
 #endif
 #define KSTACK_GUARD_PAGES 1	/* pages of kstack guard; 0 disables */
 


More information about the svn-src-user mailing list