From 092fe54e3d605cae0640dc8fc1544c1708ce31a0 Mon Sep 17 00:00:00 2001 From: jmc Date: Thu, 19 Dec 2002 02:15:31 +0000 Subject: [PATCH] Add additional debugging for fwohci_arrq_input: no listener conditions --- sys/dev/ieee1394/fwohci.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys/dev/ieee1394/fwohci.c b/sys/dev/ieee1394/fwohci.c index 0feb956114f1..a6488d97c6f1 100644 --- a/sys/dev/ieee1394/fwohci.c +++ b/sys/dev/ieee1394/fwohci.c @@ -1,4 +1,4 @@ -/* $NetBSD: fwohci.c,v 1.67 2002/12/13 07:47:52 jmc Exp $ */ +/* $NetBSD: fwohci.c,v 1.68 2002/12/19 02:15:31 jmc Exp $ */ /*- * Copyright (c) 2000 The NetBSD Foundation, Inc. @@ -49,7 +49,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.67 2002/12/13 07:47:52 jmc Exp $"); +__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.68 2002/12/19 02:15:31 jmc Exp $"); #define FWOHCI_WAIT_DEBUG 1 @@ -2197,6 +2197,10 @@ fwohci_arrq_input(struct fwohci_softc *sc, struct fwohci_ctx *fc) DPRINTFN(1, ("fwohci_arrq_input: no listener: tcode " "0x%x, addr=0x%04x %08x\n", pkt.fp_tcode, key1, key2)); + DPRINTFN(2, ("fwohci_arrq_input: no listener: hdr[0]: " + "0x%08x, hdr[1]: 0x%08x, hdr[2]: 0x%08x, hdr[3]: " + "0x%08x\n", pkt.fp_hdr[0], pkt.fp_hdr[1], + pkt.fp_hdr[2], pkt.fp_hdr[3])); } if (((*pkt.fp_trail & 0x001f0000) >> 16) != OHCI_CTXCTL_EVENT_ACK_PENDING)