X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=iolog.c;h=8a216b2572fe44d20d673a26a6a9dbac2effaf6f;hp=3723e0a86025afe460c11a7585e14a365f37022b;hb=43072e8e8b1bf08aad7a138761a563f92ab99fb3;hpb=1fed2080296157e919515b0d5d52d6c1c0b34547 diff --git a/iolog.c b/iolog.c index 3723e0a8..8a216b25 100644 --- a/iolog.c +++ b/iolog.c @@ -584,6 +584,8 @@ void setup_log(struct io_log **log, struct log_params *p, l->log_gz = p->log_gz; l->log_gz_store = p->log_gz_store; l->avg_msec = p->avg_msec; + l->hist_msec = p->hist_msec; + l->hist_coarseness = p->hist_coarseness; l->filename = strdup(filename); l->td = p->td; @@ -591,7 +593,7 @@ void setup_log(struct io_log **log, struct log_params *p, struct io_logs *p; p = calloc(1, sizeof(*l->pending)); - p->max_samples = l->td->o.iodepth; + p->max_samples = DEF_LOG_ENTRIES; p->log = calloc(p->max_samples, log_entry_sz(l)); l->pending = p; } @@ -604,7 +606,7 @@ void setup_log(struct io_log **log, struct log_params *p, if (l->log_gz && !p->td) l->log_gz = 0; else if (l->log_gz || l->log_gz_store) { - pthread_mutex_init(&l->chunk_lock, NULL); + mutex_init_pshared(&l->chunk_lock); p->td->flags |= TD_F_COMPRESS_LOG; } @@ -645,6 +647,7 @@ void free_log(struct io_log *log) cur_log = flist_first_entry(&log->io_logs, struct io_logs, list); flist_del_init(&cur_log->list); free(cur_log->log); + sfree(cur_log); } if (log->pending) { @@ -658,6 +661,49 @@ void free_log(struct io_log *log) sfree(log); } +static inline unsigned long hist_sum(int j, int stride, unsigned int *io_u_plat) +{ + unsigned long sum; + int k; + + for (k = sum = 0; k < stride; k++) + sum += io_u_plat[j + k]; + + return sum; +} + +void flush_hist_samples(FILE *f, int hist_coarseness, void *samples, + uint64_t sample_size) +{ + struct io_sample *s; + int log_offset; + uint64_t i, j, nr_samples; + unsigned int *io_u_plat; + + int stride = 1 << hist_coarseness; + + if (!sample_size) + return; + + s = __get_sample(samples, 0, 0); + log_offset = (s->__ddir & LOG_OFFSET_SAMPLE_BIT) != 0; + + nr_samples = sample_size / __log_entry_sz(log_offset); + + for (i = 0; i < nr_samples; i++) { + s = __get_sample(samples, log_offset, i); + io_u_plat = (unsigned int *) s->val; + fprintf(f, "%lu, %u, %u, ", (unsigned long)s->time, + io_sample_ddir(s), s->bs); + for (j = 0; j < FIO_IO_U_PLAT_NR - stride; j += stride) { + fprintf(f, "%lu, ", hist_sum(j, stride, io_u_plat)); + } + fprintf(f, "%lu\n", (unsigned long) + hist_sum(FIO_IO_U_PLAT_NR - stride, stride, io_u_plat)); + free(io_u_plat); + } +} + void flush_samples(FILE *f, void *samples, uint64_t sample_size) { struct io_sample *s; @@ -964,7 +1010,7 @@ int iolog_file_inflate(const char *file) #endif -void flush_log(struct io_log *log, int do_append) +void flush_log(struct io_log *log, bool do_append) { void *buf; FILE *f; @@ -987,7 +1033,14 @@ void flush_log(struct io_log *log, int do_append) cur_log = flist_first_entry(&log->io_logs, struct io_logs, list); flist_del_init(&cur_log->list); - flush_samples(f, cur_log->log, cur_log->nr_samples * log_entry_sz(log)); + + if (log == log->td->clat_hist_log) + flush_hist_samples(f, log->hist_coarseness, cur_log->log, + cur_log->nr_samples * log_entry_sz(log)); + else + flush_samples(f, cur_log->log, cur_log->nr_samples * log_entry_sz(log)); + + sfree(cur_log); } fclose(f); @@ -1226,9 +1279,7 @@ static int iolog_flush(struct io_log *log) data->samples = cur_log->log; data->nr_samples = cur_log->nr_samples; - cur_log->nr_samples = 0; - cur_log->max_samples = 0; - cur_log->log = NULL; + sfree(cur_log); gz_work(data); } @@ -1353,6 +1404,20 @@ static int write_clat_log(struct thread_data *td, int try, bool unit_log) return ret; } +static int write_clat_hist_log(struct thread_data *td, int try, bool unit_log) +{ + int ret; + + if (!unit_log) + return 0; + + ret = __write_log(td, td->clat_hist_log, try); + if (!ret) + td->clat_hist_log = NULL; + + return ret; +} + static int write_lat_log(struct thread_data *td, int try, bool unit_log) { int ret; @@ -1387,8 +1452,9 @@ enum { SLAT_LOG_MASK = 4, CLAT_LOG_MASK = 8, IOPS_LOG_MASK = 16, + CLAT_HIST_LOG_MASK = 32, - ALL_LOG_NR = 5, + ALL_LOG_NR = 6, }; struct log_type { @@ -1417,6 +1483,10 @@ static struct log_type log_types[] = { .mask = IOPS_LOG_MASK, .fn = write_iops_log, }, + { + .mask = CLAT_HIST_LOG_MASK, + .fn = write_clat_hist_log, + } }; void td_writeout_logs(struct thread_data *td, bool unit_logs)