summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2001-04-18 06:26:13 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2001-04-18 06:26:13 +0000
commitd0f34938a4d3986660db375c84c341cca0b6b60f (patch)
tree2e58095cf6b7e09a9b12f205893671bdd641639d
parent67f2aa684c8e22d8dd1f6c6fa475688e2e5ed555 (diff)
Remove last change to powerpc pmap. This has a slight chance of being the
cause of a frequent, but not easy to reproduce crash. The reason for making this change is to support functionality that will not be in 2.9.
-rw-r--r--sys/arch/powerpc/powerpc/pmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c
index a5dd9db2e2b..c2cf84bc7c3 100644
--- a/sys/arch/powerpc/powerpc/pmap.c
+++ b/sys/arch/powerpc/powerpc/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.26 2001/03/29 19:03:34 drahn Exp $ */
+/* $OpenBSD: pmap.c,v 1.27 2001/04/18 06:26:12 drahn Exp $ */
/* $NetBSD: pmap.c,v 1.1 1996/09/30 16:34:52 ws Exp $ */
/*
@@ -1499,8 +1499,8 @@ pmap_extract(pm, va)
if (!(ptp = pte_find(pm, va))) {
/* return address 0 if not mapped??? */
o = 0;
- if (pm == pmap_kernel() && va < 0xa0000000){
- /* if in kernel, va==pa for 0 - 0xa0000000 */
+ if (pm == pmap_kernel() && va < 0x80000000){
+ /* if in kernel, va==pa for 0 - 0x80000000 */
o = va;
}
splx(s);