diff options
Diffstat (limited to 'block')
-rw-r--r-- | 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 ffcb47af35f3..ecc124ec53bb 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -2444,8 +2444,8 @@ bool blk_update_request(struct request *req, int error, unsigned int nr_bytes) | |||
2444 | error_type = "I/O"; | 2444 | error_type = "I/O"; |
2445 | break; | 2445 | break; |
2446 | } | 2446 | } |
2447 | printk_ratelimited(KERN_ERR "end_request: %s error, dev %s, sector %llu\n", | 2447 | printk_ratelimited(KERN_ERR "%s: %s error, dev %s, sector %llu\n", |
2448 | error_type, req->rq_disk ? | 2448 | __func__, error_type, req->rq_disk ? |
2449 | req->rq_disk->disk_name : "?", | 2449 | req->rq_disk->disk_name : "?", |
2450 | (unsigned long long)blk_rq_pos(req)); | 2450 | (unsigned long long)blk_rq_pos(req)); |
2451 | 2451 | ||