diff options
author | marcel <marcel@FreeBSD.org> | 2005-05-08 23:56:16 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2005-05-08 23:56:16 +0000 |
commit | 9be5f7d46aaf343e16bcf102a95efaa2c7d811f6 (patch) | |
tree | fc8d95e407fa7aa3f6dd94d1b5f26232f6014993 /sys | |
parent | 51b4d0ab7185a276a61d4152968bb0e56b681b12 (diff) | |
download | FreeBSD-src-9be5f7d46aaf343e16bcf102a95efaa2c7d811f6.zip FreeBSD-src-9be5f7d46aaf343e16bcf102a95efaa2c7d811f6.tar.gz |
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@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm_meter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_meter.c b/sys/vm/vm_meter.c index ac2906a..c5d3abc 100644 --- a/sys/vm/vm_meter.c +++ b/sys/vm/vm_meter.c @@ -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; |