gfio: improve option edit
[fio.git] / profiles / tiobench.c
CommitLineData
79d16311
JA
1#include "../fio.h"
2#include "../profile.h"
e2de69da
JA
3#include "../parse.h"
4
2363d8df
JA
5static unsigned long long size;
6static unsigned int loops = 1;
7static unsigned int bs = 4096;
8static unsigned int nthreads = 1;
e2de69da 9static char *dir;
79d16311 10
2363d8df
JA
11char sz_idx[80], bs_idx[80], loop_idx[80], dir_idx[80], t_idx[80];
12
79d16311 13static const char *tb_opts[] = {
2363d8df
JA
14 "buffered=0", sz_idx, bs_idx, loop_idx, dir_idx, t_idx,
15 "timeout=600", "group_reporting", "thread", "overwrite=1",
79d16311
JA
16 "filename=.fio.tio.1:.fio.tio.2:.fio.tio.3:.fio.tio.4",
17 "name=seqwrite", "rw=write", "end_fsync=1",
18 "name=randwrite", "stonewall", "rw=randwrite", "end_fsync=1",
19 "name=seqread", "stonewall", "rw=read",
20 "name=randread", "stonewall", "rw=randread", NULL,
21};
22
e2de69da
JA
23static struct fio_option options[] = {
24 {
25 .name = "size",
e8b0e958 26 .lname = "Tiobench size",
2363d8df 27 .type = FIO_OPT_STR_VAL,
e2de69da
JA
28 .roff1 = &size,
29 .help = "Size in MB",
e8b0e958 30 .category = FIO_OPT_C_IO,
e2de69da
JA
31 },
32 {
33 .name = "block",
e8b0e958 34 .lname = "Tiobench block",
e2de69da
JA
35 .type = FIO_OPT_INT,
36 .roff1 = &bs,
37 .help = "Block size in bytes",
38 .def = "4k",
e8b0e958 39 .category = FIO_OPT_C_IO,
e2de69da
JA
40 },
41 {
42 .name = "numruns",
e8b0e958 43 .lname = "Tiobench numruns",
e2de69da
JA
44 .type = FIO_OPT_INT,
45 .roff1 = &loops,
46 .help = "Number of runs",
e8b0e958 47 .category = FIO_OPT_C_GENERAL,
e2de69da
JA
48 },
49 {
50 .name = "dir",
e8b0e958 51 .lname = "Tiobench directory",
e2de69da
JA
52 .type = FIO_OPT_STR_STORE,
53 .roff1 = &dir,
54 .help = "Test directory",
e8b0e958 55 .category = FIO_OPT_C_FILE,
e2de69da 56 },
2363d8df
JA
57 {
58 .name = "threads",
e8b0e958 59 .lname = "Tiobench threads",
2363d8df
JA
60 .type = FIO_OPT_INT,
61 .roff1 = &nthreads,
62 .help = "Number of Threads",
e8b0e958 63 .category = FIO_OPT_C_GENERAL,
2363d8df 64 },
e2de69da
JA
65 {
66 .name = NULL,
67 },
68};
69
2363d8df
JA
70/*
71 * Fill our private options into the command line
72 */
73static void tb_prep_cmdline(void)
74{
75
76 /*
77 * tiobench uses size as MB, so multiply up
78 */
79 size *= 1024 * 1024ULL;
80 if (size)
81 sprintf(sz_idx, "size=%llu", size);
82 else
83 strcpy(sz_idx, "size=4*1024*$mb_memory");
84
85 sprintf(bs_idx, "bs=%u", bs);
86 sprintf(loop_idx, "loops=%u", loops);
87
88 if (dir)
89 sprintf(dir_idx, "directory=%s", dir);
90 else
91 sprintf(dir_idx, "directory=./");
92
93 sprintf(t_idx, "numjobs=%u", nthreads);
94}
95
79d16311
JA
96static struct profile_ops tiobench_profile = {
97 .name = "tiobench",
f5b6bb85 98 .desc = "tiotest/tiobench benchmark",
e2de69da 99 .options = options,
2363d8df
JA
100 .prep_cmd = tb_prep_cmdline,
101 .cmdline = tb_opts,
79d16311
JA
102};
103
104static void fio_init tiobench_register(void)
105{
07b3232d
JA
106 if (register_profile(&tiobench_profile))
107 log_err("fio: failed to register profile 'tiobench'\n");
79d16311
JA
108}
109
110static void fio_exit tiobench_unregister(void)
111{
112 unregister_profile(&tiobench_profile);
113}