diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-11 05:18:13 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-11 05:18:13 +0000 |
commit | 65d388f1521fc18ab7ee4305e701ea34691794b4 (patch) | |
tree | d13bf683fe00c82a481d02df12c0160f02a034f1 /sys | |
parent | 612961a1ede4d0b5d80e5c7d0a5c433c2b1439da (diff) |
there is no splvm() in this world
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/hppa/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/pmap.c b/sys/arch/hppa/hppa/pmap.c index 88ecad9229c..be3b51735f6 100644 --- a/sys/arch/hppa/hppa/pmap.c +++ b/sys/arch/hppa/hppa/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.3 1998/10/30 22:16:42 mickey Exp $ */ +/* $OpenBSD: pmap.c,v 1.4 1998/11/11 05:18:12 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -1517,7 +1517,7 @@ pmap_is_referenced(pa) printf("pmap_is_referenced(%x)\n", pa); #endif - s = splvm(); + s = splhigh(); for (pv = pmap_find_pv(pa); pv && !(pv->pv_tlbprot & TLB_REF);) pv = pv->pv_next; splx(s); |