Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Bump up level of some very verbose debugs so that...



details:   https://anonhg.NetBSD.org/src/rev/30294b33938a
branches:  trunk
changeset: 480211:30294b33938a
user:      mjacob <mjacob%NetBSD.org@localhost>
date:      Thu Jan 06 23:02:51 2000 +0000

description:
Bump up level of some very verbose debugs so that SCSIDEBUG doesn't cause them
to print.

diffstat:

 sys/dev/ic/isp.c |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (41 lines):

diff -r 2c73e8d498ff -r 30294b33938a sys/dev/ic/isp.c
--- a/sys/dev/ic/isp.c  Thu Jan 06 22:23:20 2000 +0000
+++ b/sys/dev/ic/isp.c  Thu Jan 06 23:02:51 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isp.c,v 1.46 2000/01/06 03:02:11 mjacob Exp $ */
+/* $NetBSD: isp.c,v 1.47 2000/01/06 23:02:51 mjacob Exp $ */
 /*
  * Copyright (C) 1997, 1998, 1999 National Aeronautics & Space Administration
  * All rights reserved.
@@ -2274,11 +2274,11 @@
        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);
@@ -2340,7 +2340,7 @@
 #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;
@@ -2640,7 +2640,7 @@
        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;
 



Home | Main Index | Thread Index | Old Index