blktrace: add missing probe argument to block_bio_complete
blktrace.c block bio complete callback needs to gain a new argument to reflect the newly added "error" tracepoint argument. This is needed to match the new block_bio_complete TRACE_EVENT as of commit de983a7bfcb7c020901ca6e2314cf55a4207ab5a. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> CC: Jeff Moyer <jmoyer@redhat.com> CC: Steven Rostedt <rostedt@goodmis.org> CC: Frederic Weisbecker <fweisbec@gmail.com> CC: Ingo Molnar <mingo@elte.hu> CC: Thomas Gleixner <tglx@linutronix.de> CC: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
This commit is contained in:
Родитель
329a67815b
Коммит
23036f1a34
|
@ -782,7 +782,8 @@ static void blk_add_trace_bio_bounce(void *ignore,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void blk_add_trace_bio_complete(void *ignore,
|
static void blk_add_trace_bio_complete(void *ignore,
|
||||||
struct request_queue *q, struct bio *bio)
|
struct request_queue *q, struct bio *bio,
|
||||||
|
int error)
|
||||||
{
|
{
|
||||||
blk_add_trace_bio(q, bio, BLK_TA_COMPLETE);
|
blk_add_trace_bio(q, bio, BLK_TA_COMPLETE);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче