to_kmg() -> fio_uint_to_kmg()
authorJens Axboe <axboe@kernel.dk>
Thu, 11 Apr 2013 10:26:55 +0000 (12:26 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 11 Apr 2013 10:26:55 +0000 (12:26 +0200)
It's being exported.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
fio.h
init.c

diff --git a/fio.h b/fio.h
index 67d13c261f98cd1a55854ba212f26777ce58756d..504d7d1c415db0937c440f18a9874b8244c096be 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -457,6 +457,7 @@ extern int initialize_fio(char *envp[]);
  */
 extern void print_thread_status(void);
 extern void print_status_init(int);
+extern char *fio_uint_to_kmg(unsigned int val);
 
 /*
  * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
diff --git a/init.c b/init.c
index 90521e5f36dbce8c53eeb37b74840f39ad42864a..7563f268eafd525f6336af8458591ebc510a12eb 100644 (file)
--- a/init.c
+++ b/init.c
@@ -613,7 +613,7 @@ static int fixup_options(struct thread_data *td)
 /*
  * This function leaks the buffer
  */
-static char *to_kmg(unsigned int val)
+char *fio_uint_to_kmg(unsigned int val)
 {
        char *buf = malloc(32);
        char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
@@ -1005,12 +1005,12 @@ static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
                        } else {
                                char *c1, *c2, *c3, *c4, *c5, *c6;
 
-                               c1 = to_kmg(o->min_bs[DDIR_READ]);
-                               c2 = to_kmg(o->max_bs[DDIR_READ]);
-                               c3 = to_kmg(o->min_bs[DDIR_WRITE]);
-                               c4 = to_kmg(o->max_bs[DDIR_WRITE]);
-                               c5 = to_kmg(o->min_bs[DDIR_TRIM]);
-                               c6 = to_kmg(o->max_bs[DDIR_TRIM]);
+                               c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
+                               c2 = fio_uint_to_kmg(o->max_bs[DDIR_READ]);
+                               c3 = fio_uint_to_kmg(o->min_bs[DDIR_WRITE]);
+                               c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
+                               c5 = fio_uint_to_kmg(o->min_bs[DDIR_TRIM]);
+                               c6 = fio_uint_to_kmg(o->max_bs[DDIR_TRIM]);
 
                                log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s/%s-%s,"
                                         " ioengine=%s, iodepth=%u\n",