[PATCH] Cleanup iolog handling
authorJens Axboe <jens.axboe@oracle.com>
Fri, 20 Oct 2006 07:15:46 +0000 (09:15 +0200)
committerJens Axboe <jens.axboe@oracle.com>
Fri, 20 Oct 2006 07:15:46 +0000 (09:15 +0200)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
log.c

diff --git a/log.c b/log.c
index 00e3913bd8a8b212f92233ceb3ff501201266a26..51eaee6ecae085e6bc71184148ba26bf8574c1e1 100644 (file)
--- a/log.c
+++ b/log.c
@@ -82,44 +82,29 @@ void write_iolog_close(struct thread_data *td)
        free(td->iolog_buf);
 }
 
        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;
 {
        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) {
        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;
        }
 
                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);
        /*
         * 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;
 
        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);
                        td->max_bs = bytes;
                ipo->ddir = rw;
                list_add_tail(&ipo->list, &td->io_log_list);
-               i++;
        }
 
        free(str);
        fclose(f);
 
        }
 
        free(str);
        fclose(f);
 
-       if (!i)
+       if (!reads && !writes)
                return 1;
                return 1;
-
-       if (reads && !writes)
+       else if (reads && !writes)
                td->ddir = DDIR_READ;
        else if (!reads && writes)
                td->ddir = DDIR_READ;
                td->ddir = DDIR_READ;
        else if (!reads && writes)
                td->ddir = DDIR_READ;
@@ -163,6 +146,38 @@ int init_iolog(struct thread_data *td)
        return 0;
 }
 
        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)
+{
+       if (td->read_iolog)
+               return init_iolog_read(td);
+       else if (td->write_iolog)
+               return init_iolog_write(td);
+
+       return 0;
+}
+
 int setup_rate(struct thread_data *td)
 {
        int nr_reads_per_sec;
 int setup_rate(struct thread_data *td)
 {
        int nr_reads_per_sec;