summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2007-05-11 10:06:57 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2007-05-11 10:06:57 +0000
commitebfc5f745f41b3eba34dc6307aab7d5aa969f2ed (patch)
treef2e985dd112ef2955df413538b1f5bf30eb4e434 /sys/arch
parentcdb3ab5492ffd4d895cfd28b9d5f5839ea201ce4 (diff)
Don't use LK_CANRECURSE for the kernel lock, okay miod@ art@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/trap.c4
-rw-r--r--sys/arch/i386/i386/trap.c4
-rw-r--r--sys/arch/m88k/m88k/trap.c6
-rw-r--r--sys/arch/vax/bi/if_ni.c4
-rw-r--r--sys/arch/vax/bi/kdb.c4
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c
index 1ac2caf8cfd..257965668d9 100644
--- a/sys/arch/amd64/amd64/trap.c
+++ b/sys/arch/amd64/amd64/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.12 2007/04/20 16:15:36 miod Exp $ */
+/* $OpenBSD: trap.c,v 1.13 2007/05/11 10:06:55 pedro Exp $ */
/* $NetBSD: trap.c,v 1.2 2003/05/04 23:51:56 fvdl Exp $ */
/*-
@@ -372,7 +372,7 @@ copyfault:
goto we_re_toast;
#endif
cr2 = rcr2();
- KERNEL_LOCK(LK_CANRECURSE|LK_EXCLUSIVE);
+ KERNEL_LOCK();
goto faultcommon;
case T_PAGEFLT|T_USER: { /* page fault */
diff --git a/sys/arch/i386/i386/trap.c b/sys/arch/i386/i386/trap.c
index 0bea0095d56..9cd0ecd30bf 100644
--- a/sys/arch/i386/i386/trap.c
+++ b/sys/arch/i386/i386/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.82 2007/03/15 10:22:29 art Exp $ */
+/* $OpenBSD: trap.c,v 1.83 2007/05/11 10:06:55 pedro Exp $ */
/* $NetBSD: trap.c,v 1.95 1996/05/05 06:50:02 mycroft Exp $ */
/*-
@@ -447,7 +447,7 @@ trap(struct trapframe frame)
goto we_re_toast;
#endif
cr2 = rcr2();
- KERNEL_LOCK(LK_CANRECURSE|LK_EXCLUSIVE);
+ KERNEL_LOCK();
goto faultcommon;
case T_PAGEFLT|T_USER: { /* page fault */
diff --git a/sys/arch/m88k/m88k/trap.c b/sys/arch/m88k/m88k/trap.c
index 4de452d5ebf..ff37a4ac9a0 100644
--- a/sys/arch/m88k/m88k/trap.c
+++ b/sys/arch/m88k/m88k/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.39 2007/03/15 10:22:29 art Exp $ */
+/* $OpenBSD: trap.c,v 1.40 2007/05/11 10:06:55 pedro Exp $ */
/*
* Copyright (c) 2004, Miodrag Vallat.
* Copyright (c) 1998 Steve Murphree, Jr.
@@ -282,7 +282,7 @@ m88100_trap(unsigned type, struct trapframe *frame)
panic("trap: bad kernel access at %x", fault_addr);
}
- KERNEL_LOCK(LK_CANRECURSE | LK_EXCLUSIVE);
+ KERNEL_LOCK();
vm = p->p_vmspace;
map = kernel_map;
@@ -738,7 +738,7 @@ m88110_trap(unsigned type, struct trapframe *frame)
panic("trap: bad kernel access at %x", fault_addr);
}
- KERNEL_LOCK(LK_CANRECURSE | LK_EXCLUSIVE);
+ KERNEL_LOCK();
vm = p->p_vmspace;
map = kernel_map;
diff --git a/sys/arch/vax/bi/if_ni.c b/sys/arch/vax/bi/if_ni.c
index 29760c45872..cdd803754e3 100644
--- a/sys/arch/vax/bi/if_ni.c
+++ b/sys/arch/vax/bi/if_ni.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ni.c,v 1.9 2007/05/10 17:59:26 deraadt Exp $ */
+/* $OpenBSD: if_ni.c,v 1.10 2007/05/11 10:06:55 pedro Exp $ */
/* $NetBSD: if_ni.c,v 1.15 2002/05/22 16:03:14 wiz Exp $ */
/*
* Copyright (c) 2000 Ludd, University of Lule}, Sweden. All rights reserved.
@@ -596,7 +596,7 @@ niintr(void *arg)
if ((NI_RREG(NI_PSR) & PSR_ERR))
printf("%s: PSR %x\n", sc->sc_dev.dv_xname, NI_RREG(NI_PSR));
- KERNEL_LOCK(LK_CANRECURSE|LK_EXCLUSIVE);
+ KERNEL_LOCK();
/* Got any response packets? */
while ((NI_RREG(NI_PSR) & PSR_RSQ) && (data = REMQHI(&gvp->nc_forwr))) {
diff --git a/sys/arch/vax/bi/kdb.c b/sys/arch/vax/bi/kdb.c
index 6fb2415a3c5..26130c2e13a 100644
--- a/sys/arch/vax/bi/kdb.c
+++ b/sys/arch/vax/bi/kdb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kdb.c,v 1.10 2007/05/10 17:59:26 deraadt Exp $ */
+/* $OpenBSD: kdb.c,v 1.11 2007/05/11 10:06:55 pedro Exp $ */
/* $NetBSD: kdb.c,v 1.26 2001/11/13 12:51:34 lukem Exp $ */
/*
* Copyright (c) 1996 Ludd, University of Lule}, Sweden.
@@ -301,7 +301,7 @@ kdbintr(void *arg)
kdbsaerror(&sc->sc_dev, 1);
return;
}
- KERNEL_LOCK(LK_CANRECURSE|LK_EXCLUSIVE);
+ KERNEL_LOCK();
mscp_intr(sc->sc_softc);
KERNEL_UNLOCK();
}