diff options
author | 2001-04-18 06:26:12 +0000 | |
---|---|---|
committer | 2001-04-18 06:26:12 +0000 | |
commit | 91adab1971f7cb88ec05bdbe144f57fbf31efe2c (patch) | |
tree | 6d8565daaceb96c6ba1b54037d51b81df5ed2ace | |
parent | sync (diff) | |
download | wireguard-openbsd-91adab1971f7cb88ec05bdbe144f57fbf31efe2c.tar.xz wireguard-openbsd-91adab1971f7cb88ec05bdbe144f57fbf31efe2c.zip |
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.c | 6 |
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); |