From: Michael Ernst Date: Mon, 9 Aug 2010 16:12:51 +0000 (+0200) Subject: [S390] cio: Log the response from the unit check handler X-Git-Tag: v2.6.36-rc1~296^2~9 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=dbedd0ee47313f2a3c94b19346785fcdfa721390;hp=fd0457a6ae52141718a15652fb80d867e1bf1d10;p=~andy%2Flinux [S390] cio: Log the response from the unit check handler Log the response from the unit check handler which triggers further cio internal i/o processing. Signed-off-by: Michael Ernst Signed-off-by: Martin Schwidefsky --- diff --git a/drivers/s390/cio/ccwreq.c b/drivers/s390/cio/ccwreq.c index 7f206ed44fd..fd0368785ee 100644 --- a/drivers/s390/cio/ccwreq.c +++ b/drivers/s390/cio/ccwreq.c @@ -182,6 +182,8 @@ static enum io_status ccwreq_status(struct ccw_device *cdev, struct irb *lcirb) /* Ask the driver what to do */ if (cdev->drv && cdev->drv->uc_handler) { todo = cdev->drv->uc_handler(cdev, lcirb); + CIO_TRACE_EVENT(2, "uc_response"); + CIO_HEX_EVENT(2, &todo, sizeof(todo)); switch (todo) { case UC_TODO_RETRY: return IO_STATUS_ERROR;