diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-03-23 04:01:56 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 2000-03-23 04:01:56 +0000 |
commit | 9679ecebb924ac15e6a021d902adefaa13e076f6 (patch) | |
tree | 3650cfb6a98c5916c3de1ea6455d5cf453e9c25b /sys | |
parent | e728eca3453bd28573682d53780620adb37badf3 (diff) |
comment out bounds check, ncr card on G4 is triggering it, replaced
with a debug printf.
Diffstat (limited to 'sys')
-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; |