blob: f962864d912d9b5cdc3bfbc39286241fdd717665 [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 Axboe0d29de82010-09-01 13:54:15 +020012#include "trim.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020013
Jens Axboef29b25a2007-07-23 08:56:43 +020014static const char iolog_ver2[] = "fio version 2 iolog";
15
Jens Axboe691c8fb2008-03-07 14:26:26 +010016void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
17{
Jens Axboe01743ee2008-06-02 12:19:19 +020018 flist_add_tail(&ipo->list, &td->io_log_list);
Jens Axboe691c8fb2008-03-07 14:26:26 +010019 td->total_io_size += ipo->len;
20}
21
Jens Axboef29b25a2007-07-23 08:56:43 +020022void log_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe3c39a372006-06-06 20:56:12 +020023{
Jens Axboe44f29692010-03-09 20:09:44 +010024 const char *act[] = { "read", "write", "sync", "datasync",
Jens Axboe14e7b602010-08-25 10:35:02 +020025 "sync_file_range", "wait", "trim" };
Jens Axboef29b25a2007-07-23 08:56:43 +020026
Jens Axboe14e7b602010-08-25 10:35:02 +020027 assert(io_u->ddir <= 6);
Jens Axboef29b25a2007-07-23 08:56:43 +020028
29 if (!td->o.write_iolog_file)
30 return;
31
Jens Axboe5ec10ea2008-03-06 15:42:00 +010032 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
33 act[io_u->ddir], io_u->offset,
34 io_u->buflen);
Jens Axboef29b25a2007-07-23 08:56:43 +020035}
36
37void log_file(struct thread_data *td, struct fio_file *f,
38 enum file_log_act what)
39{
40 const char *act[] = { "add", "open", "close" };
41
42 assert(what < 3);
43
44 if (!td->o.write_iolog_file)
45 return;
46
Jens Axboe393ca7e2008-05-15 09:17:42 +020047
48 /*
49 * this happens on the pre-open/close done before the job starts
50 */
51 if (!td->iolog_f)
52 return;
53
Jens Axboef29b25a2007-07-23 08:56:43 +020054 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020055}
56
Jens Axboea61edde2007-05-15 14:29:58 +020057static void iolog_delay(struct thread_data *td, unsigned long delay)
58{
59 unsigned long usec = utime_since_now(&td->last_issue);
60
61 if (delay < usec)
62 return;
63
64 delay -= usec;
65
66 /*
67 * less than 100 usec delay, just regard it as noise
68 */
69 if (delay < 100)
70 return;
71
72 usec_sleep(td, delay);
73}
74
Jens Axboef7182732008-03-10 13:57:58 +010075static int ipo_special(struct thread_data *td, struct io_piece *ipo)
76{
77 struct fio_file *f;
78 int ret;
79
80 /*
81 * Not a special ipo
82 */
83 if (ipo->ddir != DDIR_INVAL)
84 return 0;
85
86 f = td->files[ipo->fileno];
87
88 switch (ipo->file_action) {
89 case FIO_LOG_OPEN_FILE:
90 ret = td_io_open_file(td, f);
Glen Ogilvie457bf392009-11-03 21:52:36 +010091 if (!ret)
Jens Axboef7182732008-03-10 13:57:58 +010092 break;
Jens Axboef7182732008-03-10 13:57:58 +010093 td_verror(td, ret, "iolog open file");
94 return -1;
95 case FIO_LOG_CLOSE_FILE:
96 td_io_close_file(td, f);
97 break;
98 case FIO_LOG_UNLINK_FILE:
99 unlink(f->file_name);
100 break;
101 default:
102 log_err("fio: bad file action %d\n", ipo->file_action);
103 break;
104 }
105
106 return 1;
107}
108
Jens Axboe3c39a372006-06-06 20:56:12 +0200109int read_iolog_get(struct thread_data *td, struct io_u *io_u)
110{
111 struct io_piece *ipo;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100112 unsigned long elapsed;
113
Jens Axboe01743ee2008-06-02 12:19:19 +0200114 while (!flist_empty(&td->io_log_list)) {
Jens Axboef7182732008-03-10 13:57:58 +0100115 int ret;
116
Jens Axboe01743ee2008-06-02 12:19:19 +0200117 ipo = flist_entry(td->io_log_list.next, struct io_piece, list);
118 flist_del(&ipo->list);
Jens Axboe0d29de82010-09-01 13:54:15 +0200119 remove_trim_entry(td, ipo);
Jens Axboea61edde2007-05-15 14:29:58 +0200120
Jens Axboef7182732008-03-10 13:57:58 +0100121 ret = ipo_special(td, ipo);
122 if (ret < 0) {
123 free(ipo);
124 break;
125 } else if (ret > 0) {
126 free(ipo);
127 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +0200128 }
129
Jens Axboe429f6672007-07-23 10:38:43 +0200130 io_u->ddir = ipo->ddir;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100131 if (ipo->ddir != DDIR_WAIT) {
132 io_u->offset = ipo->offset;
133 io_u->buflen = ipo->len;
134 io_u->file = td->files[ipo->fileno];
135 get_file(io_u->file);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100136 dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
137 io_u->buflen, io_u->file->file_name);
Jens Axboe9446dbd2010-08-25 10:23:51 +0200138 if (ipo->delay)
139 iolog_delay(td, ipo->delay);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100140 } else {
141 elapsed = mtime_since_genesis();
142 if (ipo->delay > elapsed)
143 usec_sleep(td, (ipo->delay - elapsed) * 1000);
144
145 }
Jens Axboea61edde2007-05-15 14:29:58 +0200146
Jens Axboe3c39a372006-06-06 20:56:12 +0200147 free(ipo);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100148
Jens Axboe0b80f9c2010-08-25 10:25:17 +0200149 if (io_u->ddir != DDIR_WAIT)
Glen Ogilvie457bf392009-11-03 21:52:36 +0100150 return 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200151 }
152
Jens Axboe20e354e2007-07-23 14:36:16 +0200153 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +0200154 return 1;
155}
156
157void prune_io_piece_log(struct thread_data *td)
158{
159 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200160 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200161
Jens Axboe4b878982007-03-26 09:32:22 +0200162 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
163 ipo = rb_entry(n, struct io_piece, rb_node);
164 rb_erase(n, &td->io_hist_tree);
Jens Axboe0d29de82010-09-01 13:54:15 +0200165 remove_trim_entry(td, ipo);
Jens Axboe9e144182010-06-15 14:25:36 +0200166 td->io_hist_len--;
Jens Axboe3c39a372006-06-06 20:56:12 +0200167 free(ipo);
168 }
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100169
Jens Axboe01743ee2008-06-02 12:19:19 +0200170 while (!flist_empty(&td->io_hist_list)) {
171 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
172 flist_del(&ipo->list);
Jens Axboe0d29de82010-09-01 13:54:15 +0200173 remove_trim_entry(td, ipo);
Jens Axboe9e144182010-06-15 14:25:36 +0200174 td->io_hist_len--;
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100175 free(ipo);
176 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200177}
178
179/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100180 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200181 */
182void log_io_piece(struct thread_data *td, struct io_u *io_u)
183{
Jens Axboe8de8f042007-03-27 10:36:12 +0200184 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200185 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200186
Jens Axboe4b878982007-03-26 09:32:22 +0200187 ipo = malloc(sizeof(struct io_piece));
Jens Axboe0d29de82010-09-01 13:54:15 +0200188 init_ipo(ipo);
Jens Axboe53cdc682006-10-18 11:50:58 +0200189 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200190 ipo->offset = io_u->offset;
191 ipo->len = io_u->buflen;
192
Jens Axboe0d29de82010-09-01 13:54:15 +0200193 if (io_u_should_trim(td, io_u)) {
194 flist_add_tail(&ipo->trim_list, &td->trim_list);
195 td->trim_entries++;
196 }
197
Jens Axboe3c39a372006-06-06 20:56:12 +0200198 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200199 * We don't need to sort the entries, if:
200 *
201 * Sequential writes, or
202 * Random writes that lay out the file as it goes along
203 *
204 * For both these cases, just reading back data in the order we
205 * wrote it out is the fastest.
Jens Axboe83472392009-02-19 21:32:12 +0100206 *
207 * One exception is if we don't have a random map AND we are doing
208 * verifies, in that case we need to check for duplicate blocks and
209 * drop the old one, which we rely on the rb insert/lookup for
210 * handling.
Jens Axboe8de8f042007-03-27 10:36:12 +0200211 */
Jens Axboe83472392009-02-19 21:32:12 +0100212 if ((!td_random(td) || !td->o.overwrite) &&
213 (file_randommap(td, ipo->file) || td->o.verify == VERIFY_NONE)) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200214 INIT_FLIST_HEAD(&ipo->list);
215 flist_add_tail(&ipo->list, &td->io_hist_list);
Jens Axboe0d29de82010-09-01 13:54:15 +0200216 ipo->flags |= IP_F_ONLIST;
Jens Axboe9e144182010-06-15 14:25:36 +0200217 td->io_hist_len++;
Jens Axboe8de8f042007-03-27 10:36:12 +0200218 return;
219 }
220
221 RB_CLEAR_NODE(&ipo->rb_node);
Jens Axboe8de8f042007-03-27 10:36:12 +0200222
223 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200224 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200225 */
Jens Axboe83472392009-02-19 21:32:12 +0100226restart:
227 p = &td->io_hist_tree.rb_node;
228 parent = NULL;
Jens Axboe4b878982007-03-26 09:32:22 +0200229 while (*p) {
230 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200231
Jens Axboe4b878982007-03-26 09:32:22 +0200232 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboe968b6052010-06-21 09:01:33 +0200233 if (ipo->file < __ipo->file)
234 p = &(*p)->rb_left;
235 else if (ipo->file > __ipo->file)
236 p = &(*p)->rb_right;
237 else if (ipo->offset < __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200238 p = &(*p)->rb_left;
Jens Axboe83472392009-02-19 21:32:12 +0100239 else if (ipo->offset > __ipo->offset)
Jens Axboebb5d7d02007-03-27 10:21:25 +0200240 p = &(*p)->rb_right;
Jens Axboe83472392009-02-19 21:32:12 +0100241 else {
242 assert(ipo->len == __ipo->len);
Jens Axboe9e144182010-06-15 14:25:36 +0200243 td->io_hist_len--;
Jens Axboe83472392009-02-19 21:32:12 +0100244 rb_erase(parent, &td->io_hist_tree);
Jens Axboe0d29de82010-09-01 13:54:15 +0200245 remove_trim_entry(td, __ipo);
Jens Axboea1a8da12010-07-29 10:52:43 +0200246 free(__ipo);
Jens Axboe83472392009-02-19 21:32:12 +0100247 goto restart;
248 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200249 }
250
Jens Axboe4b878982007-03-26 09:32:22 +0200251 rb_link_node(&ipo->rb_node, parent, p);
252 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe0d29de82010-09-01 13:54:15 +0200253 ipo->flags |= IP_F_ONRB;
Jens Axboe9e144182010-06-15 14:25:36 +0200254 td->io_hist_len++;
Jens Axboe3c39a372006-06-06 20:56:12 +0200255}
256
257void write_iolog_close(struct thread_data *td)
258{
259 fflush(td->iolog_f);
260 fclose(td->iolog_f);
261 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200262 td->iolog_f = NULL;
263 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200264}
265
Jens Axboefb71fbd2006-10-20 09:15:46 +0200266/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200267 * Read version 2 iolog data. It is enhanced to include per-file logging,
268 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200269 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200270static int read_iolog2(struct thread_data *td, FILE *f)
271{
272 unsigned long long offset;
273 unsigned int bytes;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100274 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200275 char *fname, *act;
276 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200277 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200278
279 free_release_files(td);
280
281 /*
282 * Read in the read iolog and store it, reuse the infrastructure
283 * for doing verifications.
284 */
285 str = malloc(4096);
286 fname = malloc(256+16);
287 act = malloc(256+16);
288
Glen Ogilvie457bf392009-11-03 21:52:36 +0100289 reads = writes = waits = 0;
Jens Axboef29b25a2007-07-23 08:56:43 +0200290 while ((p = fgets(str, 4096, f)) != NULL) {
291 struct io_piece *ipo;
292 int r;
293
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100294 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
295 &bytes);
Jens Axboef29b25a2007-07-23 08:56:43 +0200296 if (r == 4) {
297 /*
298 * Check action first
299 */
Glen Ogilvie457bf392009-11-03 21:52:36 +0100300 if (!strcmp(act, "wait"))
301 rw = DDIR_WAIT;
302 else if (!strcmp(act, "read"))
Jens Axboef29b25a2007-07-23 08:56:43 +0200303 rw = DDIR_READ;
304 else if (!strcmp(act, "write"))
305 rw = DDIR_WRITE;
306 else if (!strcmp(act, "sync"))
307 rw = DDIR_SYNC;
Jens Axboe5f9099e2009-06-16 22:40:26 +0200308 else if (!strcmp(act, "datasync"))
309 rw = DDIR_DATASYNC;
Jens Axboeff58fce2010-08-25 12:02:08 +0200310 else if (!strcmp(act, "trim"))
311 rw = DDIR_TRIM;
Jens Axboef29b25a2007-07-23 08:56:43 +0200312 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100313 log_err("fio: bad iolog file action: %s\n",
314 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200315 continue;
316 }
317 } else if (r == 2) {
318 rw = DDIR_INVAL;
319 if (!strcmp(act, "add")) {
320 td->o.nr_files++;
321 fileno = add_file(td, fname);
322 file_action = FIO_LOG_ADD_FILE;
323 continue;
324 } else if (!strcmp(act, "open")) {
325 fileno = get_fileno(td, fname);
326 file_action = FIO_LOG_OPEN_FILE;
327 } else if (!strcmp(act, "close")) {
328 fileno = get_fileno(td, fname);
329 file_action = FIO_LOG_CLOSE_FILE;
330 } else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100331 log_err("fio: bad iolog file action: %s\n",
332 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200333 continue;
334 }
335 } else {
336 log_err("bad iolog2: %s", p);
337 continue;
338 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100339
Jens Axboef29b25a2007-07-23 08:56:43 +0200340 if (rw == DDIR_READ)
341 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200342 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200343 /*
344 * Don't add a write for ro mode
345 */
346 if (read_only)
347 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100348 writes++;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100349 } else if (rw == DDIR_WAIT) {
350 waits++;
351 } else if (rw == DDIR_INVAL) {
Jens Axboe5f9099e2009-06-16 22:40:26 +0200352 } else if (!ddir_sync(rw)) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200353 log_err("bad ddir: %d\n", rw);
354 continue;
355 }
356
357 /*
358 * Make note of file
359 */
360 ipo = malloc(sizeof(*ipo));
Jens Axboe0d29de82010-09-01 13:54:15 +0200361 init_ipo(ipo);
Jens Axboe53fa9b62007-07-23 11:25:39 +0200362 ipo->ddir = rw;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100363 if (rw == DDIR_WAIT) {
364 ipo->delay = offset;
365 } else {
366 ipo->offset = offset;
367 ipo->len = bytes;
368 if (bytes > td->o.max_bs[rw])
369 td->o.max_bs[rw] = bytes;
Jens Axboef29b25a2007-07-23 08:56:43 +0200370 ipo->fileno = fileno;
371 ipo->file_action = file_action;
372 }
Glen Ogilvie457bf392009-11-03 21:52:36 +0100373
Jens Axboe691c8fb2008-03-07 14:26:26 +0100374 queue_io_piece(td, ipo);
Jens Axboef29b25a2007-07-23 08:56:43 +0200375 }
376
377 free(str);
378 free(act);
379 free(fname);
380
Jens Axboe4241ea82007-09-12 08:18:36 +0200381 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100382 log_err("fio: <%s> skips replay of %d writes due to"
383 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200384 writes = 0;
385 }
386
Glen Ogilvie457bf392009-11-03 21:52:36 +0100387 if (!reads && !writes && !waits)
Jens Axboef29b25a2007-07-23 08:56:43 +0200388 return 1;
389 else if (reads && !writes)
390 td->o.td_ddir = TD_DDIR_READ;
391 else if (!reads && writes)
392 td->o.td_ddir = TD_DDIR_WRITE;
393 else
394 td->o.td_ddir = TD_DDIR_RW;
395
396 return 0;
397}
398
399/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200400 * open iolog, check version, and call appropriate parser
401 */
402static int init_iolog_read(struct thread_data *td)
403{
404 char buffer[256], *p;
405 FILE *f;
406 int ret;
407
408 f = fopen(td->o.read_iolog_file, "r");
409 if (!f) {
410 perror("fopen read iolog");
411 return 1;
412 }
413
414 p = fgets(buffer, sizeof(buffer), f);
415 if (!p) {
416 td_verror(td, errno, "iolog read");
417 log_err("fio: unable to read iolog\n");
Stefan Hajnoczib921e2e2011-01-05 11:02:30 +0100418 fclose(f);
Jens Axboef29b25a2007-07-23 08:56:43 +0200419 return 1;
420 }
421
422 /*
423 * version 2 of the iolog stores a specific string as the
424 * first line, check for that
425 */
426 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
427 ret = read_iolog2(td, f);
428 else {
Jens Axboeaec2de22008-04-24 12:44:42 +0200429 log_err("fio: iolog version 1 is no longer supported\n");
430 ret = 1;
Jens Axboef29b25a2007-07-23 08:56:43 +0200431 }
432
433 fclose(f);
434 return ret;
435}
436
437/*
Bruce Cran03e20d62011-01-02 20:14:54 +0100438 * Set up a log for storing io patterns.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200439 */
440static int init_iolog_write(struct thread_data *td)
441{
Jens Axboef29b25a2007-07-23 08:56:43 +0200442 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200443 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200444 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200445
Jens Axboec12f6da2008-11-20 09:13:04 +0100446 f = fopen(td->o.write_iolog_file, "a");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200447 if (!f) {
448 perror("fopen write iolog");
449 return 1;
450 }
451
452 /*
453 * That's it for writing, setup a log buffer and we're done.
454 */
455 td->iolog_f = f;
456 td->iolog_buf = malloc(8192);
457 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200458
459 /*
460 * write our version line
461 */
462 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
463 perror("iolog init\n");
464 return 1;
465 }
466
467 /*
468 * add all known files
469 */
470 for_each_file(td, ff, i)
471 log_file(td, ff, FIO_LOG_ADD_FILE);
472
Jens Axboefb71fbd2006-10-20 09:15:46 +0200473 return 0;
474}
475
476int init_iolog(struct thread_data *td)
477{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200478 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200479
Jens Axboefb7b71a2007-05-15 08:44:04 +0200480 if (td->o.read_iolog_file) {
481 /*
482 * Check if it's a blktrace file and load that if possible.
483 * Otherwise assume it's a normal log file and load that.
484 */
485 if (is_blktrace(td->o.read_iolog_file))
486 ret = load_blktrace(td, td->o.read_iolog_file);
487 else
488 ret = init_iolog_read(td);
489 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200490 ret = init_iolog_write(td);
491
Jens Axboe1e97cce2006-12-05 11:44:16 +0100492 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200493}
494
Jens Axboe8914a9d2006-06-07 11:14:56 +0200495void setup_log(struct io_log **log)
496{
497 struct io_log *l = malloc(sizeof(*l));
498
499 l->nr_samples = 0;
500 l->max_samples = 1024;
501 l->log = malloc(l->max_samples * sizeof(struct io_sample));
502 *log = l;
503}
504
Jens Axboebb3884d2007-01-17 17:23:11 +1100505void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200506{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200507 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100508 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200509
Jens Axboec12f6da2008-11-20 09:13:04 +0100510 f = fopen(name, "a");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200511 if (!f) {
512 perror("fopen log");
513 return;
514 }
515
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100516 for (i = 0; i < log->nr_samples; i++) {
Jens Axboe306ddc92009-05-18 13:08:12 +0200517 fprintf(f, "%lu, %lu, %u, %u\n", log->log[i].time,
518 log->log[i].val,
519 log->log[i].ddir,
520 log->log[i].bs);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100521 }
Jens Axboe8914a9d2006-06-07 11:14:56 +0200522
523 fclose(f);
524 free(log->log);
525 free(log);
526}
Jens Axboebb3884d2007-01-17 17:23:11 +1100527
Jens Axboee3cedca2008-11-19 19:57:52 +0100528void finish_log_named(struct thread_data *td, struct io_log *log,
529 const char *prefix, const char *postfix)
Jens Axboebb3884d2007-01-17 17:23:11 +1100530{
Jens Axboe748b23a2008-05-07 14:28:22 +0200531 char file_name[256], *p;
Jens Axboebb3884d2007-01-17 17:23:11 +1100532
Jens Axboee3cedca2008-11-19 19:57:52 +0100533 snprintf(file_name, 200, "%s_%s.log", prefix, postfix);
Jens Axboe748b23a2008-05-07 14:28:22 +0200534 p = basename(file_name);
535 __finish_log(log, p);
Jens Axboebb3884d2007-01-17 17:23:11 +1100536}
Jens Axboee3cedca2008-11-19 19:57:52 +0100537
538void finish_log(struct thread_data *td, struct io_log *log, const char *name)
539{
540 finish_log_named(td, log, td->o.name, name);
541}