[PATCH] s390: debug data for ifcc/ccc
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@de.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
99b2d8df1d
commit
1d3ac7aadb
|
@ -39,15 +39,14 @@ ccw_device_msg_control_check(struct ccw_device *cdev, struct irb *irb)
|
|||
" ... 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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue