Enable debug_mpsafevm on ia64 due to the severe functional regression

caused by recent locking changes when it's off. Revert the logic to
trim down the conditional.

Clued-in by: alc@
This commit is contained in:
Marcel Moolenaar 2005-05-08 23:56:16 +00:00
parent 239a676456
commit 23110bedcd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146017

View File

@ -55,7 +55,7 @@ __FBSDID("$FreeBSD$");
/*
* Virtual memory MPSAFE temporary workarounds.
*/
#if defined(__alpha__) || defined(__amd64__) || defined(__i386__) || defined(__sparc64__)
#if !defined(__arm__) && !defined(__powerpc__)
int debug_mpsafevm = 1;
#else
int debug_mpsafevm;