Make profile io op overrides a dedicated structure
authorJens Axboe <jens.axboe@oracle.com>
Mon, 8 Mar 2010 12:58:49 +0000 (13:58 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Mon, 8 Mar 2010 12:58:49 +0000 (13:58 +0100)
Also add a 'get_next_file' hook while at it.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
fio.h
io_u.c
parse.c
profile.c
profile.h

diff --git a/fio.h b/fio.h
index 751fc3d18ecc8d59c1de03fac09501de6c8c53ef..09cd01cdcf6a17fccc627ec1261eb048e5c6ab68 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -30,6 +30,7 @@
 #include "iolog.h"
 #include "helpers.h"
 #include "options.h"
+#include "profile.h"
 
 #ifdef FIO_HAVE_GUASI
 #include <guasi.h>
@@ -430,8 +431,7 @@ struct thread_data {
        /*
         * Can be overloaded by profiles
         */
-       int (*fill_io_u_off)(struct thread_data *, struct io_u *);
-       int (*fill_io_u_size)(struct thread_data *, struct io_u *);
+       struct prof_io_ops prof_io_ops;
 };
 
 /*
diff --git a/io_u.c b/io_u.c
index 278d47a4d88baaf30e8a4c0bfeaff9a8e128dd87..9b9570eaee1fa925e3f9494c5615210a42b92b7e 100644 (file)
--- a/io_u.c
+++ b/io_u.c
@@ -233,8 +233,10 @@ static int __get_next_offset(struct thread_data *td, struct io_u *io_u)
 
 static int get_next_offset(struct thread_data *td, struct io_u *io_u)
 {
-       if (td->fill_io_u_off)
-               return td->fill_io_u_off(td, io_u);
+       struct prof_io_ops *ops = &td->prof_io_ops;
+
+       if (ops->fill_io_u_off)
+               return ops->fill_io_u_off(td, io_u);
 
        return __get_next_offset(td, io_u);
 }
@@ -286,8 +288,10 @@ static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u)
 
 static unsigned int get_next_buflen(struct thread_data *td, struct io_u *io_u)
 {
-       if (td->fill_io_u_size)
-               return td->fill_io_u_size(td, io_u);
+       struct prof_io_ops *ops = &td->prof_io_ops;
+
+       if (ops->fill_io_u_size)
+               return ops->fill_io_u_size(td, io_u);
 
        return __get_next_buflen(td, io_u);
 }
@@ -785,7 +789,7 @@ static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf,
        return f;
 }
 
-static struct fio_file *get_next_file(struct thread_data *td)
+static struct fio_file *__get_next_file(struct thread_data *td)
 {
        struct fio_file *f;
 
@@ -820,6 +824,16 @@ out:
        return f;
 }
 
+static struct fio_file *get_next_file(struct thread_data *td)
+{
+       struct prof_io_ops *ops = &td->prof_io_ops;
+
+       if (ops->get_next_file)
+               return ops->get_next_file(td);
+
+       return __get_next_file(td);
+}
+
 static int set_io_u_file(struct thread_data *td, struct io_u *io_u)
 {
        struct fio_file *f;
diff --git a/parse.c b/parse.c
index 9e3c5b17e6707ae0da22a5c8791d7d20a957a1f4..ff6a8735c7effbe49f76984e40000e4da8c8833c 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -825,6 +825,8 @@ int show_cmd_help(struct fio_option *options, const char *name)
        int found = 0;
        int show_all = 0;
 
+       printf("exec_profile=%s\n", exec_profile);
+
        if (!name || !strcmp(name, "all"))
                show_all = 1;
 
index 0e2b97d4a0933896532b4891bd650dcf63c16da0..3ed9127b9007e6a5978ef8008e90b62bd2bac59c 100644 (file)
--- a/profile.c
+++ b/profile.c
@@ -93,6 +93,6 @@ void profile_add_hooks(struct thread_data *td)
        if (!ops)
                return;
 
-       td->fill_io_u_off = ops->fill_io_u_off;
-       td->fill_io_u_size = ops->fill_io_u_size;
+       if (ops->io_ops)
+               td->prof_io_ops = *ops->io_ops;
 }
index 3bae5002c469a27782b911e83227b939f389fe9f..a54f072455928713f9b6149ca13b461ae028be67 100644 (file)
--- a/profile.h
+++ b/profile.h
@@ -3,6 +3,15 @@
 
 #include "flist.h"
 
+/*
+ * Functions for overriding internal fio io_u functions
+ */
+struct prof_io_ops {
+       int (*fill_io_u_off)(struct thread_data *, struct io_u *);
+       int (*fill_io_u_size)(struct thread_data *, struct io_u *);
+       struct fio_file *(*get_next_file)(struct thread_data *);
+};
+
 struct profile_ops {
        struct flist_head list;
        char name[32];
@@ -24,11 +33,7 @@ struct profile_ops {
         */
        const char **cmdline;
 
-       /*
-        * Functions for overriding internal fio io_u functions
-        */
-       int (*fill_io_u_off)(struct thread_data *, struct io_u *);
-       int (*fill_io_u_size)(struct thread_data *, struct io_u *);
+       struct prof_io_ops *io_ops;
 };
 
 int register_profile(struct profile_ops *);