svn commit: r291702 - head/sys/powerpc/include

Nathan Whitehorn nwhitehorn at FreeBSD.org
Thu Dec 3 16:24:56 UTC 2015


Author: nwhitehorn
Date: Thu Dec  3 16:24:55 2015
New Revision: 291702
URL: https://svnweb.freebsd.org/changeset/base/291702

Log:
  Bump MAXCPU. We already run on hardware with 32 threads and the same hardware
  is available commercially with up to 96 threads per socket.
  
  MFC after:	3 weeks

Modified:
  head/sys/powerpc/include/param.h

Modified: head/sys/powerpc/include/param.h
==============================================================================
--- head/sys/powerpc/include/param.h	Thu Dec  3 15:41:10 2015	(r291701)
+++ head/sys/powerpc/include/param.h	Thu Dec  3 16:24:55 2015	(r291702)
@@ -69,7 +69,7 @@
 
 #if defined(SMP) || defined(KLD_MODULE)
 #ifndef MAXCPU
-#define	MAXCPU		32	
+#define	MAXCPU		256
 #endif
 #else
 #define	MAXCPU		1


More information about the svn-src-all mailing list