[patch 5/12] s390: debug data for ifcc/ccc.

From: Martin Schwidefsky
Date: Mon Jul 11 2005 - 12:51:44 EST


[patch 5/12] s390: debug data for ifcc/ccc.

From: Cornelia Huck <cohuck@xxxxxxxxxx>

Fix debug data in case of an interface-control or channel-control
check: don't log the not yet accumulated interrupt-response-block,
but the one we just received.

Signed-off-by: Martin Schwidefsky <schwidefsky@xxxxxxxxxx>

diffstat:
drivers/s390/cio/device_status.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)

diff -urpN linux-2.6/drivers/s390/cio/device_status.c linux-2.6-patched/drivers/s390/cio/device_status.c
--- linux-2.6/drivers/s390/cio/device_status.c 2005-06-17 21:48:29.000000000 +0200
+++ linux-2.6-patched/drivers/s390/cio/device_status.c 2005-07-11 17:37:45.000000000 +0200
@@ -39,15 +39,14 @@ ccw_device_msg_control_check(struct ccw_
" ... device %04X on subchannel %04X, dev_stat "
": %02X sch_stat : %02X\n",
cdev->private->devno, cdev->private->irq,
- cdev->private->irb.scsw.dstat,
- cdev->private->irb.scsw.cstat);
+ irb->scsw.dstat, irb->scsw.cstat);

if (irb->scsw.cc != 3) {
char dbf_text[15];

sprintf(dbf_text, "chk%x", cdev->private->irq);
CIO_TRACE_EVENT(0, dbf_text);
- CIO_HEX_EVENT(0, &cdev->private->irb, sizeof (struct irb));
+ CIO_HEX_EVENT(0, irb, sizeof (struct irb));
}
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/