blob: 86de3e83c5682c8b83841ff98de4cad9bf1a3196 [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 Axboef29b25a2007-07-23 08:56:43 +02007#include <assert.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02008#include "list.h"
9#include "fio.h"
10
Jens Axboef29b25a2007-07-23 08:56:43 +020011static const char iolog_ver2[] = "fio version 2 iolog";
12
13void log_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe3c39a372006-06-06 20:56:12 +020014{
Jens Axboef29b25a2007-07-23 08:56:43 +020015 const char *act[] = { "read", "write", "sync" };
16
17 assert(io_u->ddir < 3);
18
19 if (!td->o.write_iolog_file)
20 return;
21
Jens Axboe5ec10ea2008-03-06 15:42:00 +010022 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
23 act[io_u->ddir], io_u->offset,
24 io_u->buflen);
Jens Axboef29b25a2007-07-23 08:56:43 +020025}
26
27void log_file(struct thread_data *td, struct fio_file *f,
28 enum file_log_act what)
29{
30 const char *act[] = { "add", "open", "close" };
31
32 assert(what < 3);
33
34 if (!td->o.write_iolog_file)
35 return;
36
37 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020038}
39
Jens Axboea61edde2007-05-15 14:29:58 +020040static void iolog_delay(struct thread_data *td, unsigned long delay)
41{
42 unsigned long usec = utime_since_now(&td->last_issue);
43
44 if (delay < usec)
45 return;
46
47 delay -= usec;
48
49 /*
50 * less than 100 usec delay, just regard it as noise
51 */
52 if (delay < 100)
53 return;
54
55 usec_sleep(td, delay);
56}
57
Jens Axboe3c39a372006-06-06 20:56:12 +020058int read_iolog_get(struct thread_data *td, struct io_u *io_u)
59{
60 struct io_piece *ipo;
61
Jens Axboeb3f4b4f2007-07-23 11:23:26 +020062 while (!list_empty(&td->io_log_list)) {
Jens Axboe3c39a372006-06-06 20:56:12 +020063 ipo = list_entry(td->io_log_list.next, struct io_piece, list);
64 list_del(&ipo->list);
Jens Axboea61edde2007-05-15 14:29:58 +020065
Jens Axboef29b25a2007-07-23 08:56:43 +020066 /*
67 * invalid ddir, this is a file action
68 */
Jens Axboe429f6672007-07-23 10:38:43 +020069 if (ipo->ddir == DDIR_INVAL) {
Jens Axboe126d65c2008-03-01 18:04:31 +010070 struct fio_file *f = td->files[ipo->fileno];
Jens Axboef29b25a2007-07-23 08:56:43 +020071
72 if (ipo->file_action == FIO_LOG_OPEN_FILE) {
Jens Axboeed4aa702008-03-07 13:39:59 +010073 int ret;
74
75 ret = td_io_open_file(td, f);
76 if (!ret) {
77 free(ipo);
78 continue;
79 }
80 td_verror(td, ret, "iolog open file");
81 return 1;
Jens Axboef29b25a2007-07-23 08:56:43 +020082 } else if (ipo->file_action == FIO_LOG_CLOSE_FILE) {
83 td_io_close_file(td, f);
84 free(ipo);
Jens Axboeb3f4b4f2007-07-23 11:23:26 +020085 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +020086 }
87 }
88
Jens Axboe429f6672007-07-23 10:38:43 +020089 io_u->offset = ipo->offset;
90 io_u->buflen = ipo->len;
91 io_u->ddir = ipo->ddir;
Jens Axboe126d65c2008-03-01 18:04:31 +010092 io_u->file = td->files[ipo->fileno];
Jens Axboe429f6672007-07-23 10:38:43 +020093 get_file(io_u->file);
94
Jens Axboeee56ad52008-02-01 10:30:20 +010095 dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
96 io_u->buflen, io_u->file->file_name);
97
Jens Axboea61edde2007-05-15 14:29:58 +020098 if (ipo->delay)
99 iolog_delay(td, ipo->delay);
100
Jens Axboe3c39a372006-06-06 20:56:12 +0200101 free(ipo);
102 return 0;
103 }
104
Jens Axboe20e354e2007-07-23 14:36:16 +0200105 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +0200106 return 1;
107}
108
109void prune_io_piece_log(struct thread_data *td)
110{
111 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200112 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200113
Jens Axboe4b878982007-03-26 09:32:22 +0200114 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
115 ipo = rb_entry(n, struct io_piece, rb_node);
116 rb_erase(n, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200117 free(ipo);
118 }
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100119
120 while (!list_empty(&td->io_hist_list)) {
121 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
122 list_del(&ipo->list);
123 free(ipo);
124 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200125}
126
127/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100128 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200129 */
130void log_io_piece(struct thread_data *td, struct io_u *io_u)
131{
Jens Axboe8de8f042007-03-27 10:36:12 +0200132 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200133 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200134
Jens Axboe4b878982007-03-26 09:32:22 +0200135 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +0200136 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200137 ipo->offset = io_u->offset;
138 ipo->len = io_u->buflen;
139
140 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200141 * We don't need to sort the entries, if:
142 *
143 * Sequential writes, or
144 * Random writes that lay out the file as it goes along
145 *
146 * For both these cases, just reading back data in the order we
147 * wrote it out is the fastest.
148 */
Jens Axboe9b23c9f2008-02-21 09:51:32 +0100149 if (!td_random(td) || !td->o.overwrite) {
Jens Axboe8de8f042007-03-27 10:36:12 +0200150 INIT_LIST_HEAD(&ipo->list);
151 list_add_tail(&ipo->list, &td->io_hist_list);
152 return;
153 }
154
155 RB_CLEAR_NODE(&ipo->rb_node);
156 p = &td->io_hist_tree.rb_node;
157 parent = NULL;
158
159 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200160 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200161 */
Jens Axboe4b878982007-03-26 09:32:22 +0200162 while (*p) {
163 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200164
Jens Axboe4b878982007-03-26 09:32:22 +0200165 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200166 if (ipo->offset <= __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200167 p = &(*p)->rb_left;
Jens Axboe4b878982007-03-26 09:32:22 +0200168 else
Jens Axboebb5d7d02007-03-27 10:21:25 +0200169 p = &(*p)->rb_right;
Jens Axboe3c39a372006-06-06 20:56:12 +0200170 }
171
Jens Axboe4b878982007-03-26 09:32:22 +0200172 rb_link_node(&ipo->rb_node, parent, p);
173 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200174}
175
176void write_iolog_close(struct thread_data *td)
177{
178 fflush(td->iolog_f);
179 fclose(td->iolog_f);
180 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200181 td->iolog_f = NULL;
182 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200183}
184
Jens Axboefb71fbd2006-10-20 09:15:46 +0200185/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200186 * Read version 2 iolog data. It is enhanced to include per-file logging,
187 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200188 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200189static int read_iolog2(struct thread_data *td, FILE *f)
190{
191 unsigned long long offset;
192 unsigned int bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200193 int reads, writes, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200194 char *fname, *act;
195 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200196 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200197
198 free_release_files(td);
199
200 /*
201 * Read in the read iolog and store it, reuse the infrastructure
202 * for doing verifications.
203 */
204 str = malloc(4096);
205 fname = malloc(256+16);
206 act = malloc(256+16);
207
208 reads = writes = 0;
209 while ((p = fgets(str, 4096, f)) != NULL) {
210 struct io_piece *ipo;
211 int r;
212
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100213 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
214 &bytes);
Jens Axboef29b25a2007-07-23 08:56:43 +0200215 if (r == 4) {
216 /*
217 * Check action first
218 */
219 if (!strcmp(act, "read"))
220 rw = DDIR_READ;
221 else if (!strcmp(act, "write"))
222 rw = DDIR_WRITE;
223 else if (!strcmp(act, "sync"))
224 rw = DDIR_SYNC;
225 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100226 log_err("fio: bad iolog file action: %s\n",
227 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200228 continue;
229 }
230 } else if (r == 2) {
231 rw = DDIR_INVAL;
232 if (!strcmp(act, "add")) {
233 td->o.nr_files++;
234 fileno = add_file(td, fname);
235 file_action = FIO_LOG_ADD_FILE;
236 continue;
237 } else if (!strcmp(act, "open")) {
238 fileno = get_fileno(td, fname);
239 file_action = FIO_LOG_OPEN_FILE;
240 } else if (!strcmp(act, "close")) {
241 fileno = get_fileno(td, fname);
242 file_action = FIO_LOG_CLOSE_FILE;
243 } else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100244 log_err("fio: bad iolog file action: %s\n",
245 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200246 continue;
247 }
248 } else {
249 log_err("bad iolog2: %s", p);
250 continue;
251 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100252
Jens Axboef29b25a2007-07-23 08:56:43 +0200253 if (rw == DDIR_READ)
254 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200255 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200256 /*
257 * Don't add a write for ro mode
258 */
259 if (read_only)
260 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100261 writes++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200262 } else if (rw != DDIR_SYNC && rw != DDIR_INVAL) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200263 log_err("bad ddir: %d\n", rw);
264 continue;
265 }
266
267 /*
268 * Make note of file
269 */
270 ipo = malloc(sizeof(*ipo));
271 memset(ipo, 0, sizeof(*ipo));
272 INIT_LIST_HEAD(&ipo->list);
273 ipo->offset = offset;
274 ipo->len = bytes;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200275 ipo->ddir = rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200276 if (bytes > td->o.max_bs[rw])
277 td->o.max_bs[rw] = bytes;
278 if (rw == DDIR_INVAL) {
279 ipo->fileno = fileno;
280 ipo->file_action = file_action;
281 }
282 list_add_tail(&ipo->list, &td->io_log_list);
Jens Axboeea966f82007-09-03 10:09:37 +0200283 td->total_io_size += bytes;
Jens Axboef29b25a2007-07-23 08:56:43 +0200284 }
285
286 free(str);
287 free(act);
288 free(fname);
289
Jens Axboe4241ea82007-09-12 08:18:36 +0200290 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100291 log_err("fio: <%s> skips replay of %d writes due to"
292 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200293 writes = 0;
294 }
295
Jens Axboef29b25a2007-07-23 08:56:43 +0200296 if (!reads && !writes)
297 return 1;
298 else if (reads && !writes)
299 td->o.td_ddir = TD_DDIR_READ;
300 else if (!reads && writes)
301 td->o.td_ddir = TD_DDIR_WRITE;
302 else
303 td->o.td_ddir = TD_DDIR_RW;
304
305 return 0;
306}
307
308/*
309 * Read version 1 iolog data.
310 */
311static int read_iolog(struct thread_data *td, FILE *f)
Jens Axboe3c39a372006-06-06 20:56:12 +0200312{
313 unsigned long long offset;
314 unsigned int bytes;
315 char *str, *p;
Jens Axboe21bd2982007-07-23 11:26:27 +0200316 int reads, writes;
gurudas pai59b9ddf2007-10-22 22:10:39 +0200317 int rw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200318
Jens Axboe3c39a372006-06-06 20:56:12 +0200319 /*
Jens Axboe3c39a372006-06-06 20:56:12 +0200320 * Read in the read iolog and store it, reuse the infrastructure
321 * for doing verifications.
322 */
323 str = malloc(4096);
Jens Axboefb71fbd2006-10-20 09:15:46 +0200324 reads = writes = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200325 while ((p = fgets(str, 4096, f)) != NULL) {
326 struct io_piece *ipo;
327
328 if (sscanf(p, "%d,%llu,%u", &rw, &offset, &bytes) != 3) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200329 log_err("bad iolog: %s\n", p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200330 continue;
331 }
332 if (rw == DDIR_READ)
333 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200334 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200335 /*
336 * Don't add a write for ro mode
337 */
338 if (read_only)
339 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100340 writes++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200341 } else if (rw != DDIR_SYNC) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200342 log_err("bad ddir: %d\n", rw);
Jens Axboe3c39a372006-06-06 20:56:12 +0200343 continue;
344 }
345
346 ipo = malloc(sizeof(*ipo));
Jens Axboe733ed592007-04-25 14:24:12 +0200347 memset(ipo, 0, sizeof(*ipo));
Jens Axboe3c39a372006-06-06 20:56:12 +0200348 INIT_LIST_HEAD(&ipo->list);
349 ipo->offset = offset;
350 ipo->len = bytes;
gurudas pai59b9ddf2007-10-22 22:10:39 +0200351 ipo->ddir = (enum fio_ddir) rw;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100352 if (bytes > td->o.max_bs[rw])
353 td->o.max_bs[rw] = bytes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200354 list_add_tail(&ipo->list, &td->io_log_list);
Jens Axboeea966f82007-09-03 10:09:37 +0200355 td->total_io_size += bytes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200356 }
357
358 free(str);
Jens Axboe3c39a372006-06-06 20:56:12 +0200359
Jens Axboe4241ea82007-09-12 08:18:36 +0200360 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100361 log_err("fio: <%s> skips replay of %d writes due to"
362 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200363 writes = 0;
364 }
365
Jens Axboefb71fbd2006-10-20 09:15:46 +0200366 if (!reads && !writes)
Jens Axboe3c39a372006-06-06 20:56:12 +0200367 return 1;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200368 else if (reads && !writes)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100369 td->o.td_ddir = TD_DDIR_READ;
Jens Axboe3c39a372006-06-06 20:56:12 +0200370 else if (!reads && writes)
Jens Axboe36361eb2007-05-15 11:12:19 +0200371 td->o.td_ddir = TD_DDIR_WRITE;
Jens Axboe3c39a372006-06-06 20:56:12 +0200372 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100373 td->o.td_ddir = TD_DDIR_RW;
Jens Axboe3c39a372006-06-06 20:56:12 +0200374
375 return 0;
376}
Jens Axboe8914a9d2006-06-07 11:14:56 +0200377
Jens Axboefb71fbd2006-10-20 09:15:46 +0200378/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200379 * open iolog, check version, and call appropriate parser
380 */
381static int init_iolog_read(struct thread_data *td)
382{
383 char buffer[256], *p;
384 FILE *f;
385 int ret;
386
387 f = fopen(td->o.read_iolog_file, "r");
388 if (!f) {
389 perror("fopen read iolog");
390 return 1;
391 }
392
393 p = fgets(buffer, sizeof(buffer), f);
394 if (!p) {
395 td_verror(td, errno, "iolog read");
396 log_err("fio: unable to read iolog\n");
397 return 1;
398 }
399
400 /*
401 * version 2 of the iolog stores a specific string as the
402 * first line, check for that
403 */
404 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
405 ret = read_iolog2(td, f);
406 else {
407 /*
408 * seek back to the beginning
409 */
410 if (fseek(f, 0, SEEK_SET) < 0) {
411 td_verror(td, errno, "iolog read");
412 log_err("fio: unable to read iolog\n");
413 return 1;
414 }
415
416 ret = read_iolog(td, f);
417 }
418
419 fclose(f);
420 return ret;
421}
422
423/*
Jens Axboefb71fbd2006-10-20 09:15:46 +0200424 * Setup a log for storing io patterns.
425 */
426static int init_iolog_write(struct thread_data *td)
427{
Jens Axboef29b25a2007-07-23 08:56:43 +0200428 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200429 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200430 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200431
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100432 f = fopen(td->o.write_iolog_file, "w+");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200433 if (!f) {
434 perror("fopen write iolog");
435 return 1;
436 }
437
438 /*
439 * That's it for writing, setup a log buffer and we're done.
440 */
441 td->iolog_f = f;
442 td->iolog_buf = malloc(8192);
443 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200444
445 /*
446 * write our version line
447 */
448 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
449 perror("iolog init\n");
450 return 1;
451 }
452
453 /*
454 * add all known files
455 */
456 for_each_file(td, ff, i)
457 log_file(td, ff, FIO_LOG_ADD_FILE);
458
Jens Axboefb71fbd2006-10-20 09:15:46 +0200459 return 0;
460}
461
462int init_iolog(struct thread_data *td)
463{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200464 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200465
Jens Axboeba0fbe12007-03-09 14:34:23 +0100466 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200467 return 0;
468
Jens Axboefb7b71a2007-05-15 08:44:04 +0200469 if (td->o.read_iolog_file) {
470 /*
471 * Check if it's a blktrace file and load that if possible.
472 * Otherwise assume it's a normal log file and load that.
473 */
474 if (is_blktrace(td->o.read_iolog_file))
475 ret = load_blktrace(td, td->o.read_iolog_file);
476 else
477 ret = init_iolog_read(td);
478 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200479 ret = init_iolog_write(td);
480
Jens Axboe1e97cce2006-12-05 11:44:16 +0100481 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200482}
483
Jens Axboe8914a9d2006-06-07 11:14:56 +0200484void setup_log(struct io_log **log)
485{
486 struct io_log *l = malloc(sizeof(*l));
487
488 l->nr_samples = 0;
489 l->max_samples = 1024;
490 l->log = malloc(l->max_samples * sizeof(struct io_sample));
491 *log = l;
492}
493
Jens Axboebb3884d2007-01-17 17:23:11 +1100494void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200495{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200496 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100497 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200498
Jens Axboebb3884d2007-01-17 17:23:11 +1100499 f = fopen(name, "w");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200500 if (!f) {
501 perror("fopen log");
502 return;
503 }
504
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100505 for (i = 0; i < log->nr_samples; i++) {
506 fprintf(f, "%lu, %lu, %u\n", log->log[i].time, log->log[i].val,
507 log->log[i].ddir);
508 }
Jens Axboe8914a9d2006-06-07 11:14:56 +0200509
510 fclose(f);
511 free(log->log);
512 free(log);
513}
Jens Axboebb3884d2007-01-17 17:23:11 +1100514
515void finish_log(struct thread_data *td, struct io_log *log, const char *name)
516{
517 char file_name[256];
518
519 snprintf(file_name, 200, "client%d_%s.log", td->thread_number, name);
520 __finish_log(log, file_name);
521}