diff options
author | 2005-11-03 06:40:28 +0000 | |
---|---|---|
committer | 2005-11-03 06:40:28 +0000 | |
commit | 23882ab60facfa834fdcb1d2e02abbfd0119c792 (patch) | |
tree | 08a3836c8e2f572250c32682deeafb8d8d9ec15c | |
parent | Don't remove elements inside TAILQ_FOREACH. Change to usual for() (diff) | |
download | wireguard-openbsd-23882ab60facfa834fdcb1d2e02abbfd0119c792.tar.xz wireguard-openbsd-23882ab60facfa834fdcb1d2e02abbfd0119c792.zip |
use splvm() here instead of splimp(). in currently unused MULTIPROCESSOR code.
ok martin@
-rw-r--r-- | sys/arch/alpha/alpha/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/pmap.c b/sys/arch/alpha/alpha/pmap.c index 508a8e97f28..f1ca9da01ce 100644 --- a/sys/arch/alpha/alpha/pmap.c +++ b/sys/arch/alpha/alpha/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.43 2005/10/28 19:10:26 martin Exp $ */ +/* $OpenBSD: pmap.c,v 1.44 2005/11/03 06:40:28 brad Exp $ */ /* $NetBSD: pmap.c,v 1.154 2000/12/07 22:18:55 thorpej Exp $ */ /*- @@ -436,7 +436,7 @@ struct pmap_tlb_shootdown_q { #define PSJQ_LOCK(pq, s) \ do { \ - s = splimp(); \ + s = splvm(); \ simple_lock(&(pq)->pq_slock); \ } while (0) |