From 6504a57c8a4c495f4ee41f467e6170f13a03196e Mon Sep 17 00:00:00 2001 From: gibbs Date: Thu, 22 Sep 2005 05:06:03 +0000 Subject: Enhance diagnostic printfs for the chains of free lists used to avoid SCB ID collissions to non-packetized targets. --- sys/dev/aic7xxx/aic79xx.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/aic7xxx/aic79xx.c b/sys/dev/aic7xxx/aic79xx.c index 0cd1a79..09a0b38 100644 --- a/sys/dev/aic7xxx/aic79xx.c +++ b/sys/dev/aic7xxx/aic79xx.c @@ -9078,11 +9078,12 @@ ahd_dump_card_state(struct ahd_softc *ahd) } printf("\nTotal %d\n", i); - printf("Kernel Free SCB list: "); + printf("Kernel Free SCB lists: "); i = 0; TAILQ_FOREACH(scb, &ahd->scb_data.free_scbs, links.tqe) { struct scb *list_scb; + printf("\n COLIDX[%d]: ", AHD_GET_SCB_COL_IDX(ahd, scb)); list_scb = scb; do { printf("%d ", SCB_GET_TAG(list_scb)); @@ -9090,6 +9091,7 @@ ahd_dump_card_state(struct ahd_softc *ahd) } while (list_scb && i++ < AHD_SCB_MAX); } + printf("\n Any Device: "); LIST_FOREACH(scb, &ahd->scb_data.any_dev_free_scb_list, links.le) { if (i++ > AHD_SCB_MAX) break; -- cgit v1.1