From: Jens Axboe Date: Mon, 10 Oct 2005 10:20:29 +0000 (+0200) Subject: [PATCH] blkparse: kill debug statement in rate calculation X-Git-Tag: blktrace-0.99~10 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c5b475b10654dd06778d386ed2babcb935211160;p=blktrace.git [PATCH] blkparse: kill debug statement in rate calculation --- diff --git a/blkparse.c b/blkparse.c index 9cc2053..e439fd1 100644 --- a/blkparse.c +++ b/blkparse.c @@ -1246,7 +1246,6 @@ static void show_device_and_cpu_stats(void) } wrate = rrate = 0; - fprintf(stderr, "first=%Lu, last=%Lu\n", pdi->first_reported_time, pdi->last_reported_time); msec = (pdi->last_reported_time - pdi->first_reported_time) / 1000000; if (msec) { rrate = 1000 * total.cread_kb / msec;