doc: remove '--runtime' command line option
[fio.git] / iolog.c
1 /*
2  * Code related to writing an iolog of what a thread is doing, and to
3  * later read that back and replay
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <libgen.h>
8 #include <assert.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <unistd.h>
12 #ifdef CONFIG_ZLIB
13 #include <zlib.h>
14 #endif
15
16 #include "flist.h"
17 #include "fio.h"
18 #include "verify.h"
19 #include "trim.h"
20 #include "filelock.h"
21 #include "smalloc.h"
22 #include "blktrace.h"
23
24 static int iolog_flush(struct io_log *log);
25
26 static const char iolog_ver2[] = "fio version 2 iolog";
27
28 void queue_io_piece(struct thread_data *td, struct io_piece *ipo)
29 {
30         flist_add_tail(&ipo->list, &td->io_log_list);
31         td->total_io_size += ipo->len;
32 }
33
34 void log_io_u(const struct thread_data *td, const struct io_u *io_u)
35 {
36         if (!td->o.write_iolog_file)
37                 return;
38
39         fprintf(td->iolog_f, "%s %s %llu %lu\n", io_u->file->file_name,
40                                                 io_ddir_name(io_u->ddir),
41                                                 io_u->offset, io_u->buflen);
42 }
43
44 void log_file(struct thread_data *td, struct fio_file *f,
45               enum file_log_act what)
46 {
47         const char *act[] = { "add", "open", "close" };
48
49         assert(what < 3);
50
51         if (!td->o.write_iolog_file)
52                 return;
53
54
55         /*
56          * this happens on the pre-open/close done before the job starts
57          */
58         if (!td->iolog_f)
59                 return;
60
61         fprintf(td->iolog_f, "%s %s\n", f->file_name, act[what]);
62 }
63
64 static void iolog_delay(struct thread_data *td, unsigned long delay)
65 {
66         uint64_t usec = utime_since_now(&td->last_issue);
67         uint64_t this_delay;
68         struct timespec ts;
69
70         if (delay < td->time_offset) {
71                 td->time_offset = 0;
72                 return;
73         }
74
75         delay -= td->time_offset;
76         if (delay < usec)
77                 return;
78
79         delay -= usec;
80
81         fio_gettime(&ts, NULL);
82         while (delay && !td->terminate) {
83                 this_delay = delay;
84                 if (this_delay > 500000)
85                         this_delay = 500000;
86
87                 usec_sleep(td, this_delay);
88                 delay -= this_delay;
89         }
90
91         usec = utime_since_now(&ts);
92         if (usec > delay)
93                 td->time_offset = usec - delay;
94         else
95                 td->time_offset = 0;
96 }
97
98 static int ipo_special(struct thread_data *td, struct io_piece *ipo)
99 {
100         struct fio_file *f;
101         int ret;
102
103         /*
104          * Not a special ipo
105          */
106         if (ipo->ddir != DDIR_INVAL)
107                 return 0;
108
109         f = td->files[ipo->fileno];
110
111         switch (ipo->file_action) {
112         case FIO_LOG_OPEN_FILE:
113                 if (td->o.replay_redirect && fio_file_open(f)) {
114                         dprint(FD_FILE, "iolog: ignoring re-open of file %s\n",
115                                         f->file_name);
116                         break;
117                 }
118                 ret = td_io_open_file(td, f);
119                 if (!ret)
120                         break;
121                 td_verror(td, ret, "iolog open file");
122                 return -1;
123         case FIO_LOG_CLOSE_FILE:
124                 td_io_close_file(td, f);
125                 break;
126         case FIO_LOG_UNLINK_FILE:
127                 td_io_unlink_file(td, f);
128                 break;
129         default:
130                 log_err("fio: bad file action %d\n", ipo->file_action);
131                 break;
132         }
133
134         return 1;
135 }
136
137 int read_iolog_get(struct thread_data *td, struct io_u *io_u)
138 {
139         struct io_piece *ipo;
140         unsigned long elapsed;
141
142         while (!flist_empty(&td->io_log_list)) {
143                 int ret;
144
145                 ipo = flist_first_entry(&td->io_log_list, struct io_piece, list);
146                 flist_del(&ipo->list);
147                 remove_trim_entry(td, ipo);
148
149                 ret = ipo_special(td, ipo);
150                 if (ret < 0) {
151                         free(ipo);
152                         break;
153                 } else if (ret > 0) {
154                         free(ipo);
155                         continue;
156                 }
157
158                 io_u->ddir = ipo->ddir;
159                 if (ipo->ddir != DDIR_WAIT) {
160                         io_u->offset = ipo->offset;
161                         io_u->buflen = ipo->len;
162                         io_u->file = td->files[ipo->fileno];
163                         get_file(io_u->file);
164                         dprint(FD_IO, "iolog: get %llu/%lu/%s\n", io_u->offset,
165                                                 io_u->buflen, io_u->file->file_name);
166                         if (ipo->delay)
167                                 iolog_delay(td, ipo->delay);
168                 } else {
169                         elapsed = mtime_since_genesis();
170                         if (ipo->delay > elapsed)
171                                 usec_sleep(td, (ipo->delay - elapsed) * 1000);
172                 }
173
174                 free(ipo);
175
176                 if (io_u->ddir != DDIR_WAIT)
177                         return 0;
178         }
179
180         td->done = 1;
181         return 1;
182 }
183
184 void prune_io_piece_log(struct thread_data *td)
185 {
186         struct io_piece *ipo;
187         struct rb_node *n;
188
189         while ((n = rb_first(&td->io_hist_tree)) != NULL) {
190                 ipo = rb_entry(n, struct io_piece, rb_node);
191                 rb_erase(n, &td->io_hist_tree);
192                 remove_trim_entry(td, ipo);
193                 td->io_hist_len--;
194                 free(ipo);
195         }
196
197         while (!flist_empty(&td->io_hist_list)) {
198                 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
199                 flist_del(&ipo->list);
200                 remove_trim_entry(td, ipo);
201                 td->io_hist_len--;
202                 free(ipo);
203         }
204 }
205
206 /*
207  * log a successful write, so we can unwind the log for verify
208  */
209 void log_io_piece(struct thread_data *td, struct io_u *io_u)
210 {
211         struct rb_node **p, *parent;
212         struct io_piece *ipo, *__ipo;
213
214         ipo = malloc(sizeof(struct io_piece));
215         init_ipo(ipo);
216         ipo->file = io_u->file;
217         ipo->offset = io_u->offset;
218         ipo->len = io_u->buflen;
219         ipo->numberio = io_u->numberio;
220         ipo->flags = IP_F_IN_FLIGHT;
221
222         io_u->ipo = ipo;
223
224         if (io_u_should_trim(td, io_u)) {
225                 flist_add_tail(&ipo->trim_list, &td->trim_list);
226                 td->trim_entries++;
227         }
228
229         /*
230          * We don't need to sort the entries if we only performed sequential
231          * writes. In this case, just reading back data in the order we wrote
232          * it out is the faster but still safe.
233          *
234          * One exception is if we don't have a random map in which case we need
235          * to check for duplicate blocks and drop the old one, which we rely on
236          * the rb insert/lookup for handling.
237          */
238         if (((!td->o.verifysort) || !td_random(td)) &&
239               file_randommap(td, ipo->file)) {
240                 INIT_FLIST_HEAD(&ipo->list);
241                 flist_add_tail(&ipo->list, &td->io_hist_list);
242                 ipo->flags |= IP_F_ONLIST;
243                 td->io_hist_len++;
244                 return;
245         }
246
247         RB_CLEAR_NODE(&ipo->rb_node);
248
249         /*
250          * Sort the entry into the verification list
251          */
252 restart:
253         p = &td->io_hist_tree.rb_node;
254         parent = NULL;
255         while (*p) {
256                 int overlap = 0;
257                 parent = *p;
258
259                 __ipo = rb_entry(parent, struct io_piece, rb_node);
260                 if (ipo->file < __ipo->file)
261                         p = &(*p)->rb_left;
262                 else if (ipo->file > __ipo->file)
263                         p = &(*p)->rb_right;
264                 else if (ipo->offset < __ipo->offset) {
265                         p = &(*p)->rb_left;
266                         overlap = ipo->offset + ipo->len > __ipo->offset;
267                 }
268                 else if (ipo->offset > __ipo->offset) {
269                         p = &(*p)->rb_right;
270                         overlap = __ipo->offset + __ipo->len > ipo->offset;
271                 }
272                 else
273                         overlap = 1;
274
275                 if (overlap) {
276                         dprint(FD_IO, "iolog: overlap %llu/%lu, %llu/%lu\n",
277                                 __ipo->offset, __ipo->len,
278                                 ipo->offset, ipo->len);
279                         td->io_hist_len--;
280                         rb_erase(parent, &td->io_hist_tree);
281                         remove_trim_entry(td, __ipo);
282                         if (!(__ipo->flags & IP_F_IN_FLIGHT))
283                                 free(__ipo);
284                         goto restart;
285                 }
286         }
287
288         rb_link_node(&ipo->rb_node, parent, p);
289         rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
290         ipo->flags |= IP_F_ONRB;
291         td->io_hist_len++;
292 }
293
294 void unlog_io_piece(struct thread_data *td, struct io_u *io_u)
295 {
296         struct io_piece *ipo = io_u->ipo;
297
298         if (td->ts.nr_block_infos) {
299                 uint32_t *info = io_u_block_info(td, io_u);
300                 if (BLOCK_INFO_STATE(*info) < BLOCK_STATE_TRIM_FAILURE) {
301                         if (io_u->ddir == DDIR_TRIM)
302                                 *info = BLOCK_INFO_SET_STATE(*info,
303                                                 BLOCK_STATE_TRIM_FAILURE);
304                         else if (io_u->ddir == DDIR_WRITE)
305                                 *info = BLOCK_INFO_SET_STATE(*info,
306                                                 BLOCK_STATE_WRITE_FAILURE);
307                 }
308         }
309
310         if (!ipo)
311                 return;
312
313         if (ipo->flags & IP_F_ONRB)
314                 rb_erase(&ipo->rb_node, &td->io_hist_tree);
315         else if (ipo->flags & IP_F_ONLIST)
316                 flist_del(&ipo->list);
317
318         free(ipo);
319         io_u->ipo = NULL;
320         td->io_hist_len--;
321 }
322
323 void trim_io_piece(struct thread_data *td, const struct io_u *io_u)
324 {
325         struct io_piece *ipo = io_u->ipo;
326
327         if (!ipo)
328                 return;
329
330         ipo->len = io_u->xfer_buflen - io_u->resid;
331 }
332
333 void write_iolog_close(struct thread_data *td)
334 {
335         fflush(td->iolog_f);
336         fclose(td->iolog_f);
337         free(td->iolog_buf);
338         td->iolog_f = NULL;
339         td->iolog_buf = NULL;
340 }
341
342 /*
343  * Read version 2 iolog data. It is enhanced to include per-file logging,
344  * syncs, etc.
345  */
346 static int read_iolog2(struct thread_data *td, FILE *f)
347 {
348         unsigned long long offset;
349         unsigned int bytes;
350         int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */
351         char *rfname, *fname, *act;
352         char *str, *p;
353         enum fio_ddir rw;
354
355         free_release_files(td);
356
357         /*
358          * Read in the read iolog and store it, reuse the infrastructure
359          * for doing verifications.
360          */
361         str = malloc(4096);
362         rfname = fname = malloc(256+16);
363         act = malloc(256+16);
364
365         reads = writes = waits = 0;
366         while ((p = fgets(str, 4096, f)) != NULL) {
367                 struct io_piece *ipo;
368                 int r;
369
370                 r = sscanf(p, "%256s %256s %llu %u", rfname, act, &offset,
371                                                                         &bytes);
372
373                 if (td->o.replay_redirect)
374                         fname = td->o.replay_redirect;
375
376                 if (r == 4) {
377                         /*
378                          * Check action first
379                          */
380                         if (!strcmp(act, "wait"))
381                                 rw = DDIR_WAIT;
382                         else if (!strcmp(act, "read"))
383                                 rw = DDIR_READ;
384                         else if (!strcmp(act, "write"))
385                                 rw = DDIR_WRITE;
386                         else if (!strcmp(act, "sync"))
387                                 rw = DDIR_SYNC;
388                         else if (!strcmp(act, "datasync"))
389                                 rw = DDIR_DATASYNC;
390                         else if (!strcmp(act, "trim"))
391                                 rw = DDIR_TRIM;
392                         else {
393                                 log_err("fio: bad iolog file action: %s\n",
394                                                                         act);
395                                 continue;
396                         }
397                         fileno = get_fileno(td, fname);
398                 } else if (r == 2) {
399                         rw = DDIR_INVAL;
400                         if (!strcmp(act, "add")) {
401                                 if (td->o.replay_redirect &&
402                                     get_fileno(td, fname) != -1) {
403                                         dprint(FD_FILE, "iolog: ignoring"
404                                                 " re-add of file %s\n", fname);
405                                 } else {
406                                         fileno = add_file(td, fname, 0, 1);
407                                         file_action = FIO_LOG_ADD_FILE;
408                                 }
409                                 continue;
410                         } else if (!strcmp(act, "open")) {
411                                 fileno = get_fileno(td, fname);
412                                 file_action = FIO_LOG_OPEN_FILE;
413                         } else if (!strcmp(act, "close")) {
414                                 fileno = get_fileno(td, fname);
415                                 file_action = FIO_LOG_CLOSE_FILE;
416                         } else {
417                                 log_err("fio: bad iolog file action: %s\n",
418                                                                         act);
419                                 continue;
420                         }
421                 } else {
422                         log_err("bad iolog2: %s\n", p);
423                         continue;
424                 }
425
426                 if (rw == DDIR_READ)
427                         reads++;
428                 else if (rw == DDIR_WRITE) {
429                         /*
430                          * Don't add a write for ro mode
431                          */
432                         if (read_only)
433                                 continue;
434                         writes++;
435                 } else if (rw == DDIR_WAIT) {
436                         if (td->o.no_stall)
437                                 continue;
438                         waits++;
439                 } else if (rw == DDIR_INVAL) {
440                 } else if (!ddir_sync(rw)) {
441                         log_err("bad ddir: %d\n", rw);
442                         continue;
443                 }
444
445                 /*
446                  * Make note of file
447                  */
448                 ipo = malloc(sizeof(*ipo));
449                 init_ipo(ipo);
450                 ipo->ddir = rw;
451                 if (rw == DDIR_WAIT) {
452                         ipo->delay = offset;
453                 } else {
454                         if (td->o.replay_scale)
455                                 ipo->offset = offset / td->o.replay_scale;
456                         else
457                                 ipo->offset = offset;
458                         ipo_bytes_align(td->o.replay_align, ipo);
459
460                         ipo->len = bytes;
461                         if (rw != DDIR_INVAL && bytes > td->o.max_bs[rw])
462                                 td->o.max_bs[rw] = bytes;
463                         ipo->fileno = fileno;
464                         ipo->file_action = file_action;
465                         td->o.size += bytes;
466                 }
467
468                 queue_io_piece(td, ipo);
469         }
470
471         free(str);
472         free(act);
473         free(rfname);
474
475         if (writes && read_only) {
476                 log_err("fio: <%s> skips replay of %d writes due to"
477                         " read-only\n", td->o.name, writes);
478                 writes = 0;
479         }
480
481         if (!reads && !writes && !waits)
482                 return 1;
483         else if (reads && !writes)
484                 td->o.td_ddir = TD_DDIR_READ;
485         else if (!reads && writes)
486                 td->o.td_ddir = TD_DDIR_WRITE;
487         else
488                 td->o.td_ddir = TD_DDIR_RW;
489
490         return 0;
491 }
492
493 /*
494  * open iolog, check version, and call appropriate parser
495  */
496 static int init_iolog_read(struct thread_data *td)
497 {
498         char buffer[256], *p;
499         FILE *f;
500         int ret;
501
502         f = fopen(td->o.read_iolog_file, "r");
503         if (!f) {
504                 perror("fopen read iolog");
505                 return 1;
506         }
507
508         p = fgets(buffer, sizeof(buffer), f);
509         if (!p) {
510                 td_verror(td, errno, "iolog read");
511                 log_err("fio: unable to read iolog\n");
512                 fclose(f);
513                 return 1;
514         }
515
516         /*
517          * version 2 of the iolog stores a specific string as the
518          * first line, check for that
519          */
520         if (!strncmp(iolog_ver2, buffer, strlen(iolog_ver2)))
521                 ret = read_iolog2(td, f);
522         else {
523                 log_err("fio: iolog version 1 is no longer supported\n");
524                 ret = 1;
525         }
526
527         fclose(f);
528         return ret;
529 }
530
531 /*
532  * Set up a log for storing io patterns.
533  */
534 static int init_iolog_write(struct thread_data *td)
535 {
536         struct fio_file *ff;
537         FILE *f;
538         unsigned int i;
539
540         f = fopen(td->o.write_iolog_file, "a");
541         if (!f) {
542                 perror("fopen write iolog");
543                 return 1;
544         }
545
546         /*
547          * That's it for writing, setup a log buffer and we're done.
548           */
549         td->iolog_f = f;
550         td->iolog_buf = malloc(8192);
551         setvbuf(f, td->iolog_buf, _IOFBF, 8192);
552
553         /*
554          * write our version line
555          */
556         if (fprintf(f, "%s\n", iolog_ver2) < 0) {
557                 perror("iolog init\n");
558                 return 1;
559         }
560
561         /*
562          * add all known files
563          */
564         for_each_file(td, ff, i)
565                 log_file(td, ff, FIO_LOG_ADD_FILE);
566
567         return 0;
568 }
569
570 int init_iolog(struct thread_data *td)
571 {
572         int ret = 0;
573
574         if (td->o.read_iolog_file) {
575                 int need_swap;
576
577                 /*
578                  * Check if it's a blktrace file and load that if possible.
579                  * Otherwise assume it's a normal log file and load that.
580                  */
581                 if (is_blktrace(td->o.read_iolog_file, &need_swap))
582                         ret = load_blktrace(td, td->o.read_iolog_file, need_swap);
583                 else
584                         ret = init_iolog_read(td);
585         } else if (td->o.write_iolog_file)
586                 ret = init_iolog_write(td);
587
588         if (ret)
589                 td_verror(td, EINVAL, "failed initializing iolog");
590
591         return ret;
592 }
593
594 void setup_log(struct io_log **log, struct log_params *p,
595                const char *filename)
596 {
597         struct io_log *l;
598         int i;
599         struct io_u_plat_entry *entry;
600         struct flist_head *list;
601
602         l = scalloc(1, sizeof(*l));
603         INIT_FLIST_HEAD(&l->io_logs);
604         l->log_type = p->log_type;
605         l->log_offset = p->log_offset;
606         l->log_gz = p->log_gz;
607         l->log_gz_store = p->log_gz_store;
608         l->avg_msec = p->avg_msec;
609         l->hist_msec = p->hist_msec;
610         l->hist_coarseness = p->hist_coarseness;
611         l->filename = strdup(filename);
612         l->td = p->td;
613
614         /* Initialize histogram lists for each r/w direction,
615          * with initial io_u_plat of all zeros:
616          */
617         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
618                 list = &l->hist_window[i].list;
619                 INIT_FLIST_HEAD(list);
620                 entry = calloc(1, sizeof(struct io_u_plat_entry));
621                 flist_add(&entry->list, list);
622         }
623
624         if (l->td && l->td->o.io_submit_mode != IO_MODE_OFFLOAD) {
625                 struct io_logs *p;
626
627                 p = calloc(1, sizeof(*l->pending));
628                 p->max_samples = DEF_LOG_ENTRIES;
629                 p->log = calloc(p->max_samples, log_entry_sz(l));
630                 l->pending = p;
631         }
632
633         if (l->log_offset)
634                 l->log_ddir_mask = LOG_OFFSET_SAMPLE_BIT;
635
636         INIT_FLIST_HEAD(&l->chunk_list);
637
638         if (l->log_gz && !p->td)
639                 l->log_gz = 0;
640         else if (l->log_gz || l->log_gz_store) {
641                 mutex_init_pshared(&l->chunk_lock);
642                 mutex_init_pshared(&l->deferred_free_lock);
643                 p->td->flags |= TD_F_COMPRESS_LOG;
644         }
645
646         *log = l;
647 }
648
649 #ifdef CONFIG_SETVBUF
650 static void *set_file_buffer(FILE *f)
651 {
652         size_t size = 1048576;
653         void *buf;
654
655         buf = malloc(size);
656         setvbuf(f, buf, _IOFBF, size);
657         return buf;
658 }
659
660 static void clear_file_buffer(void *buf)
661 {
662         free(buf);
663 }
664 #else
665 static void *set_file_buffer(FILE *f)
666 {
667         return NULL;
668 }
669
670 static void clear_file_buffer(void *buf)
671 {
672 }
673 #endif
674
675 void free_log(struct io_log *log)
676 {
677         while (!flist_empty(&log->io_logs)) {
678                 struct io_logs *cur_log;
679
680                 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
681                 flist_del_init(&cur_log->list);
682                 free(cur_log->log);
683                 sfree(cur_log);
684         }
685
686         if (log->pending) {
687                 free(log->pending->log);
688                 free(log->pending);
689                 log->pending = NULL;
690         }
691
692         free(log->pending);
693         free(log->filename);
694         sfree(log);
695 }
696
697 unsigned long hist_sum(int j, int stride, unsigned int *io_u_plat,
698                 unsigned int *io_u_plat_last)
699 {
700         unsigned long sum;
701         int k;
702
703         if (io_u_plat_last) {
704                 for (k = sum = 0; k < stride; k++)
705                         sum += io_u_plat[j + k] - io_u_plat_last[j + k];
706         } else {
707                 for (k = sum = 0; k < stride; k++)
708                         sum += io_u_plat[j + k];
709         }
710
711         return sum;
712 }
713
714 static void flush_hist_samples(FILE *f, int hist_coarseness, void *samples,
715                                uint64_t sample_size)
716 {
717         struct io_sample *s;
718         int log_offset;
719         uint64_t i, j, nr_samples;
720         struct io_u_plat_entry *entry, *entry_before;
721         unsigned int *io_u_plat;
722         unsigned int *io_u_plat_before;
723
724         int stride = 1 << hist_coarseness;
725         
726         if (!sample_size)
727                 return;
728
729         s = __get_sample(samples, 0, 0);
730         log_offset = (s->__ddir & LOG_OFFSET_SAMPLE_BIT) != 0;
731
732         nr_samples = sample_size / __log_entry_sz(log_offset);
733
734         for (i = 0; i < nr_samples; i++) {
735                 s = __get_sample(samples, log_offset, i);
736
737                 entry = s->data.plat_entry;
738                 io_u_plat = entry->io_u_plat;
739
740                 entry_before = flist_first_entry(&entry->list, struct io_u_plat_entry, list);
741                 io_u_plat_before = entry_before->io_u_plat;
742
743                 fprintf(f, "%lu, %u, %u, ", (unsigned long) s->time,
744                                                 io_sample_ddir(s), s->bs);
745                 for (j = 0; j < FIO_IO_U_PLAT_NR - stride; j += stride) {
746                         fprintf(f, "%lu, ", hist_sum(j, stride, io_u_plat,
747                                                 io_u_plat_before));
748                 }
749                 fprintf(f, "%lu\n", (unsigned long)
750                         hist_sum(FIO_IO_U_PLAT_NR - stride, stride, io_u_plat,
751                                         io_u_plat_before));
752
753                 flist_del(&entry_before->list);
754                 free(entry_before);
755         }
756 }
757
758 void flush_samples(FILE *f, void *samples, uint64_t sample_size)
759 {
760         struct io_sample *s;
761         int log_offset;
762         uint64_t i, nr_samples;
763
764         if (!sample_size)
765                 return;
766
767         s = __get_sample(samples, 0, 0);
768         log_offset = (s->__ddir & LOG_OFFSET_SAMPLE_BIT) != 0;
769
770         nr_samples = sample_size / __log_entry_sz(log_offset);
771
772         for (i = 0; i < nr_samples; i++) {
773                 s = __get_sample(samples, log_offset, i);
774
775                 if (!log_offset) {
776                         fprintf(f, "%lu, %" PRId64 ", %u, %u\n",
777                                         (unsigned long) s->time,
778                                         s->data.val,
779                                         io_sample_ddir(s), s->bs);
780                 } else {
781                         struct io_sample_offset *so = (void *) s;
782
783                         fprintf(f, "%lu, %" PRId64 ", %u, %u, %llu\n",
784                                         (unsigned long) s->time,
785                                         s->data.val,
786                                         io_sample_ddir(s), s->bs,
787                                         (unsigned long long) so->offset);
788                 }
789         }
790 }
791
792 #ifdef CONFIG_ZLIB
793
794 struct iolog_flush_data {
795         struct workqueue_work work;
796         struct io_log *log;
797         void *samples;
798         uint32_t nr_samples;
799         bool free;
800 };
801
802 #define GZ_CHUNK        131072
803
804 static struct iolog_compress *get_new_chunk(unsigned int seq)
805 {
806         struct iolog_compress *c;
807
808         c = malloc(sizeof(*c));
809         INIT_FLIST_HEAD(&c->list);
810         c->buf = malloc(GZ_CHUNK);
811         c->len = 0;
812         c->seq = seq;
813         return c;
814 }
815
816 static void free_chunk(struct iolog_compress *ic)
817 {
818         free(ic->buf);
819         free(ic);
820 }
821
822 static int z_stream_init(z_stream *stream, int gz_hdr)
823 {
824         int wbits = 15;
825
826         memset(stream, 0, sizeof(*stream));
827         stream->zalloc = Z_NULL;
828         stream->zfree = Z_NULL;
829         stream->opaque = Z_NULL;
830         stream->next_in = Z_NULL;
831
832         /*
833          * zlib magic - add 32 for auto-detection of gz header or not,
834          * if we decide to store files in a gzip friendly format.
835          */
836         if (gz_hdr)
837                 wbits += 32;
838
839         if (inflateInit2(stream, wbits) != Z_OK)
840                 return 1;
841
842         return 0;
843 }
844
845 struct inflate_chunk_iter {
846         unsigned int seq;
847         int err;
848         void *buf;
849         size_t buf_size;
850         size_t buf_used;
851         size_t chunk_sz;
852 };
853
854 static void finish_chunk(z_stream *stream, FILE *f,
855                          struct inflate_chunk_iter *iter)
856 {
857         int ret;
858
859         ret = inflateEnd(stream);
860         if (ret != Z_OK)
861                 log_err("fio: failed to end log inflation seq %d (%d)\n",
862                                 iter->seq, ret);
863
864         flush_samples(f, iter->buf, iter->buf_used);
865         free(iter->buf);
866         iter->buf = NULL;
867         iter->buf_size = iter->buf_used = 0;
868 }
869
870 /*
871  * Iterative chunk inflation. Handles cases where we cross into a new
872  * sequence, doing flush finish of previous chunk if needed.
873  */
874 static size_t inflate_chunk(struct iolog_compress *ic, int gz_hdr, FILE *f,
875                             z_stream *stream, struct inflate_chunk_iter *iter)
876 {
877         size_t ret;
878
879         dprint(FD_COMPRESS, "inflate chunk size=%lu, seq=%u\n",
880                                 (unsigned long) ic->len, ic->seq);
881
882         if (ic->seq != iter->seq) {
883                 if (iter->seq)
884                         finish_chunk(stream, f, iter);
885
886                 z_stream_init(stream, gz_hdr);
887                 iter->seq = ic->seq;
888         }
889
890         stream->avail_in = ic->len;
891         stream->next_in = ic->buf;
892
893         if (!iter->buf_size) {
894                 iter->buf_size = iter->chunk_sz;
895                 iter->buf = malloc(iter->buf_size);
896         }
897
898         while (stream->avail_in) {
899                 size_t this_out = iter->buf_size - iter->buf_used;
900                 int err;
901
902                 stream->avail_out = this_out;
903                 stream->next_out = iter->buf + iter->buf_used;
904
905                 err = inflate(stream, Z_NO_FLUSH);
906                 if (err < 0) {
907                         log_err("fio: failed inflating log: %d\n", err);
908                         iter->err = err;
909                         break;
910                 }
911
912                 iter->buf_used += this_out - stream->avail_out;
913
914                 if (!stream->avail_out) {
915                         iter->buf_size += iter->chunk_sz;
916                         iter->buf = realloc(iter->buf, iter->buf_size);
917                         continue;
918                 }
919
920                 if (err == Z_STREAM_END)
921                         break;
922         }
923
924         ret = (void *) stream->next_in - ic->buf;
925
926         dprint(FD_COMPRESS, "inflated to size=%lu\n", (unsigned long) iter->buf_size);
927
928         return ret;
929 }
930
931 /*
932  * Inflate stored compressed chunks, or write them directly to the log
933  * file if so instructed.
934  */
935 static int inflate_gz_chunks(struct io_log *log, FILE *f)
936 {
937         struct inflate_chunk_iter iter = { .chunk_sz = log->log_gz, };
938         z_stream stream;
939
940         while (!flist_empty(&log->chunk_list)) {
941                 struct iolog_compress *ic;
942
943                 ic = flist_first_entry(&log->chunk_list, struct iolog_compress, list);
944                 flist_del(&ic->list);
945
946                 if (log->log_gz_store) {
947                         size_t ret;
948
949                         dprint(FD_COMPRESS, "log write chunk size=%lu, "
950                                 "seq=%u\n", (unsigned long) ic->len, ic->seq);
951
952                         ret = fwrite(ic->buf, ic->len, 1, f);
953                         if (ret != 1 || ferror(f)) {
954                                 iter.err = errno;
955                                 log_err("fio: error writing compressed log\n");
956                         }
957                 } else
958                         inflate_chunk(ic, log->log_gz_store, f, &stream, &iter);
959
960                 free_chunk(ic);
961         }
962
963         if (iter.seq) {
964                 finish_chunk(&stream, f, &iter);
965                 free(iter.buf);
966         }
967
968         return iter.err;
969 }
970
971 /*
972  * Open compressed log file and decompress the stored chunks and
973  * write them to stdout. The chunks are stored sequentially in the
974  * file, so we iterate over them and do them one-by-one.
975  */
976 int iolog_file_inflate(const char *file)
977 {
978         struct inflate_chunk_iter iter = { .chunk_sz = 64 * 1024 * 1024, };
979         struct iolog_compress ic;
980         z_stream stream;
981         struct stat sb;
982         ssize_t ret;
983         size_t total;
984         void *buf;
985         FILE *f;
986
987         f = fopen(file, "r");
988         if (!f) {
989                 perror("fopen");
990                 return 1;
991         }
992
993         if (stat(file, &sb) < 0) {
994                 fclose(f);
995                 perror("stat");
996                 return 1;
997         }
998
999         ic.buf = buf = malloc(sb.st_size);
1000         ic.len = sb.st_size;
1001         ic.seq = 1;
1002
1003         ret = fread(ic.buf, ic.len, 1, f);
1004         if (ret < 0) {
1005                 perror("fread");
1006                 fclose(f);
1007                 free(buf);
1008                 return 1;
1009         } else if (ret != 1) {
1010                 log_err("fio: short read on reading log\n");
1011                 fclose(f);
1012                 free(buf);
1013                 return 1;
1014         }
1015
1016         fclose(f);
1017
1018         /*
1019          * Each chunk will return Z_STREAM_END. We don't know how many
1020          * chunks are in the file, so we just keep looping and incrementing
1021          * the sequence number until we have consumed the whole compressed
1022          * file.
1023          */
1024         total = ic.len;
1025         do {
1026                 size_t iret;
1027
1028                 iret = inflate_chunk(&ic,  1, stdout, &stream, &iter);
1029                 total -= iret;
1030                 if (!total)
1031                         break;
1032                 if (iter.err)
1033                         break;
1034
1035                 ic.seq++;
1036                 ic.len -= iret;
1037                 ic.buf += iret;
1038         } while (1);
1039
1040         if (iter.seq) {
1041                 finish_chunk(&stream, stdout, &iter);
1042                 free(iter.buf);
1043         }
1044
1045         free(buf);
1046         return iter.err;
1047 }
1048
1049 #else
1050
1051 static int inflate_gz_chunks(struct io_log *log, FILE *f)
1052 {
1053         return 0;
1054 }
1055
1056 int iolog_file_inflate(const char *file)
1057 {
1058         log_err("fio: log inflation not possible without zlib\n");
1059         return 1;
1060 }
1061
1062 #endif
1063
1064 void flush_log(struct io_log *log, bool do_append)
1065 {
1066         void *buf;
1067         FILE *f;
1068
1069         if (!do_append)
1070                 f = fopen(log->filename, "w");
1071         else
1072                 f = fopen(log->filename, "a");
1073         if (!f) {
1074                 perror("fopen log");
1075                 return;
1076         }
1077
1078         buf = set_file_buffer(f);
1079
1080         inflate_gz_chunks(log, f);
1081
1082         while (!flist_empty(&log->io_logs)) {
1083                 struct io_logs *cur_log;
1084
1085                 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1086                 flist_del_init(&cur_log->list);
1087                 
1088                 if (log->td && log == log->td->clat_hist_log)
1089                         flush_hist_samples(f, log->hist_coarseness, cur_log->log,
1090                                            log_sample_sz(log, cur_log));
1091                 else
1092                         flush_samples(f, cur_log->log, log_sample_sz(log, cur_log));
1093                 
1094                 sfree(cur_log);
1095         }
1096
1097         fclose(f);
1098         clear_file_buffer(buf);
1099 }
1100
1101 static int finish_log(struct thread_data *td, struct io_log *log, int trylock)
1102 {
1103         if (td->flags & TD_F_COMPRESS_LOG)
1104                 iolog_flush(log);
1105
1106         if (trylock) {
1107                 if (fio_trylock_file(log->filename))
1108                         return 1;
1109         } else
1110                 fio_lock_file(log->filename);
1111
1112         if (td->client_type == FIO_CLIENT_TYPE_GUI || is_backend)
1113                 fio_send_iolog(td, log, log->filename);
1114         else
1115                 flush_log(log, !td->o.per_job_logs);
1116
1117         fio_unlock_file(log->filename);
1118         free_log(log);
1119         return 0;
1120 }
1121
1122 size_t log_chunk_sizes(struct io_log *log)
1123 {
1124         struct flist_head *entry;
1125         size_t ret;
1126
1127         if (flist_empty(&log->chunk_list))
1128                 return 0;
1129
1130         ret = 0;
1131         pthread_mutex_lock(&log->chunk_lock);
1132         flist_for_each(entry, &log->chunk_list) {
1133                 struct iolog_compress *c;
1134
1135                 c = flist_entry(entry, struct iolog_compress, list);
1136                 ret += c->len;
1137         }
1138         pthread_mutex_unlock(&log->chunk_lock);
1139         return ret;
1140 }
1141
1142 #ifdef CONFIG_ZLIB
1143
1144 static bool warned_on_drop;
1145
1146 static void iolog_put_deferred(struct io_log *log, void *ptr)
1147 {
1148         if (!ptr)
1149                 return;
1150
1151         pthread_mutex_lock(&log->deferred_free_lock);
1152         if (log->deferred < IOLOG_MAX_DEFER) {
1153                 log->deferred_items[log->deferred] = ptr;
1154                 log->deferred++;
1155         } else if (!warned_on_drop) {
1156                 log_err("fio: had to drop log entry free\n");
1157                 warned_on_drop = true;
1158         }
1159         pthread_mutex_unlock(&log->deferred_free_lock);
1160 }
1161
1162 static void iolog_free_deferred(struct io_log *log)
1163 {
1164         int i;
1165
1166         if (!log->deferred)
1167                 return;
1168
1169         pthread_mutex_lock(&log->deferred_free_lock);
1170
1171         for (i = 0; i < log->deferred; i++) {
1172                 free(log->deferred_items[i]);
1173                 log->deferred_items[i] = NULL;
1174         }
1175
1176         log->deferred = 0;
1177         pthread_mutex_unlock(&log->deferred_free_lock);
1178 }
1179
1180 static int gz_work(struct iolog_flush_data *data)
1181 {
1182         struct iolog_compress *c = NULL;
1183         struct flist_head list;
1184         unsigned int seq;
1185         z_stream stream;
1186         size_t total = 0;
1187         int ret;
1188
1189         INIT_FLIST_HEAD(&list);
1190
1191         memset(&stream, 0, sizeof(stream));
1192         stream.zalloc = Z_NULL;
1193         stream.zfree = Z_NULL;
1194         stream.opaque = Z_NULL;
1195
1196         ret = deflateInit(&stream, Z_DEFAULT_COMPRESSION);
1197         if (ret != Z_OK) {
1198                 log_err("fio: failed to init gz stream\n");
1199                 goto err;
1200         }
1201
1202         seq = ++data->log->chunk_seq;
1203
1204         stream.next_in = (void *) data->samples;
1205         stream.avail_in = data->nr_samples * log_entry_sz(data->log);
1206
1207         dprint(FD_COMPRESS, "deflate input size=%lu, seq=%u, log=%s\n",
1208                                 (unsigned long) stream.avail_in, seq,
1209                                 data->log->filename);
1210         do {
1211                 if (c)
1212                         dprint(FD_COMPRESS, "seq=%d, chunk=%lu\n", seq,
1213                                 (unsigned long) c->len);
1214                 c = get_new_chunk(seq);
1215                 stream.avail_out = GZ_CHUNK;
1216                 stream.next_out = c->buf;
1217                 ret = deflate(&stream, Z_NO_FLUSH);
1218                 if (ret < 0) {
1219                         log_err("fio: deflate log (%d)\n", ret);
1220                         free_chunk(c);
1221                         goto err;
1222                 }
1223
1224                 c->len = GZ_CHUNK - stream.avail_out;
1225                 flist_add_tail(&c->list, &list);
1226                 total += c->len;
1227         } while (stream.avail_in);
1228
1229         stream.next_out = c->buf + c->len;
1230         stream.avail_out = GZ_CHUNK - c->len;
1231
1232         ret = deflate(&stream, Z_FINISH);
1233         if (ret < 0) {
1234                 /*
1235                  * Z_BUF_ERROR is special, it just means we need more
1236                  * output space. We'll handle that below. Treat any other
1237                  * error as fatal.
1238                  */
1239                 if (ret != Z_BUF_ERROR) {
1240                         log_err("fio: deflate log (%d)\n", ret);
1241                         flist_del(&c->list);
1242                         free_chunk(c);
1243                         goto err;
1244                 }
1245         }
1246
1247         total -= c->len;
1248         c->len = GZ_CHUNK - stream.avail_out;
1249         total += c->len;
1250         dprint(FD_COMPRESS, "seq=%d, chunk=%lu\n", seq, (unsigned long) c->len);
1251
1252         if (ret != Z_STREAM_END) {
1253                 do {
1254                         c = get_new_chunk(seq);
1255                         stream.avail_out = GZ_CHUNK;
1256                         stream.next_out = c->buf;
1257                         ret = deflate(&stream, Z_FINISH);
1258                         c->len = GZ_CHUNK - stream.avail_out;
1259                         total += c->len;
1260                         flist_add_tail(&c->list, &list);
1261                         dprint(FD_COMPRESS, "seq=%d, chunk=%lu\n", seq,
1262                                 (unsigned long) c->len);
1263                 } while (ret != Z_STREAM_END);
1264         }
1265
1266         dprint(FD_COMPRESS, "deflated to size=%lu\n", (unsigned long) total);
1267
1268         ret = deflateEnd(&stream);
1269         if (ret != Z_OK)
1270                 log_err("fio: deflateEnd %d\n", ret);
1271
1272         iolog_put_deferred(data->log, data->samples);
1273
1274         if (!flist_empty(&list)) {
1275                 pthread_mutex_lock(&data->log->chunk_lock);
1276                 flist_splice_tail(&list, &data->log->chunk_list);
1277                 pthread_mutex_unlock(&data->log->chunk_lock);
1278         }
1279
1280         ret = 0;
1281 done:
1282         if (data->free)
1283                 sfree(data);
1284         return ret;
1285 err:
1286         while (!flist_empty(&list)) {
1287                 c = flist_first_entry(list.next, struct iolog_compress, list);
1288                 flist_del(&c->list);
1289                 free_chunk(c);
1290         }
1291         ret = 1;
1292         goto done;
1293 }
1294
1295 /*
1296  * Invoked from our compress helper thread, when logging would have exceeded
1297  * the specified memory limitation. Compresses the previously stored
1298  * entries.
1299  */
1300 static int gz_work_async(struct submit_worker *sw, struct workqueue_work *work)
1301 {
1302         return gz_work(container_of(work, struct iolog_flush_data, work));
1303 }
1304
1305 static int gz_init_worker(struct submit_worker *sw)
1306 {
1307         struct thread_data *td = sw->wq->td;
1308
1309         if (!fio_option_is_set(&td->o, log_gz_cpumask))
1310                 return 0;
1311
1312         if (fio_setaffinity(gettid(), td->o.log_gz_cpumask) == -1) {
1313                 log_err("gz: failed to set CPU affinity\n");
1314                 return 1;
1315         }
1316
1317         return 0;
1318 }
1319
1320 static struct workqueue_ops log_compress_wq_ops = {
1321         .fn             = gz_work_async,
1322         .init_worker_fn = gz_init_worker,
1323         .nice           = 1,
1324 };
1325
1326 int iolog_compress_init(struct thread_data *td, struct sk_out *sk_out)
1327 {
1328         if (!(td->flags & TD_F_COMPRESS_LOG))
1329                 return 0;
1330
1331         workqueue_init(td, &td->log_compress_wq, &log_compress_wq_ops, 1, sk_out);
1332         return 0;
1333 }
1334
1335 void iolog_compress_exit(struct thread_data *td)
1336 {
1337         if (!(td->flags & TD_F_COMPRESS_LOG))
1338                 return;
1339
1340         workqueue_exit(&td->log_compress_wq);
1341 }
1342
1343 /*
1344  * Queue work item to compress the existing log entries. We reset the
1345  * current log to a small size, and reference the existing log in the
1346  * data that we queue for compression. Once compression has been done,
1347  * this old log is freed. If called with finish == true, will not return
1348  * until the log compression has completed, and will flush all previous
1349  * logs too
1350  */
1351 static int iolog_flush(struct io_log *log)
1352 {
1353         struct iolog_flush_data *data;
1354
1355         data = malloc(sizeof(*data));
1356         if (!data)
1357                 return 1;
1358
1359         data->log = log;
1360         data->free = false;
1361
1362         while (!flist_empty(&log->io_logs)) {
1363                 struct io_logs *cur_log;
1364
1365                 cur_log = flist_first_entry(&log->io_logs, struct io_logs, list);
1366                 flist_del_init(&cur_log->list);
1367
1368                 data->samples = cur_log->log;
1369                 data->nr_samples = cur_log->nr_samples;
1370
1371                 sfree(cur_log);
1372
1373                 gz_work(data);
1374         }
1375
1376         free(data);
1377         return 0;
1378 }
1379
1380 int iolog_cur_flush(struct io_log *log, struct io_logs *cur_log)
1381 {
1382         struct iolog_flush_data *data;
1383
1384         data = smalloc(sizeof(*data));
1385         if (!data)
1386                 return 1;
1387
1388         data->log = log;
1389
1390         data->samples = cur_log->log;
1391         data->nr_samples = cur_log->nr_samples;
1392         data->free = true;
1393
1394         cur_log->nr_samples = cur_log->max_samples = 0;
1395         cur_log->log = NULL;
1396
1397         workqueue_enqueue(&log->td->log_compress_wq, &data->work);
1398
1399         iolog_free_deferred(log);
1400
1401         return 0;
1402 }
1403 #else
1404
1405 static int iolog_flush(struct io_log *log)
1406 {
1407         return 1;
1408 }
1409
1410 int iolog_cur_flush(struct io_log *log, struct io_logs *cur_log)
1411 {
1412         return 1;
1413 }
1414
1415 int iolog_compress_init(struct thread_data *td, struct sk_out *sk_out)
1416 {
1417         return 0;
1418 }
1419
1420 void iolog_compress_exit(struct thread_data *td)
1421 {
1422 }
1423
1424 #endif
1425
1426 struct io_logs *iolog_cur_log(struct io_log *log)
1427 {
1428         if (flist_empty(&log->io_logs))
1429                 return NULL;
1430
1431         return flist_last_entry(&log->io_logs, struct io_logs, list);
1432 }
1433
1434 uint64_t iolog_nr_samples(struct io_log *iolog)
1435 {
1436         struct flist_head *entry;
1437         uint64_t ret = 0;
1438
1439         flist_for_each(entry, &iolog->io_logs) {
1440                 struct io_logs *cur_log;
1441
1442                 cur_log = flist_entry(entry, struct io_logs, list);
1443                 ret += cur_log->nr_samples;
1444         }
1445
1446         return ret;
1447 }
1448
1449 static int __write_log(struct thread_data *td, struct io_log *log, int try)
1450 {
1451         if (log)
1452                 return finish_log(td, log, try);
1453
1454         return 0;
1455 }
1456
1457 static int write_iops_log(struct thread_data *td, int try, bool unit_log)
1458 {
1459         int ret;
1460
1461         if (per_unit_log(td->iops_log) != unit_log)
1462                 return 0;
1463
1464         ret = __write_log(td, td->iops_log, try);
1465         if (!ret)
1466                 td->iops_log = NULL;
1467
1468         return ret;
1469 }
1470
1471 static int write_slat_log(struct thread_data *td, int try, bool unit_log)
1472 {
1473         int ret;
1474
1475         if (!unit_log)
1476                 return 0;
1477
1478         ret = __write_log(td, td->slat_log, try);
1479         if (!ret)
1480                 td->slat_log = NULL;
1481
1482         return ret;
1483 }
1484
1485 static int write_clat_log(struct thread_data *td, int try, bool unit_log)
1486 {
1487         int ret;
1488
1489         if (!unit_log)
1490                 return 0;
1491
1492         ret = __write_log(td, td->clat_log, try);
1493         if (!ret)
1494                 td->clat_log = NULL;
1495
1496         return ret;
1497 }
1498
1499 static int write_clat_hist_log(struct thread_data *td, int try, bool unit_log)
1500 {
1501         int ret;
1502
1503         if (!unit_log)
1504                 return 0;
1505
1506         ret = __write_log(td, td->clat_hist_log, try);
1507         if (!ret)
1508                 td->clat_hist_log = NULL;
1509
1510         return ret;
1511 }
1512
1513 static int write_lat_log(struct thread_data *td, int try, bool unit_log)
1514 {
1515         int ret;
1516
1517         if (!unit_log)
1518                 return 0;
1519
1520         ret = __write_log(td, td->lat_log, try);
1521         if (!ret)
1522                 td->lat_log = NULL;
1523
1524         return ret;
1525 }
1526
1527 static int write_bandw_log(struct thread_data *td, int try, bool unit_log)
1528 {
1529         int ret;
1530
1531         if (per_unit_log(td->bw_log) != unit_log)
1532                 return 0;
1533
1534         ret = __write_log(td, td->bw_log, try);
1535         if (!ret)
1536                 td->bw_log = NULL;
1537
1538         return ret;
1539 }
1540
1541 enum {
1542         BW_LOG_MASK     = 1,
1543         LAT_LOG_MASK    = 2,
1544         SLAT_LOG_MASK   = 4,
1545         CLAT_LOG_MASK   = 8,
1546         IOPS_LOG_MASK   = 16,
1547         CLAT_HIST_LOG_MASK = 32,
1548
1549         ALL_LOG_NR      = 6,
1550 };
1551
1552 struct log_type {
1553         unsigned int mask;
1554         int (*fn)(struct thread_data *, int, bool);
1555 };
1556
1557 static struct log_type log_types[] = {
1558         {
1559                 .mask   = BW_LOG_MASK,
1560                 .fn     = write_bandw_log,
1561         },
1562         {
1563                 .mask   = LAT_LOG_MASK,
1564                 .fn     = write_lat_log,
1565         },
1566         {
1567                 .mask   = SLAT_LOG_MASK,
1568                 .fn     = write_slat_log,
1569         },
1570         {
1571                 .mask   = CLAT_LOG_MASK,
1572                 .fn     = write_clat_log,
1573         },
1574         {
1575                 .mask   = IOPS_LOG_MASK,
1576                 .fn     = write_iops_log,
1577         },
1578         {
1579                 .mask   = CLAT_HIST_LOG_MASK,
1580                 .fn     = write_clat_hist_log,
1581         }
1582 };
1583
1584 void td_writeout_logs(struct thread_data *td, bool unit_logs)
1585 {
1586         unsigned int log_mask = 0;
1587         unsigned int log_left = ALL_LOG_NR;
1588         int old_state, i;
1589
1590         old_state = td_bump_runstate(td, TD_FINISHING);
1591
1592         finalize_logs(td, unit_logs);
1593
1594         while (log_left) {
1595                 int prev_log_left = log_left;
1596
1597                 for (i = 0; i < ALL_LOG_NR && log_left; i++) {
1598                         struct log_type *lt = &log_types[i];
1599                         int ret;
1600
1601                         if (!(log_mask & lt->mask)) {
1602                                 ret = lt->fn(td, log_left != 1, unit_logs);
1603                                 if (!ret) {
1604                                         log_left--;
1605                                         log_mask |= lt->mask;
1606                                 }
1607                         }
1608                 }
1609
1610                 if (prev_log_left == log_left)
1611                         usleep(5000);
1612         }
1613
1614         td_restore_runstate(td, old_state);
1615 }
1616
1617 void fio_writeout_logs(bool unit_logs)
1618 {
1619         struct thread_data *td;
1620         int i;
1621
1622         for_each_td(td, i)
1623                 td_writeout_logs(td, unit_logs);
1624 }