* [PATCH 1/2] block: make blk_update_request print prefix match ratelimited prefix
2014-08-27 15:50 [PATCH 0/2] block: improve I/O error print consistency Robert Elliott
@ 2014-08-27 15:50 ` Robert Elliott
2014-08-27 15:50 ` [PATCH 2/2] block: include func name in __get_request prints Robert Elliott
1 sibling, 0 replies; 3+ messages in thread
From: Robert Elliott @ 2014-08-27 15:50 UTC (permalink / raw)
To: axboe, webbnh, linux-kernel, relliott, linux-fsdevel, viro,
elliott, scameron
In blk_update_request, change the printk_ratelimited
prefix from end_request to blk_update_request so it
matches the name printed if rate limiting occurs.
Old:
[10234.933106] blk_update_request: 174 callbacks suppressed
[10234.934940] end_request: critical target error, dev sdr, sector 16
[10234.949788] end_request: critical target error, dev sdr, sector 16
New:
[16863.445173] blk_update_request: 398 callbacks suppressed
[16863.447029] blk_update_request: critical target error, dev sdr, sector
1442066176
[16863.449383] blk_update_request: critical target error, dev sdr, sector
802802888
[16863.451680] blk_update_request: critical target error, dev sdr, sector
1609535456
Signed-off-by: Robert Elliott <elliott@hp.com>
Reviewed-by: Webb Scales <webbnh@hp.com>
---
block/blk-core.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block/blk-core.c b/block/blk-core.c
index c359d72..9c5a5b9 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -2450,8 +2450,8 @@ bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
error_type = "I/O";
break;
}
- printk_ratelimited(KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
- error_type, req->rq_disk ?
+ printk_ratelimited(KERN_ERR "%s: %s error, dev %s, sector %llu\n",
+ __func__, error_type, req->rq_disk ?
req->rq_disk->disk_name : "?",
(unsigned long long)blk_rq_pos(req));
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] block: include func name in __get_request prints
2014-08-27 15:50 [PATCH 0/2] block: improve I/O error print consistency Robert Elliott
2014-08-27 15:50 ` [PATCH 1/2] block: make blk_update_request print prefix match ratelimited prefix Robert Elliott
@ 2014-08-27 15:50 ` Robert Elliott
1 sibling, 0 replies; 3+ messages in thread
From: Robert Elliott @ 2014-08-27 15:50 UTC (permalink / raw)
To: axboe, webbnh, linux-kernel, relliott, linux-fsdevel, viro,
elliott, scameron
In __get_request calls to printk_ratelimited, include the function name so
the callbacks suppressed message matches the messages that are printed,
and add "dev" before the device name so it matches other block layer
messages.
Signed-off-by: Robert Elliott <elliott@hp.com>
Reviewed-by: Webb Scales <webbnh@hp.com>
---
block/blk-core.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block/blk-core.c b/block/blk-core.c
index 9c5a5b9..204cbd3 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1065,8 +1065,8 @@ fail_elvpriv:
* shouldn't stall IO. Treat this request as !elvpriv. This will
* disturb iosched and blkcg but weird is bettern than dead.
*/
- printk_ratelimited(KERN_WARNING "%s: request aux data allocation failed, iosched may be disturbed\n",
- dev_name(q->backing_dev_info.dev));
+ printk_ratelimited(KERN_WARNING "%s: dev %s: request aux data allocation failed, iosched may be disturbed\n",
+ __func__, dev_name(q->backing_dev_info.dev));
rq->cmd_flags &= ~REQ_ELVPRIV;
rq->elv.icq = NULL;
^ permalink raw reply related [flat|nested] 3+ messages in thread