From 1ca957384a2050e426f8f6ef8a3e493d7ceeb9ce Mon Sep 17 00:00:00 2001 From: Radha Ramachandran Date: Wed, 29 Apr 2009 07:23:26 +0200 Subject: [PATCH] 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 --- fio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } -- 2.25.1