From: Radha Ramachandran Date: Wed, 29 Apr 2009 05:23:26 +0000 (+0200) Subject: Fix name of the slat log file X-Git-Tag: fio-1.26.2~1^2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=1ca957384a2050e426f8f6ef8a3e493d7ceeb9ce Fix name of the slat log file Currently the slat and clat logs go to the same clat log file when the latency log file is specified. Signed-off-by: Jens Axboe --- diff --git a/fio.c b/fio.c index ad2282d7..ff77c91b 100644 --- a/fio.c +++ b/fio.c @@ -1086,7 +1086,7 @@ static void *thread_main(void *data) if (td->ts.slat_log) { if (td->o.lat_log_file) { finish_log_named(td, td->ts.slat_log, - td->o.lat_log_file, "clat"); + td->o.lat_log_file, "slat"); } else finish_log(td, td->ts.slat_log, "slat"); }