diff options
author | 2000-03-23 04:01:55 +0000 | |
---|---|---|
committer | 2000-03-23 04:01:55 +0000 | |
commit | 7761c8c8608c58cce57448a5969d1e126d62d25c (patch) | |
tree | 65ec814f2a73a424858c2e4ecf8ff6f30f656e2a | |
parent | comment out memory region debugging. (diff) | |
download | wireguard-openbsd-7761c8c8608c58cce57448a5969d1e126d62d25c.tar.xz wireguard-openbsd-7761c8c8608c58cce57448a5969d1e126d62d25c.zip |
comment out bounds check, ncr card on G4 is triggering it, replaced
with a debug printf.
-rw-r--r-- | sys/arch/powerpc/powerpc/machdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/machdep.c b/sys/arch/powerpc/powerpc/machdep.c index 9588a2cc4b9..50d6b0c693e 100644 --- a/sys/arch/powerpc/powerpc/machdep.c +++ b/sys/arch/powerpc/powerpc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.34 2000/03/20 07:05:52 rahnds Exp $ */ +/* $OpenBSD: machdep.c,v 1.35 2000/03/23 04:01:55 rahnds Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -1129,9 +1129,13 @@ bus_mem_add_mapping(bpa, size, cacheable, bshp) off = bpa - spa; len = size+off; +printf("mem_add_mapping bpa %x size %x, spa %x epa %x\n", + bpa, size, spa, epa); +#if 0 if (epa <= spa) { panic("bus_mem_add_mapping: overflow"); } +#endif if (ppc_malloc_ok == 0) { bus_size_t alloc_size; |