More fio.h cleanups
authorJens Axboe <jens.axboe@oracle.com>
Wed, 3 Jun 2009 07:29:28 +0000 (09:29 +0200)
committerJens Axboe <jens.axboe@oracle.com>
Wed, 3 Jun 2009 07:29:28 +0000 (09:29 +0200)
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
file.h
filesetup.c
fio.h
ioengine.h

diff --git a/file.h b/file.h
index 2b49a6b9c7c6d9da7326f069b1c4a3b441e0d3ce..7024d5ee9d6bcb8f1a4ecb71b46f2297ea836226 100644 (file)
--- a/file.h
+++ b/file.h
@@ -140,4 +140,12 @@ extern void dup_files(struct thread_data *, struct thread_data *);
 extern int get_fileno(struct thread_data *, const char *);
 extern void free_release_files(struct thread_data *);
 
+static inline void fio_file_reset(struct fio_file *f)
+{
+       f->last_free_lookup = 0;
+       f->last_pos = f->file_offset;
+       if (f->file_map)
+               memset(f->file_map, 0, f->num_maps * sizeof(int));
+}
+
 #endif
index 7ed47a25b5846108125e1028f30fa51d9cb87425..c902bdf7237f9896cd0577605a1211469225d99a 100644 (file)
 
 static int root_warn;
 
+static inline void clear_error(struct thread_data *td)
+{
+       td->error = 0;
+       td->verror[0] = '\0';
+}
+
 /*
  * Leaves f->fd open on success, caller must close
  */
diff --git a/fio.h b/fio.h
index 9222c051651408bfcdb811883884afced52dc49a..b2e40d22ff4ef507b499b13fa546d3f340b25cf3 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -553,39 +553,6 @@ extern int load_blktrace(struct thread_data *, const char *);
        }       \
 } while (0)
 
-static inline void fio_file_reset(struct fio_file *f)
-{
-       f->last_free_lookup = 0;
-       f->last_pos = f->file_offset;
-       if (f->file_map)
-               memset(f->file_map, 0, f->num_maps * sizeof(int));
-}
-
-static inline void clear_error(struct thread_data *td)
-{
-       td->error = 0;
-       td->verror[0] = '\0';
-}
-
-#ifdef FIO_INC_DEBUG
-static inline void dprint_io_u(struct io_u *io_u, const char *p)
-{
-       struct fio_file *f = io_u->file;
-
-       dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
-                                       (unsigned long long) io_u->offset,
-                                       io_u->buflen, io_u->ddir);
-       if (fio_debug & (1 << FD_IO)) {
-               if (f)
-                       log_info("/%s", f->file_name);
-
-               log_info("\n");
-       }
-}
-#else
-#define dprint_io_u(io_u, p)
-#endif
-
 static inline int fio_fill_issue_time(struct thread_data *td)
 {
        if (td->o.read_iolog_file ||
index 2caece72c644e4e4f144715f586e73bcb6b5ffac..18496c3afc860aab452d9a1ce4dcba8344fd7b94 100644 (file)
@@ -149,4 +149,23 @@ extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int
 void io_u_mark_complete(struct thread_data *, unsigned int);
 void io_u_mark_submit(struct thread_data *, unsigned int);
 
+#ifdef FIO_INC_DEBUG
+static inline void dprint_io_u(struct io_u *io_u, const char *p)
+{
+       struct fio_file *f = io_u->file;
+
+       dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
+                                       (unsigned long long) io_u->offset,
+                                       io_u->buflen, io_u->ddir);
+       if (fio_debug & (1 << FD_IO)) {
+               if (f)
+                       log_info("/%s", f->file_name);
+
+               log_info("\n");
+       }
+}
+#else
+#define dprint_io_u(io_u, p)
+#endif
+
 #endif