summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2005-08-13 20:07:50 +0000
committermarcel <marcel@FreeBSD.org>2005-08-13 20:07:50 +0000
commitf94807ecebdf54659f933acc85c0143f819e1b07 (patch)
treebf3055bdbb275d56f37d60cb87aa05a00ba38e43 /sys
parent08a5c349d1e009be6a5f88841a4614ededa28683 (diff)
downloadFreeBSD-src-f94807ecebdf54659f933acc85c0143f819e1b07.zip
FreeBSD-src-f94807ecebdf54659f933acc85c0143f819e1b07.tar.gz
Make mpsafe_vfs=1 the default on ia64.
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/vfs_subr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 53bd9a8..603e6a4 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -107,7 +107,8 @@ static int vfs_knllocked(void *arg);
* Enable Giant pushdown based on whether or not the vm is mpsafe in this
* build. Without mpsafevm the buffer cache can not run Giant free.
*/
-#if defined(__alpha__) || defined(__amd64__) || defined(__i386__)
+#if defined(__alpha__) || defined(__amd64__) || defined(__i386__) || \
+ defined(__ia64__)
int mpsafe_vfs = 1;
#else
int mpsafe_vfs;
OpenPOWER on IntegriCloud