diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-03-22 02:41:22 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1999-03-22 02:41:22 +0000 |
commit | c8023ea4519e4b5c82837349f7840308a918d1e8 (patch) | |
tree | 3da8104f0d941305b452b60440d903bd662d0c68 /sys | |
parent | 73872571d96698b5af7dabf765025c0959c3296a (diff) |
Remove diagnotic that could (was frequently) causing crashes.
this whole pmap could use replacing.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/powerpc/powerpc/pmap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/pmap.c b/sys/arch/powerpc/powerpc/pmap.c index 7b518d5b506..5e3083b880d 100644 --- a/sys/arch/powerpc/powerpc/pmap.c +++ b/sys/arch/powerpc/powerpc/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.8 1999/01/11 05:11:54 millert Exp $ */ +/* $OpenBSD: pmap.c,v 1.9 1999/03/22 02:41:21 rahnds Exp $ */ /* $NetBSD: pmap.c,v 1.1 1996/09/30 16:34:52 ws Exp $ */ /* @@ -927,10 +927,12 @@ pmap_remove_pv(pm, pteidx, va, pind, pte) pm->pm_stats.resident_count--; } } +#if 0 #ifdef DIAGNOSTIC else panic("pmap_remove_pv: not on list"); #endif +#endif } } |