diff options
author | mjacob <mjacob@cvs.openbsd.org> | 2000-01-09 22:44:28 +0000 |
---|---|---|
committer | mjacob <mjacob@cvs.openbsd.org> | 2000-01-09 22:44:28 +0000 |
commit | e6cacfb1163c1c9608e9ba0ff1863f2c237b3e9c (patch) | |
tree | 6ce7df5bbeefde4c61441de0fe5895d3cf43d26c /sys/dev/ic/isp.c | |
parent | 7d308b72ce2e263b239b0a33e2c4d3061007a725 (diff) |
Crank up the debug levels for a couple of ISPDEBUG lines
so that a SCSIDEBUG kernel doesn't completely overrun the
console.
Diffstat (limited to 'sys/dev/ic/isp.c')
-rw-r--r-- | sys/dev/ic/isp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/isp.c b/sys/dev/ic/isp.c index b521a9fb138..e5eaeb54805 100644 --- a/sys/dev/ic/isp.c +++ b/sys/dev/ic/isp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp.c,v 1.11 1999/12/20 05:36:06 mjacob Exp $ */ +/* $OpenBSD: isp.c,v 1.12 2000/01/09 22:44:27 mjacob Exp $ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. @@ -2250,11 +2250,11 @@ isp_intr(arg) if (sema) { u_int16_t mbox = ISP_READ(isp, OUTMAILBOX0); if (mbox & 0x4000) { - IDPRINTF(3, ("%s: Command Mbox 0x%x\n", + IDPRINTF(4, ("%s: Command Mbox 0x%x\n", isp->isp_name, mbox)); } else { u_int32_t fhandle = isp_parse_async(isp, (int) mbox); - IDPRINTF(3, ("%s: Async Mbox 0x%x\n", + IDPRINTF(4, ("%s: Async Mbox 0x%x\n", isp->isp_name, mbox)); if (fhandle > 0) { isp_fastpost_complete(isp, fhandle); @@ -2317,7 +2317,7 @@ isp_intr(arg) #define _RQS_OFLAGS \ ~(RQSFLAG_CONTINUATION|RQSFLAG_FULL|RQSFLAG_BADHEADER|RQSFLAG_BADPACKET) if (sp->req_header.rqs_flags & RQSFLAG_CONTINUATION) { - IDPRINTF(3, ("%s: continuation segment\n", + IDPRINTF(4, ("%s: continuation segment\n", isp->isp_name)); ISP_WRITE(isp, INMAILBOX5, optr); continue; @@ -2609,7 +2609,7 @@ isp_parse_async(isp, mbox) case ASYNC_CMD_CMPLT: fast_post_handle = (ISP_READ(isp, OUTMAILBOX2) << 16) | ISP_READ(isp, OUTMAILBOX1); - IDPRINTF(3, ("%s: fast post completion of %u\n", isp->isp_name, + IDPRINTF(4, ("%s: fast post completion of %u\n", isp->isp_name, fast_post_handle)); break; |