blob: ba52f0768744df5ea19cec1c2758a399e0cc8db9 [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 Axboe5f9099e2009-06-16 22:40:26 +020023 const char *act[] = { "read", "write", "sync", "datasync" };
Jens Axboef29b25a2007-07-23 08:56:43 +020024
25 assert(io_u->ddir < 3);
26
27 if (!td->o.write_iolog_file)
28 return;
29
Jens Axboe5ec10ea2008-03-06 15:42:00 +010030 fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
31 act[io_u->ddir], io_u->offset,
32 io_u->buflen);
Jens Axboef29b25a2007-07-23 08:56:43 +020033}
34
35void log_file(struct thread_data *td, struct fio_file *f,
36 enum file_log_act what)
37{
38 const char *act[] = { "add", "open", "close" };
39
40 assert(what < 3);
41
42 if (!td->o.write_iolog_file)
43 return;
44
Jens Axboe393ca7e2008-05-15 09:17:42 +020045
46 /*
47 * this happens on the pre-open/close done before the job starts
48 */
49 if (!td->iolog_f)
50 return;
51
Jens Axboef29b25a2007-07-23 08:56:43 +020052 fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
Jens Axboe3c39a372006-06-06 20:56:12 +020053}
54
Jens Axboea61edde2007-05-15 14:29:58 +020055static void iolog_delay(struct thread_data *td, unsigned long delay)
56{
57 unsigned long usec = utime_since_now(&td->last_issue);
58
59 if (delay < usec)
60 return;
61
62 delay -= usec;
63
64 /*
65 * less than 100 usec delay, just regard it as noise
66 */
67 if (delay < 100)
68 return;
69
70 usec_sleep(td, delay);
71}
72
Jens Axboef7182732008-03-10 13:57:58 +010073static int ipo_special(struct thread_data *td, struct io_piece *ipo)
74{
75 struct fio_file *f;
76 int ret;
77
78 /*
79 * Not a special ipo
80 */
81 if (ipo->ddir != DDIR_INVAL)
82 return 0;
83
84 f = td->files[ipo->fileno];
85
86 switch (ipo->file_action) {
87 case FIO_LOG_OPEN_FILE:
88 ret = td_io_open_file(td, f);
Glen Ogilvie457bf392009-11-03 21:52:36 +010089 if (!ret)
Jens Axboef7182732008-03-10 13:57:58 +010090 break;
Jens Axboef7182732008-03-10 13:57:58 +010091 td_verror(td, ret, "iolog open file");
92 return -1;
93 case FIO_LOG_CLOSE_FILE:
94 td_io_close_file(td, f);
95 break;
96 case FIO_LOG_UNLINK_FILE:
97 unlink(f->file_name);
98 break;
99 default:
100 log_err("fio: bad file action %d\n", ipo->file_action);
101 break;
102 }
103
104 return 1;
105}
106
Jens Axboe3c39a372006-06-06 20:56:12 +0200107int read_iolog_get(struct thread_data *td, struct io_u *io_u)
108{
109 struct io_piece *ipo;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100110 unsigned long elapsed;
111
Jens Axboe01743ee2008-06-02 12:19:19 +0200112 while (!flist_empty(&td->io_log_list)) {
Jens Axboef7182732008-03-10 13:57:58 +0100113 int ret;
114
Jens Axboe01743ee2008-06-02 12:19:19 +0200115 ipo = flist_entry(td->io_log_list.next, struct io_piece, list);
116 flist_del(&ipo->list);
Jens Axboea61edde2007-05-15 14:29:58 +0200117
Jens Axboef7182732008-03-10 13:57:58 +0100118 ret = ipo_special(td, ipo);
119 if (ret < 0) {
120 free(ipo);
121 break;
122 } else if (ret > 0) {
123 free(ipo);
124 continue;
Jens Axboef29b25a2007-07-23 08:56:43 +0200125 }
126
Jens Axboe429f6672007-07-23 10:38:43 +0200127 io_u->ddir = ipo->ddir;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100128 if (ipo->ddir != DDIR_WAIT) {
129 io_u->offset = ipo->offset;
130 io_u->buflen = ipo->len;
131 io_u->file = td->files[ipo->fileno];
132 get_file(io_u->file);
Jens Axboe429f6672007-07-23 10:38:43 +0200133
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);
136 if (ipo->delay) iolog_delay(td, ipo->delay);
137 } else {
138 elapsed = mtime_since_genesis();
139 if (ipo->delay > elapsed)
140 usec_sleep(td, (ipo->delay - elapsed) * 1000);
141
142 }
Jens Axboea61edde2007-05-15 14:29:58 +0200143
Jens Axboe3c39a372006-06-06 20:56:12 +0200144 free(ipo);
Glen Ogilvie457bf392009-11-03 21:52:36 +0100145
146 if (ipo->ddir != DDIR_WAIT)
147 return 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200148 }
149
Jens Axboe20e354e2007-07-23 14:36:16 +0200150 td->done = 1;
Jens Axboe3c39a372006-06-06 20:56:12 +0200151 return 1;
152}
153
154void prune_io_piece_log(struct thread_data *td)
155{
156 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +0200157 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +0200158
Jens Axboe4b878982007-03-26 09:32:22 +0200159 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
160 ipo = rb_entry(n, struct io_piece, rb_node);
161 rb_erase(n, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200162 free(ipo);
163 }
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100164
Jens Axboe01743ee2008-06-02 12:19:19 +0200165 while (!flist_empty(&td->io_hist_list)) {
166 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
167 flist_del(&ipo->list);
Jens Axboe8ce9cd32008-02-21 09:52:35 +0100168 free(ipo);
169 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200170}
171
172/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100173 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +0200174 */
175void log_io_piece(struct thread_data *td, struct io_u *io_u)
176{
Jens Axboe8de8f042007-03-27 10:36:12 +0200177 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +0200178 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +0200179
Jens Axboe4b878982007-03-26 09:32:22 +0200180 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +0200181 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +0200182 ipo->offset = io_u->offset;
183 ipo->len = io_u->buflen;
184
185 /*
Jens Axboe8de8f042007-03-27 10:36:12 +0200186 * We don't need to sort the entries, if:
187 *
188 * Sequential writes, or
189 * Random writes that lay out the file as it goes along
190 *
191 * For both these cases, just reading back data in the order we
192 * wrote it out is the fastest.
Jens Axboe83472392009-02-19 21:32:12 +0100193 *
194 * One exception is if we don't have a random map AND we are doing
195 * verifies, in that case we need to check for duplicate blocks and
196 * drop the old one, which we rely on the rb insert/lookup for
197 * handling.
Jens Axboe8de8f042007-03-27 10:36:12 +0200198 */
Jens Axboe83472392009-02-19 21:32:12 +0100199 if ((!td_random(td) || !td->o.overwrite) &&
200 (file_randommap(td, ipo->file) || td->o.verify == VERIFY_NONE)) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200201 INIT_FLIST_HEAD(&ipo->list);
202 flist_add_tail(&ipo->list, &td->io_hist_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200203 return;
204 }
205
206 RB_CLEAR_NODE(&ipo->rb_node);
Jens Axboe8de8f042007-03-27 10:36:12 +0200207
208 /*
Jens Axboe4b878982007-03-26 09:32:22 +0200209 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +0200210 */
Jens Axboe83472392009-02-19 21:32:12 +0100211restart:
212 p = &td->io_hist_tree.rb_node;
213 parent = NULL;
Jens Axboe4b878982007-03-26 09:32:22 +0200214 while (*p) {
215 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200216
Jens Axboe4b878982007-03-26 09:32:22 +0200217 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboe83472392009-02-19 21:32:12 +0100218 if (ipo->offset < __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +0200219 p = &(*p)->rb_left;
Jens Axboe83472392009-02-19 21:32:12 +0100220 else if (ipo->offset > __ipo->offset)
Jens Axboebb5d7d02007-03-27 10:21:25 +0200221 p = &(*p)->rb_right;
Jens Axboe83472392009-02-19 21:32:12 +0100222 else {
223 assert(ipo->len == __ipo->len);
224 rb_erase(parent, &td->io_hist_tree);
225 goto restart;
226 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200227 }
228
Jens Axboe4b878982007-03-26 09:32:22 +0200229 rb_link_node(&ipo->rb_node, parent, p);
230 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +0200231}
232
233void write_iolog_close(struct thread_data *td)
234{
235 fflush(td->iolog_f);
236 fclose(td->iolog_f);
237 free(td->iolog_buf);
Jens Axboef29b25a2007-07-23 08:56:43 +0200238 td->iolog_f = NULL;
239 td->iolog_buf = NULL;
Jens Axboe3c39a372006-06-06 20:56:12 +0200240}
241
Jens Axboefb71fbd2006-10-20 09:15:46 +0200242/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200243 * Read version 2 iolog data. It is enhanced to include per-file logging,
244 * syncs, etc.
Jens Axboefb71fbd2006-10-20 09:15:46 +0200245 */
Jens Axboef29b25a2007-07-23 08:56:43 +0200246static int read_iolog2(struct thread_data *td, FILE *f)
247{
248 unsigned long long offset;
249 unsigned int bytes;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100250 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */
Jens Axboef29b25a2007-07-23 08:56:43 +0200251 char *fname, *act;
252 char *str, *p;
Jens Axboe53fa9b62007-07-23 11:25:39 +0200253 enum fio_ddir rw;
Jens Axboef29b25a2007-07-23 08:56:43 +0200254
255 free_release_files(td);
256
257 /*
258 * Read in the read iolog and store it, reuse the infrastructure
259 * for doing verifications.
260 */
261 str = malloc(4096);
262 fname = malloc(256+16);
263 act = malloc(256+16);
264
Glen Ogilvie457bf392009-11-03 21:52:36 +0100265 reads = writes = waits = 0;
Jens Axboef29b25a2007-07-23 08:56:43 +0200266 while ((p = fgets(str, 4096, f)) != NULL) {
267 struct io_piece *ipo;
268 int r;
269
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100270 r = sscanf(p, "%256s %256s %llu %u", fname, act, &offset,
271 &bytes);
Jens Axboef29b25a2007-07-23 08:56:43 +0200272 if (r == 4) {
273 /*
274 * Check action first
275 */
Glen Ogilvie457bf392009-11-03 21:52:36 +0100276 if (!strcmp(act, "wait"))
277 rw = DDIR_WAIT;
278 else if (!strcmp(act, "read"))
Jens Axboef29b25a2007-07-23 08:56:43 +0200279 rw = DDIR_READ;
280 else if (!strcmp(act, "write"))
281 rw = DDIR_WRITE;
282 else if (!strcmp(act, "sync"))
283 rw = DDIR_SYNC;
Jens Axboe5f9099e2009-06-16 22:40:26 +0200284 else if (!strcmp(act, "datasync"))
285 rw = DDIR_DATASYNC;
Jens Axboef29b25a2007-07-23 08:56:43 +0200286 else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100287 log_err("fio: bad iolog file action: %s\n",
288 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200289 continue;
290 }
291 } else if (r == 2) {
292 rw = DDIR_INVAL;
293 if (!strcmp(act, "add")) {
294 td->o.nr_files++;
295 fileno = add_file(td, fname);
296 file_action = FIO_LOG_ADD_FILE;
297 continue;
298 } else if (!strcmp(act, "open")) {
299 fileno = get_fileno(td, fname);
300 file_action = FIO_LOG_OPEN_FILE;
301 } else if (!strcmp(act, "close")) {
302 fileno = get_fileno(td, fname);
303 file_action = FIO_LOG_CLOSE_FILE;
304 } else {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100305 log_err("fio: bad iolog file action: %s\n",
306 act);
Jens Axboef29b25a2007-07-23 08:56:43 +0200307 continue;
308 }
309 } else {
310 log_err("bad iolog2: %s", p);
311 continue;
312 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100313
Jens Axboef29b25a2007-07-23 08:56:43 +0200314 if (rw == DDIR_READ)
315 reads++;
Jens Axboe4241ea82007-09-12 08:18:36 +0200316 else if (rw == DDIR_WRITE) {
Jens Axboe4241ea82007-09-12 08:18:36 +0200317 /*
318 * Don't add a write for ro mode
319 */
320 if (read_only)
321 continue;
Jens Axboeed4aa702008-03-07 13:39:59 +0100322 writes++;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100323 } else if (rw == DDIR_WAIT) {
324 waits++;
325 } else if (rw == DDIR_INVAL) {
Jens Axboe5f9099e2009-06-16 22:40:26 +0200326 } else if (!ddir_sync(rw)) {
Jens Axboef29b25a2007-07-23 08:56:43 +0200327 log_err("bad ddir: %d\n", rw);
328 continue;
329 }
330
331 /*
332 * Make note of file
333 */
334 ipo = malloc(sizeof(*ipo));
335 memset(ipo, 0, sizeof(*ipo));
Jens Axboe01743ee2008-06-02 12:19:19 +0200336 INIT_FLIST_HEAD(&ipo->list);
Jens Axboe53fa9b62007-07-23 11:25:39 +0200337 ipo->ddir = rw;
Glen Ogilvie457bf392009-11-03 21:52:36 +0100338 if (rw == DDIR_WAIT) {
339 ipo->delay = offset;
340 } else {
341 ipo->offset = offset;
342 ipo->len = bytes;
343 if (bytes > td->o.max_bs[rw])
344 td->o.max_bs[rw] = bytes;
Jens Axboef29b25a2007-07-23 08:56:43 +0200345 ipo->fileno = fileno;
346 ipo->file_action = file_action;
347 }
Glen Ogilvie457bf392009-11-03 21:52:36 +0100348
Jens Axboe691c8fb2008-03-07 14:26:26 +0100349 queue_io_piece(td, ipo);
Jens Axboef29b25a2007-07-23 08:56:43 +0200350 }
351
352 free(str);
353 free(act);
354 free(fname);
355
Jens Axboe4241ea82007-09-12 08:18:36 +0200356 if (writes && read_only) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100357 log_err("fio: <%s> skips replay of %d writes due to"
358 " read-only\n", td->o.name, writes);
Jens Axboe4241ea82007-09-12 08:18:36 +0200359 writes = 0;
360 }
361
Glen Ogilvie457bf392009-11-03 21:52:36 +0100362 if (!reads && !writes && !waits)
Jens Axboef29b25a2007-07-23 08:56:43 +0200363 return 1;
364 else if (reads && !writes)
365 td->o.td_ddir = TD_DDIR_READ;
366 else if (!reads && writes)
367 td->o.td_ddir = TD_DDIR_WRITE;
368 else
369 td->o.td_ddir = TD_DDIR_RW;
370
371 return 0;
372}
373
374/*
Jens Axboef29b25a2007-07-23 08:56:43 +0200375 * open iolog, check version, and call appropriate parser
376 */
377static int init_iolog_read(struct thread_data *td)
378{
379 char buffer[256], *p;
380 FILE *f;
381 int ret;
382
383 f = fopen(td->o.read_iolog_file, "r");
384 if (!f) {
385 perror("fopen read iolog");
386 return 1;
387 }
388
389 p = fgets(buffer, sizeof(buffer), f);
390 if (!p) {
391 td_verror(td, errno, "iolog read");
392 log_err("fio: unable to read iolog\n");
393 return 1;
394 }
395
396 /*
397 * version 2 of the iolog stores a specific string as the
398 * first line, check for that
399 */
400 if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
401 ret = read_iolog2(td, f);
402 else {
Jens Axboeaec2de22008-04-24 12:44:42 +0200403 log_err("fio: iolog version 1 is no longer supported\n");
404 ret = 1;
Jens Axboef29b25a2007-07-23 08:56:43 +0200405 }
406
407 fclose(f);
408 return ret;
409}
410
411/*
Jens Axboefb71fbd2006-10-20 09:15:46 +0200412 * Setup a log for storing io patterns.
413 */
414static int init_iolog_write(struct thread_data *td)
415{
Jens Axboef29b25a2007-07-23 08:56:43 +0200416 struct fio_file *ff;
Jens Axboe076efc72006-10-27 11:24:25 +0200417 FILE *f;
Jens Axboef29b25a2007-07-23 08:56:43 +0200418 unsigned int i;
Jens Axboe733ed592007-04-25 14:24:12 +0200419
Jens Axboec12f6da2008-11-20 09:13:04 +0100420 f = fopen(td->o.write_iolog_file, "a");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200421 if (!f) {
422 perror("fopen write iolog");
423 return 1;
424 }
425
426 /*
427 * That's it for writing, setup a log buffer and we're done.
428 */
429 td->iolog_f = f;
430 td->iolog_buf = malloc(8192);
431 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
Jens Axboef29b25a2007-07-23 08:56:43 +0200432
433 /*
434 * write our version line
435 */
436 if (fprintf(f, "%s\n", iolog_ver2) < 0) {
437 perror("iolog init\n");
438 return 1;
439 }
440
441 /*
442 * add all known files
443 */
444 for_each_file(td, ff, i)
445 log_file(td, ff, FIO_LOG_ADD_FILE);
446
Jens Axboefb71fbd2006-10-20 09:15:46 +0200447 return 0;
448}
449
450int init_iolog(struct thread_data *td)
451{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200452 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200453
Jens Axboefb7b71a2007-05-15 08:44:04 +0200454 if (td->o.read_iolog_file) {
455 /*
456 * Check if it's a blktrace file and load that if possible.
457 * Otherwise assume it's a normal log file and load that.
458 */
459 if (is_blktrace(td->o.read_iolog_file))
460 ret = load_blktrace(td, td->o.read_iolog_file);
461 else
462 ret = init_iolog_read(td);
463 } else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200464 ret = init_iolog_write(td);
465
Jens Axboe1e97cce2006-12-05 11:44:16 +0100466 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200467}
468
Jens Axboe8914a9d2006-06-07 11:14:56 +0200469void setup_log(struct io_log **log)
470{
471 struct io_log *l = malloc(sizeof(*l));
472
473 l->nr_samples = 0;
474 l->max_samples = 1024;
475 l->log = malloc(l->max_samples * sizeof(struct io_sample));
476 *log = l;
477}
478
Jens Axboebb3884d2007-01-17 17:23:11 +1100479void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200480{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200481 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100482 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200483
Jens Axboec12f6da2008-11-20 09:13:04 +0100484 f = fopen(name, "a");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200485 if (!f) {
486 perror("fopen log");
487 return;
488 }
489
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100490 for (i = 0; i < log->nr_samples; i++) {
Jens Axboe306ddc92009-05-18 13:08:12 +0200491 fprintf(f, "%lu, %lu, %u, %u\n", log->log[i].time,
492 log->log[i].val,
493 log->log[i].ddir,
494 log->log[i].bs);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100495 }
Jens Axboe8914a9d2006-06-07 11:14:56 +0200496
497 fclose(f);
498 free(log->log);
499 free(log);
500}
Jens Axboebb3884d2007-01-17 17:23:11 +1100501
Jens Axboee3cedca2008-11-19 19:57:52 +0100502void finish_log_named(struct thread_data *td, struct io_log *log,
503 const char *prefix, const char *postfix)
Jens Axboebb3884d2007-01-17 17:23:11 +1100504{
Jens Axboe748b23a2008-05-07 14:28:22 +0200505 char file_name[256], *p;
Jens Axboebb3884d2007-01-17 17:23:11 +1100506
Jens Axboee3cedca2008-11-19 19:57:52 +0100507 snprintf(file_name, 200, "%s_%s.log", prefix, postfix);
Jens Axboe748b23a2008-05-07 14:28:22 +0200508 p = basename(file_name);
509 __finish_log(log, p);
Jens Axboebb3884d2007-01-17 17:23:11 +1100510}
Jens Axboee3cedca2008-11-19 19:57:52 +0100511
512void finish_log(struct thread_data *td, struct io_log *log, const char *name)
513{
514 finish_log_named(td, log, td->o.name, name);
515}