diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-12 23:09:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-12 23:09:15 +0000 |
commit | be82434ad2f3814780c6e93ae74ecd93233ccc44 (patch) | |
tree | bc7a3639c660c83f6aed86c6eac198056f30b1e9 /sys/arch/hp300/dev | |
parent | 7fad5399124c0055036bdc21a070504519059163 (diff) |
Provide useful information if we panic due to looping interrupts.
Diffstat (limited to 'sys/arch/hp300/dev')
-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); |