diff options
author | 2002-02-22 20:21:46 +0000 | |
---|---|---|
committer | 2002-02-22 20:21:46 +0000 | |
commit | e1730f596fbd20182c39c20c7c332ccde2ab1474 (patch) | |
tree | b9cd848066cd2d92c2a19ebc2c0d6bde8e6df4d4 | |
parent | More locking in the NFS code (diff) | |
download | wireguard-openbsd-e1730f596fbd20182c39c20c7c332ccde2ab1474.tar.xz wireguard-openbsd-e1730f596fbd20182c39c20c7c332ccde2ab1474.zip |
Debugger() is #ifdef DDB
-rw-r--r-- | sys/arch/sparc64/dev/iommu.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/sparc64/dev/iommu.c b/sys/arch/sparc64/dev/iommu.c index d1d3cf08474..23944dbb371 100644 --- a/sys/arch/sparc64/dev/iommu.c +++ b/sys/arch/sparc64/dev/iommu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iommu.c,v 1.9 2002/02/22 19:35:02 jason Exp $ */ +/* $OpenBSD: iommu.c,v 1.10 2002/02/22 20:21:46 deraadt Exp $ */ /* $NetBSD: iommu.c,v 1.47 2002/02/08 20:03:45 eeh Exp $ */ /* @@ -596,7 +596,9 @@ iommu_dvmamap_load(t, is, map, buf, buflen, p, flags) printf("seg %d dvmaddr %lx out of range %x - %x\n", seg, (long)map->dm_segs[seg].ds_addr, is->is_dvmabase, is->is_dvmaend); +#ifdef DDB Debugger(); +#endif } } #endif @@ -854,7 +856,9 @@ printf("appending offset %x pa %lx, prev %lx dva %lx prev %lx\n", printf("seg %d dvmaddr %lx out of range %x - %x\n", seg, (long)map->dm_segs[seg].ds_addr, is->is_dvmabase, is->is_dvmaend); +#ifdef DDB Debugger(); +#endif } } } @@ -920,7 +924,9 @@ printf("appending offset %x pa %lx, prev %lx dva %lx prev %lx\n", printf("seg %d dvmaddr %lx out of range %x - %x\n", seg, (long)map->dm_segs[seg].ds_addr, is->is_dvmabase, is->is_dvmaend); +#ifdef DDB Debugger(); +#endif } } } |