diff options
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c index 7a8e9130dc2..ee4af801425 100644 --- a/sys/arch/amd64/amd64/trap.c +++ b/sys/arch/amd64/amd64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.16 2009/01/31 21:18:35 grange Exp $ */ +/* $OpenBSD: trap.c,v 1.17 2009/06/06 18:57:31 art Exp $ */ /* $NetBSD: trap.c,v 1.2 2003/05/04 23:51:56 fvdl Exp $ */ /*- @@ -344,10 +344,6 @@ copyfault: case T_PAGEFLT: /* allow page faults in kernel mode */ if (p == NULL) goto we_re_toast; -#ifdef MULTIPROCESSOR - if ((p->p_flag & P_BIGLOCK) == 0) - goto we_re_toast; -#endif cr2 = rcr2(); KERNEL_LOCK(); goto faultcommon; |