X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=log.c;h=17a4cdf782c9b02c7c897454abcae6bf66dec34e;hp=00e3913bd8a8b212f92233ceb3ff501201266a26;hb=71bfa161f13b6fca98ba215ebebbcb5c99003d24;hpb=53cdc6864f7471b28cc9b40a5314ab43e5b1cb5e diff --git a/log.c b/log.c index 00e3913b..17a4cdf7 100644 --- a/log.c +++ b/log.c @@ -82,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->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; @@ -144,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; @@ -163,6 +146,40 @@ 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 = fopen(td->iolog_file, "w"); + + f = fopen(td->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->read_iolog) + ret = init_iolog_read(td); + else if (td->write_iolog) + ret = init_iolog_write(td); + + return 0; +} + int setup_rate(struct thread_data *td) { int nr_reads_per_sec;