From 01a1caa5de2199b7679b7becf0e8c63e0ecfc373 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 10 Jul 2009 08:47:57 +0200 Subject: [PATCH] Fix broken completion latency numbers Signed-off-by: Jens Axboe --- io_u.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io_u.c b/io_u.c index 65498048..96683954 100644 --- a/io_u.c +++ b/io_u.c @@ -999,7 +999,7 @@ static void io_completed(struct thread_data *td, struct io_u *io_u, &icd->time); if (!td->o.disable_clat) { - add_clat_sample(td, idx, usec, bytes); + add_clat_sample(td, idx, lusec, bytes); io_u_mark_latency(td, lusec); } if (!td->o.disable_bw) -- 2.25.1