diff options
author | attilio <attilio@FreeBSD.org> | 2011-07-19 13:00:30 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2011-07-19 13:00:30 +0000 |
commit | 30d87a57de4398633a01035704f42b07261d708e (patch) | |
tree | 2edb7740577df4ba44b84edf0682e0a46abdbc60 /sys/ia64 | |
parent | 1f74ad4e1b0cddf974863064f97781d560c019ad (diff) | |
download | FreeBSD-src-30d87a57de4398633a01035704f42b07261d708e.zip FreeBSD-src-30d87a57de4398633a01035704f42b07261d708e.tar.gz |
Bump MAXCPU for amd64, ia64 and XLP mips appropriately.
From now on, default values for FreeBSD will be 64 maxiumum supported
CPUs on amd64 and ia64 and 128 for XLP. All the other architectures
seem already capped appropriately (with the exception of sparc64 which
needs further support on jalapeno flavour).
Bump __FreeBSD_version in order to reflect KBI/KPI brekage introduced
during the infrastructure cleanup for supporting MAXCPU > 32. This
covers cpumask_t retiral too.
The switch is considered completed at the present time, so for whatever
bug you may experience that is reconducible to that area, please report
immediately.
Requested by: marcel, jchandra
Tested by: pluknet, sbruno
Approved by: re (kib)
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/include/param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/include/param.h b/sys/ia64/include/param.h index a3684ab..d996441 100644 --- a/sys/ia64/include/param.h +++ b/sys/ia64/include/param.h @@ -63,7 +63,7 @@ #if defined(SMP) || defined(KLD_MODULE) #ifndef MAXCPU -#define MAXCPU 32 +#define MAXCPU 64 #endif #else #define MAXCPU 1 |