diff options
author | 2005-11-12 23:09:14 +0000 | |
---|---|---|
committer | 2005-11-12 23:09:14 +0000 | |
commit | c9a768a97d75668d402d8406d90c69685cf947b3 (patch) | |
tree | 7eb5c4b25194f62782252e06d35b9db475c96a59 /sys | |
parent | Print HP-IB disk geometry the same way we print SCSI disk geometries (diff) | |
download | wireguard-openbsd-c9a768a97d75668d402d8406d90c69685cf947b3.tar.xz wireguard-openbsd-c9a768a97d75668d402d8406d90c69685cf947b3.zip |
Provide useful information if we panic due to looping interrupts.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/dev/frodo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/frodo.c b/sys/arch/hp300/dev/frodo.c index 94e3174967f..85c907c9526 100644 --- a/sys/arch/hp300/dev/frodo.c +++ b/sys/arch/hp300/dev/frodo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frodo.c,v 1.5 2005/09/27 22:05:36 miod Exp $ */ +/* $OpenBSD: frodo.c,v 1.6 2005/11/12 23:09:14 miod Exp $ */ /* $NetBSD: frodo.c,v 1.5 1999/07/31 21:15:20 thorpej Exp $ */ /*- @@ -345,7 +345,7 @@ frodointr(arg) } } if (taken++ > 100) - panic("frodointr: looping!"); + panic("frodointr: looping, line %d fisr %p", line, fisr); } while (FRODO_GETPEND(sc) != 0); return (1); |