diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-11-03 06:40:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-11-03 06:40:29 +0000 |
commit | d7bc70ab5c5d436373f07e5b91e0d7e1395c2e92 (patch) | |
tree | 53039750eb0b92da71c14375e62d483efc74ac67 /sys/arch/alpha | |
parent | 02f5551e85767ee1238af7d45ae50366d8525e26 (diff) |
use splvm() here instead of splimp(). in currently unused MULTIPROCESSOR code.
ok martin@
Diffstat (limited to 'sys/arch/alpha')
-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) |