X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.c;h=b151164760a40042e403bfc422245fe83afdab68;hp=4c7742b28fcde79529a5b405f6c16701054430ec;hb=c7c280ed2e4f836bd8e9e125d55d097539b70e21;hpb=3b70d7e51e0b672a8b337c57c8faf865c0b7f415;ds=sidebyside diff --git a/log.c b/log.c index 4c7742b2..b1511647 100644 --- a/log.c +++ b/log.c @@ -18,6 +18,7 @@ int read_iolog_get(struct thread_data *td, struct io_u *io_u) io_u->offset = ipo->offset; io_u->buflen = ipo->len; io_u->ddir = ipo->ddir; + io_u->file = ipo->file; free(ipo); return 0; } @@ -46,6 +47,7 @@ void log_io_piece(struct thread_data *td, struct io_u *io_u) struct list_head *entry; INIT_LIST_HEAD(&ipo->list); + ipo->file = io_u->file; ipo->offset = io_u->offset; ipo->len = io_u->buflen; @@ -80,44 +82,29 @@ void write_iolog_close(struct thread_data *td) free(td->iolog_buf); } -int init_iolog(struct thread_data *td) +/* + * Open a stored log and read in the entries. + */ +static int init_iolog_read(struct thread_data *td) { unsigned long long offset; unsigned int bytes; char *str, *p; FILE *f; - int rw, i, reads, writes; - - if (!td->read_iolog && !td->write_iolog) - return 0; - - if (td->read_iolog) - f = fopen(td->iolog_file, "r"); - else - f = fopen(td->iolog_file, "w"); + int rw, reads, writes; + f = fopen(td->read_iolog_file, "r"); if (!f) { - perror("fopen iolog"); - printf("file %s, %d/%d\n", td->iolog_file, td->read_iolog, td->write_iolog); + perror("fopen read iolog"); return 1; } - /* - * That's it for writing, setup a log buffer and we're done. - */ - if (td->write_iolog) { - td->iolog_f = f; - td->iolog_buf = malloc(8192); - setvbuf(f, td->iolog_buf, _IOFBF, 8192); - return 0; - } - /* * Read in the read iolog and store it, reuse the infrastructure * for doing verifications. */ str = malloc(4096); - reads = writes = i = 0; + reads = writes = 0; while ((p = fgets(str, 4096, f)) != NULL) { struct io_piece *ipo; @@ -142,16 +129,14 @@ int init_iolog(struct thread_data *td) td->max_bs = bytes; ipo->ddir = rw; list_add_tail(&ipo->list, &td->io_log_list); - i++; } free(str); fclose(f); - if (!i) + if (!reads && !writes) return 1; - - if (reads && !writes) + else if (reads && !writes) td->ddir = DDIR_READ; else if (!reads && writes) td->ddir = DDIR_READ; @@ -161,6 +146,43 @@ int init_iolog(struct thread_data *td) return 0; } +/* + * Setup a log for storing io patterns. + */ +static int init_iolog_write(struct thread_data *td) +{ + FILE *f; + + f = fopen(td->write_iolog_file, "w+"); + if (!f) { + perror("fopen write iolog"); + return 1; + } + + /* + * That's it for writing, setup a log buffer and we're done. + */ + td->iolog_f = f; + td->iolog_buf = malloc(8192); + setvbuf(f, td->iolog_buf, _IOFBF, 8192); + return 0; +} + +int init_iolog(struct thread_data *td) +{ + int ret = 0; + + if (td->io_ops->flags & FIO_CPUIO) + return 0; + + if (td->read_iolog_file) + ret = init_iolog_read(td); + else if (td->write_iolog_file) + ret = init_iolog_write(td); + + return 0; +} + int setup_rate(struct thread_data *td) { int nr_reads_per_sec;