blob: 6117b702c49e4fa345dad601362f65085362ee32 [file] [log] [blame]
Jens Axboef29b25a2007-07-23 08:56:43 +02001/*
2 * Code related to writing an iolog of what a thread is doing, and to
3 * later read that back and replay
4 */
Jens Axboe3c39a372006-06-06 20:56:12 +02005#include <stdio.h>
6#include <stdlib.h>
Jens Axboe5921e802008-05-30 15:02:38 +02007#include <libgen.h>
Jens Axboef29b25a2007-07-23 08:56:43 +02008#include <assert.h>
Jens Axboe01743ee2008-06-02 12:19:19 +02009#include "flist.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020010#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020011#include "verify.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020012
Jens Axboef29b25a2007-07-23 08:56:43 +020013static const char iolog_ver2[] = "fio version 2 iolog";
14
Jens Axboe691c8fb2008-03-07 14:26:26 +010015void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
16{
Jens Axboe01743ee2008-06-02 12:19:19 +020017 flist_add_tail(&ipo->list, &td->io_log_list);
Jens Axboe691c8fb2008-03-07 14:26:26 +010018 td->total_io_size += ipo->len;
19}
20
Jens Axboef29b25a2007-07-23 08:56:43 +020021void log_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe3c39a372006-06-06 20:56:12 +020022{
Jens Axboe44f29692010-03-09 20:09:44 +010023 const char *act[] = { "read", "write", "sync", "datasync",
24 "sync_file_range" };
Jens Axboef29b25a2007-07-23 08:56:43 +020025
Jens Axboe44f29692010-03-09 20:09:44 +010026 assert(io_u->ddir <= 4);
Jens Axboef29b25a2007-07-23 08:56:43 +020027
28 if (!td->o.write_iolog_file)
29 return;
30
Jens Axboe5ec10ea2008-03-06 15:42:00 +010031 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
32 act[io_u->ddir], io_u->offset,
33 io_u->buflen);
Jens Axboef29b25a2007-07-23 08:56:43 +020034}
35
36void log_file(struct thread_data *td, struct fio_file *f,
37 enum file_log_act what)
38{
39 const char *act[] = { "add", "open", "close" };
40
41 assert(what < 3);
42
43 if (!td->o.write_iolog_file)
44 return;
45
Jens Axboe393ca7e2008-05-15 09:17:42 +020046
47 /*
48 * this happens on the pre-open/close done before the job starts
49 */
50 if (!td->iolog_f)
51 return;
52
Jens Axboef29b25a2007-07-23 08:56:43 +020053 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020054}
55
Jens Axboea61edde2007-05-15 14:29:58 +020056static void iolog_delay(struct thread_data *td, unsigned long delay)
57{
58 unsigned long usec = utime_since_now(&td->last_issue);
59
60 if (delay < usec)
61 return;
62
63 delay -= usec;
64
65 /*
66 * less than 100 usec delay, just regard it as noise
67 */
68 if (delay < 100)
69 return;
70
71 usec_sleep(td, delay);
72}
73
Jens Axboef7182732008-03-10 13:57:58 +010074static int ipo_special(struct thread_data *td, struct io_piece *ipo)
75{
76 struct fio_file *f;
77 int ret;
78
79 /*
80 * Not a special ipo
81 */
82 if (ipo->ddir != DDIR_INVAL)
83 return 0;
84
85 f = td->files[ipo->fileno];
86
87 switch (ipo->file_action) {
88 case FIO_LOG_OPEN_FILE:
89 ret = td_io_open_file(td, f);
Glen Ogilvie457bf392009-11-03 21:52:36 +010090 if (!ret)
Jens Axboef7182732008-03-10 13:57:58 +010091 break;
Jens Axboef7182732008-03-10 13:57:58 +010092 td_verror(td, ret, "iolog open file");
93 return -1;
94 case FIO_LOG_CLOSE_FILE:
95 td_io_close_file(td, f);
96 break;
97 case FIO_LOG_UNLINK_FILE:
98 unlink(f->file_name);
99 break;
100 default:
101 log_err("fio: bad file action %d\n", ipo->file_action);
102 break;
103 }
104
105 return 1;
106}
107
Jens Axboe3c39a372006-06-06 20:56:12 +0200108int read_iolog_get(struct thread_data *td, struct io_u *io_u)
109{
110 struct io_piece *ipo;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100111 unsigned long elapsed;
112
Jens Axboe01743ee2008-06-02 12:19:19 +0200113 while (!flist_empty(&td->io_log_list)) {
Jens Axboef7182732008-03-10 13:57:58 +0100114 int ret;
115
Jens Axboe01743ee2008-06-02 12:19:19 +0200116 ipo = flist_entry(td->io_log_list.next, struct io_piece, list);
117 flist_del(&ipo->list);
Jens Axboea61edde2007-05-15 14:29:58 +0200118
Jens Axboef7182732008-03-10 13:57:58 +0100119 ret = ipo_special(td, ipo);
120 if (ret < 0) {
121 free(ipo);
122 break;
123 } else if (ret > 0) {
124 free(ipo);
125 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +0200126 }
127
Jens Axboe429f6672007-07-23 10:38:43 +0200128 io_u->ddir = ipo->ddir;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100129 if (ipo->ddir != DDIR_WAIT) {
130 io_u->offset = ipo->offset;
131 io_u->buflen = ipo->len;
132 io_u->file = td->files[ipo->fileno];
133 get_file(io_u->file);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100134 dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
135 io_u->buflen, io_u->file->file_name);
Jens Axboe9446dbd2010-08-25 10:23:51 +0200136 if (ipo->delay)
137 iolog_delay(td, ipo->delay);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100138 } else {
139 elapsed = mtime_since_genesis();
140 if (ipo->delay > elapsed)
141 usec_sleep(td, (ipo->delay - elapsed) * 1000);
142
143 }
Jens Axboea61edde2007-05-15 14:29:58 +0200144
Jens Axboe3c39a372006-06-06 20:56:12 +0200145 free(ipo);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100146
Jens Axboe0b80f9c2010-08-25 10:25:17 +0200147 if (io_u->ddir != DDIR_WAIT)
Glen Ogilvie457bf392009-11-03 21:52:36 +0100148 return 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200149 }
150
Jens Axboe20e354e2007-07-23 14:36:16 +0200151 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +0200152 return 1;
153}
154
155void prune_io_piece_log(struct thread_data *td)
156{
157 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200158 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200159
Jens Axboe4b878982007-03-26 09:32:22 +0200160 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
161 ipo = rb_entry(n, struct io_piece, rb_node);
162 rb_erase(n, &td->io_hist_tree);
Jens Axboe9e144182010-06-15 14:25:36 +0200163 td->io_hist_len--;
Jens Axboe3c39a372006-06-06 20:56:12 +0200164 free(ipo);
165 }
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100166
Jens Axboe01743ee2008-06-02 12:19:19 +0200167 while (!flist_empty(&td->io_hist_list)) {
168 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
169 flist_del(&ipo->list);
Jens Axboe9e144182010-06-15 14:25:36 +0200170 td->io_hist_len--;
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100171 free(ipo);
172 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200173}
174
175/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100176 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200177 */
178void log_io_piece(struct thread_data *td, struct io_u *io_u)
179{
Jens Axboe8de8f042007-03-27 10:36:12 +0200180 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200181 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200182
Jens Axboe4b878982007-03-26 09:32:22 +0200183 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +0200184 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200185 ipo->offset = io_u->offset;
186 ipo->len = io_u->buflen;
187
188 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200189 * We don't need to sort the entries, if:
190 *
191 * Sequential writes, or
192 * Random writes that lay out the file as it goes along
193 *
194 * For both these cases, just reading back data in the order we
195 * wrote it out is the fastest.
Jens Axboe83472392009-02-19 21:32:12 +0100196 *
197 * One exception is if we don't have a random map AND we are doing
198 * verifies, in that case we need to check for duplicate blocks and
199 * drop the old one, which we rely on the rb insert/lookup for
200 * handling.
Jens Axboe8de8f042007-03-27 10:36:12 +0200201 */
Jens Axboe83472392009-02-19 21:32:12 +0100202 if ((!td_random(td) || !td->o.overwrite) &&
203 (file_randommap(td, ipo->file) || td->o.verify == VERIFY_NONE)) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200204 INIT_FLIST_HEAD(&ipo->list);
205 flist_add_tail(&ipo->list, &td->io_hist_list);
Jens Axboe9e144182010-06-15 14:25:36 +0200206 td->io_hist_len++;
Jens Axboe8de8f042007-03-27 10:36:12 +0200207 return;
208 }
209
210 RB_CLEAR_NODE(&ipo->rb_node);
Jens Axboe8de8f042007-03-27 10:36:12 +0200211
212 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200213 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200214 */
Jens Axboe83472392009-02-19 21:32:12 +0100215restart:
216 p = &td->io_hist_tree.rb_node;
217 parent = NULL;
Jens Axboe4b878982007-03-26 09:32:22 +0200218 while (*p) {
219 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200220
Jens Axboe4b878982007-03-26 09:32:22 +0200221 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboe968b6052010-06-21 09:01:33 +0200222 if (ipo->file < __ipo->file)
223 p = &(*p)->rb_left;
224 else if (ipo->file > __ipo->file)
225 p = &(*p)->rb_right;
226 else if (ipo->offset < __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200227 p = &(*p)->rb_left;
Jens Axboe83472392009-02-19 21:32:12 +0100228 else if (ipo->offset > __ipo->offset)
Jens Axboebb5d7d02007-03-27 10:21:25 +0200229 p = &(*p)->rb_right;
Jens Axboe83472392009-02-19 21:32:12 +0100230 else {
231 assert(ipo->len == __ipo->len);
Jens Axboe9e144182010-06-15 14:25:36 +0200232 td->io_hist_len--;
Jens Axboe83472392009-02-19 21:32:12 +0100233 rb_erase(parent, &td->io_hist_tree);
Jens Axboea1a8da12010-07-29 10:52:43 +0200234 free(__ipo);
Jens Axboe83472392009-02-19 21:32:12 +0100235 goto restart;
236 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200237 }
238
Jens Axboe4b878982007-03-26 09:32:22 +0200239 rb_link_node(&ipo->rb_node, parent, p);
240 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe9e144182010-06-15 14:25:36 +0200241 td->io_hist_len++;
Jens Axboe3c39a372006-06-06 20:56:12 +0200242}
243
244void write_iolog_close(struct thread_data *td)
245{
246 fflush(td->iolog_f);
247 fclose(td->iolog_f);
248 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200249 td->iolog_f = NULL;
250 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200251}
252
Jens Axboefb71fbd2006-10-20 09:15:46 +0200253/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200254 * Read version 2 iolog data. It is enhanced to include per-file logging,
255 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200256 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200257static int read_iolog2(struct thread_data *td, FILE *f)
258{
259 unsigned long long offset;
260 unsigned int bytes;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100261 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200262 char *fname, *act;
263 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200264 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200265
266 free_release_files(td);
267
268 /*
269 * Read in the read iolog and store it, reuse the infrastructure
270 * for doing verifications.
271 */
272 str = malloc(4096);
273 fname = malloc(256+16);
274 act = malloc(256+16);
275
Glen Ogilvie457bf392009-11-03 21:52:36 +0100276 reads = writes = waits = 0;
Jens Axboef29b25a2007-07-23 08:56:43 +0200277 while ((p = fgets(str, 4096, f)) != NULL) {
278 struct io_piece *ipo;
279 int r;
280
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100281 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
282 &bytes);
Jens Axboef29b25a2007-07-23 08:56:43 +0200283 if (r == 4) {
284 /*
285 * Check action first
286 */
Glen Ogilvie457bf392009-11-03 21:52:36 +0100287 if (!strcmp(act, "wait"))
288 rw = DDIR_WAIT;
289 else if (!strcmp(act, "read"))
Jens Axboef29b25a2007-07-23 08:56:43 +0200290 rw = DDIR_READ;
291 else if (!strcmp(act, "write"))
292 rw = DDIR_WRITE;
293 else if (!strcmp(act, "sync"))
294 rw = DDIR_SYNC;
Jens Axboe5f9099e2009-06-16 22:40:26 +0200295 else if (!strcmp(act, "datasync"))
296 rw = DDIR_DATASYNC;
Jens Axboef29b25a2007-07-23 08:56:43 +0200297 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100298 log_err("fio: bad iolog file action: %s\n",
299 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200300 continue;
301 }
302 } else if (r == 2) {
303 rw = DDIR_INVAL;
304 if (!strcmp(act, "add")) {
305 td->o.nr_files++;
306 fileno = add_file(td, fname);
307 file_action = FIO_LOG_ADD_FILE;
308 continue;
309 } else if (!strcmp(act, "open")) {
310 fileno = get_fileno(td, fname);
311 file_action = FIO_LOG_OPEN_FILE;
312 } else if (!strcmp(act, "close")) {
313 fileno = get_fileno(td, fname);
314 file_action = FIO_LOG_CLOSE_FILE;
315 } else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100316 log_err("fio: bad iolog file action: %s\n",
317 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200318 continue;
319 }
320 } else {
321 log_err("bad iolog2: %s", p);
322 continue;
323 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100324
Jens Axboef29b25a2007-07-23 08:56:43 +0200325 if (rw == DDIR_READ)
326 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200327 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200328 /*
329 * Don't add a write for ro mode
330 */
331 if (read_only)
332 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100333 writes++;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100334 } else if (rw == DDIR_WAIT) {
335 waits++;
336 } else if (rw == DDIR_INVAL) {
Jens Axboe5f9099e2009-06-16 22:40:26 +0200337 } else if (!ddir_sync(rw)) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200338 log_err("bad ddir: %d\n", rw);
339 continue;
340 }
341
342 /*
343 * Make note of file
344 */
345 ipo = malloc(sizeof(*ipo));
346 memset(ipo, 0, sizeof(*ipo));
Jens Axboe01743ee2008-06-02 12:19:19 +0200347 INIT_FLIST_HEAD(&ipo->list);
Jens Axboe53fa9b62007-07-23 11:25:39 +0200348 ipo->ddir = rw;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100349 if (rw == DDIR_WAIT) {
350 ipo->delay = offset;
351 } else {
352 ipo->offset = offset;
353 ipo->len = bytes;
354 if (bytes > td->o.max_bs[rw])
355 td->o.max_bs[rw] = bytes;
Jens Axboef29b25a2007-07-23 08:56:43 +0200356 ipo->fileno = fileno;
357 ipo->file_action = file_action;
358 }
Glen Ogilvie457bf392009-11-03 21:52:36 +0100359
Jens Axboe691c8fb2008-03-07 14:26:26 +0100360 queue_io_piece(td, ipo);
Jens Axboef29b25a2007-07-23 08:56:43 +0200361 }
362
363 free(str);
364 free(act);
365 free(fname);
366
Jens Axboe4241ea82007-09-12 08:18:36 +0200367 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100368 log_err("fio: <%s> skips replay of %d writes due to"
369 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200370 writes = 0;
371 }
372
Glen Ogilvie457bf392009-11-03 21:52:36 +0100373 if (!reads && !writes && !waits)
Jens Axboef29b25a2007-07-23 08:56:43 +0200374 return 1;
375 else if (reads && !writes)
376 td->o.td_ddir = TD_DDIR_READ;
377 else if (!reads && writes)
378 td->o.td_ddir = TD_DDIR_WRITE;
379 else
380 td->o.td_ddir = TD_DDIR_RW;
381
382 return 0;
383}
384
385/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200386 * open iolog, check version, and call appropriate parser
387 */
388static int init_iolog_read(struct thread_data *td)
389{
390 char buffer[256], *p;
391 FILE *f;
392 int ret;
393
394 f = fopen(td->o.read_iolog_file, "r");
395 if (!f) {
396 perror("fopen read iolog");
397 return 1;
398 }
399
400 p = fgets(buffer, sizeof(buffer), f);
401 if (!p) {
402 td_verror(td, errno, "iolog read");
403 log_err("fio: unable to read iolog\n");
404 return 1;
405 }
406
407 /*
408 * version 2 of the iolog stores a specific string as the
409 * first line, check for that
410 */
411 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
412 ret = read_iolog2(td, f);
413 else {
Jens Axboeaec2de22008-04-24 12:44:42 +0200414 log_err("fio: iolog version 1 is no longer supported\n");
415 ret = 1;
Jens Axboef29b25a2007-07-23 08:56:43 +0200416 }
417
418 fclose(f);
419 return ret;
420}
421
422/*
Jens Axboefb71fbd2006-10-20 09:15:46 +0200423 * Setup a log for storing io patterns.
424 */
425static int init_iolog_write(struct thread_data *td)
426{
Jens Axboef29b25a2007-07-23 08:56:43 +0200427 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200428 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200429 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200430
Jens Axboec12f6da2008-11-20 09:13:04 +0100431 f = fopen(td->o.write_iolog_file, "a");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200432 if (!f) {
433 perror("fopen write iolog");
434 return 1;
435 }
436
437 /*
438 * That's it for writing, setup a log buffer and we're done.
439 */
440 td->iolog_f = f;
441 td->iolog_buf = malloc(8192);
442 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200443
444 /*
445 * write our version line
446 */
447 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
448 perror("iolog init\n");
449 return 1;
450 }
451
452 /*
453 * add all known files
454 */
455 for_each_file(td, ff, i)
456 log_file(td, ff, FIO_LOG_ADD_FILE);
457
Jens Axboefb71fbd2006-10-20 09:15:46 +0200458 return 0;
459}
460
461int init_iolog(struct thread_data *td)
462{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200463 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200464
Jens Axboefb7b71a2007-05-15 08:44:04 +0200465 if (td->o.read_iolog_file) {
466 /*
467 * Check if it's a blktrace file and load that if possible.
468 * Otherwise assume it's a normal log file and load that.
469 */
470 if (is_blktrace(td->o.read_iolog_file))
471 ret = load_blktrace(td, td->o.read_iolog_file);
472 else
473 ret = init_iolog_read(td);
474 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200475 ret = init_iolog_write(td);
476
Jens Axboe1e97cce2006-12-05 11:44:16 +0100477 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200478}
479
Jens Axboe8914a9d2006-06-07 11:14:56 +0200480void setup_log(struct io_log **log)
481{
482 struct io_log *l = malloc(sizeof(*l));
483
484 l->nr_samples = 0;
485 l->max_samples = 1024;
486 l->log = malloc(l->max_samples * sizeof(struct io_sample));
487 *log = l;
488}
489
Jens Axboebb3884d2007-01-17 17:23:11 +1100490void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200491{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200492 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100493 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200494
Jens Axboec12f6da2008-11-20 09:13:04 +0100495 f = fopen(name, "a");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200496 if (!f) {
497 perror("fopen log");
498 return;
499 }
500
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100501 for (i = 0; i < log->nr_samples; i++) {
Jens Axboe306ddc92009-05-18 13:08:12 +0200502 fprintf(f, "%lu, %lu, %u, %u\n", log->log[i].time,
503 log->log[i].val,
504 log->log[i].ddir,
505 log->log[i].bs);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100506 }
Jens Axboe8914a9d2006-06-07 11:14:56 +0200507
508 fclose(f);
509 free(log->log);
510 free(log);
511}
Jens Axboebb3884d2007-01-17 17:23:11 +1100512
Jens Axboee3cedca2008-11-19 19:57:52 +0100513void finish_log_named(struct thread_data *td, struct io_log *log,
514 const char *prefix, const char *postfix)
Jens Axboebb3884d2007-01-17 17:23:11 +1100515{
Jens Axboe748b23a2008-05-07 14:28:22 +0200516 char file_name[256], *p;
Jens Axboebb3884d2007-01-17 17:23:11 +1100517
Jens Axboee3cedca2008-11-19 19:57:52 +0100518 snprintf(file_name, 200, "%s_%s.log", prefix, postfix);
Jens Axboe748b23a2008-05-07 14:28:22 +0200519 p = basename(file_name);
520 __finish_log(log, p);
Jens Axboebb3884d2007-01-17 17:23:11 +1100521}
Jens Axboee3cedca2008-11-19 19:57:52 +0100522
523void finish_log(struct thread_data *td, struct io_log *log, const char *name)
524{
525 finish_log_named(td, log, td->o.name, name);
526}