projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
958d907
)
s390/dasd: cleanup timeout and transport error messages
author
Stefan Weinhuber
<
[email protected]
>
Fri, 14 Jun 2013 08:24:25 +0000
(10:24 +0200)
committer
Martin Schwidefsky
<
[email protected]
>
Thu, 22 Aug 2013 10:20:01 +0000
(12:20 +0200)
Just a small update to the wording of the messages, to bring them
more in line with our other messages.
Signed-off-by: Stefan Weinhuber <
[email protected]
>
Signed-off-by: Martin Schwidefsky <
[email protected]
>
drivers/s390/block/dasd_erp.c
patch
|
blob
|
history
diff --git
a/drivers/s390/block/dasd_erp.c
b/drivers/s390/block/dasd_erp.c
index 8d11f773a75224a74745f20a03be731ea9dad267..ba99b64e2b3f0fea3b5c04c15b66bcd4f2d5ea3c 100644
(file)
--- a/
drivers/s390/block/dasd_erp.c
+++ b/
drivers/s390/block/dasd_erp.c
@@
-160,11
+160,13
@@
dasd_log_sense(struct dasd_ccw_req *cqr, struct irb *irb)
device = cqr->startdev;
if (cqr->intrc == -ETIMEDOUT) {
- dev_err(&device->cdev->dev, "cqr %p timeout error", cqr);
+ dev_err(&device->cdev->dev,
+ "A timeout error occurred for cqr %p", cqr);
return;
}
if (cqr->intrc == -ENOLINK) {
- dev_err(&device->cdev->dev, "cqr %p transport error", cqr);
+ dev_err(&device->cdev->dev,
+ "A transport error occurred for cqr %p", cqr);
return;
}
/* dump sense data */