svn commit: r204956 - in stable/7/sys: amd64/include i386/include

John Baldwin jhb at FreeBSD.org
Wed Mar 10 15:47:34 UTC 2010


Author: jhb
Date: Wed Mar 10 15:47:33 2010
New Revision: 204956
URL: http://svn.freebsd.org/changeset/base/204956

Log:
  Revert the change to increase MAXCPU to 32 on amd64 and i386.  MAXCPU is
  part of the de facto KBI currently.

Modified:
  stable/7/sys/amd64/include/param.h
  stable/7/sys/i386/include/param.h
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/amd64/include/param.h
==============================================================================
--- stable/7/sys/amd64/include/param.h	Wed Mar 10 15:22:26 2010	(r204955)
+++ stable/7/sys/amd64/include/param.h	Wed Mar 10 15:47:33 2010	(r204956)
@@ -71,7 +71,7 @@
 #endif
 
 #if defined(SMP) || defined(KLD_MODULE)
-#define MAXCPU		32
+#define MAXCPU		16
 #else
 #define MAXCPU		1
 #endif

Modified: stable/7/sys/i386/include/param.h
==============================================================================
--- stable/7/sys/i386/include/param.h	Wed Mar 10 15:22:26 2010	(r204955)
+++ stable/7/sys/i386/include/param.h	Wed Mar 10 15:47:33 2010	(r204956)
@@ -66,7 +66,7 @@
 #define MID_MACHINE	MID_I386
 
 #if defined(SMP) || defined(KLD_MODULE)
-#define MAXCPU		32
+#define MAXCPU		16
 #else
 #define MAXCPU		1
 #endif /* SMP */


More information about the svn-src-stable-7 mailing list