Set debug.mpsafevm to true on PowerPC. (Now, by default, all architectures

in CVS have debug.mpsafevm set to true.)

Tested by: grehan@
This commit is contained in:
Alan Cox 2006-07-10 07:08:05 +00:00
parent 2d96c2b1b6
commit ff5ff76116

View File

@ -55,11 +55,7 @@ __FBSDID("$FreeBSD$");
/*
* Virtual memory MPSAFE temporary workarounds.
*/
#if !defined(__powerpc__)
int debug_mpsafevm = 1;
#else
int debug_mpsafevm;
#endif
TUNABLE_INT("debug.mpsafevm", &debug_mpsafevm);
SYSCTL_INT(_debug, OID_AUTO, mpsafevm, CTLFLAG_RD, &debug_mpsafevm, 0,
"Enable/disable MPSAFE virtual memory support");