Make mpsafe_vfs=1 the default on ia64.

This commit is contained in:
Marcel Moolenaar 2005-08-13 20:07:50 +00:00
parent 5af09736a8
commit fd65baf8e2

View File

@ -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;