blob: f86a33787d9ca4e5f25fe2d096089c04b902154d [file] [log] [blame]
Jens Axboe79d16312010-03-04 12:43:20 +01001#include "../fio.h"
2#include "../profile.h"
Jens Axboee2de69d2010-03-04 14:05:48 +01003#include "../parse.h"
4
Jens Axboe2363d8d2010-03-04 14:30:02 +01005static unsigned long long size;
6static unsigned int loops = 1;
7static unsigned int bs = 4096;
8static unsigned int nthreads = 1;
Jens Axboee2de69d2010-03-04 14:05:48 +01009static char *dir;
Jens Axboe79d16312010-03-04 12:43:20 +010010
Jens Axboe2363d8d2010-03-04 14:30:02 +010011char sz_idx[80], bs_idx[80], loop_idx[80], dir_idx[80], t_idx[80];
12
Jens Axboe79d16312010-03-04 12:43:20 +010013static const char *tb_opts[] = {
Jens Axboe2363d8d2010-03-04 14:30:02 +010014 "buffered=0", sz_idx, bs_idx, loop_idx, dir_idx, t_idx,
15 "timeout=600", "group_reporting", "thread", "overwrite=1",
Jens Axboe79d16312010-03-04 12:43:20 +010016 "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
Jens Axboee2de69d2010-03-04 14:05:48 +010023static struct fio_option options[] = {
24 {
25 .name = "size",
Jens Axboe2363d8d2010-03-04 14:30:02 +010026 .type = FIO_OPT_STR_VAL,
Jens Axboee2de69d2010-03-04 14:05:48 +010027 .roff1 = &size,
28 .help = "Size in MB",
29 },
30 {
31 .name = "block",
32 .type = FIO_OPT_INT,
33 .roff1 = &bs,
34 .help = "Block size in bytes",
35 .def = "4k",
36 },
37 {
38 .name = "numruns",
39 .type = FIO_OPT_INT,
40 .roff1 = &loops,
41 .help = "Number of runs",
42 },
43 {
44 .name = "dir",
45 .type = FIO_OPT_STR_STORE,
46 .roff1 = &dir,
47 .help = "Test directory",
48 },
49 {
Jens Axboe2363d8d2010-03-04 14:30:02 +010050 .name = "threads",
51 .type = FIO_OPT_INT,
52 .roff1 = &nthreads,
53 .help = "Number of Threads",
54 },
55 {
Jens Axboee2de69d2010-03-04 14:05:48 +010056 .name = NULL,
57 },
58};
59
Jens Axboe2363d8d2010-03-04 14:30:02 +010060/*
61 * Fill our private options into the command line
62 */
63static void tb_prep_cmdline(void)
64{
65
66 /*
67 * tiobench uses size as MB, so multiply up
68 */
69 size *= 1024 * 1024ULL;
70 if (size)
71 sprintf(sz_idx, "size=%llu", size);
72 else
73 strcpy(sz_idx, "size=4*1024*$mb_memory");
74
75 sprintf(bs_idx, "bs=%u", bs);
76 sprintf(loop_idx, "loops=%u", loops);
77
78 if (dir)
79 sprintf(dir_idx, "directory=%s", dir);
80 else
81 sprintf(dir_idx, "directory=./");
82
83 sprintf(t_idx, "numjobs=%u", nthreads);
84}
85
Jens Axboe79d16312010-03-04 12:43:20 +010086static struct profile_ops tiobench_profile = {
87 .name = "tiobench",
Jens Axboef5b6bb82010-03-05 10:09:59 +010088 .desc = "tiotest/tiobench benchmark",
Jens Axboee2de69d2010-03-04 14:05:48 +010089 .options = options,
Jens Axboe2363d8d2010-03-04 14:30:02 +010090 .prep_cmd = tb_prep_cmdline,
91 .cmdline = tb_opts,
Jens Axboe79d16312010-03-04 12:43:20 +010092};
93
94static void fio_init tiobench_register(void)
95{
Jens Axboe07b32322010-03-05 09:48:44 +010096 if (register_profile(&tiobench_profile))
97 log_err("fio: failed to register profile 'tiobench'\n");
Jens Axboe79d16312010-03-04 12:43:20 +010098}
99
100static void fio_exit tiobench_unregister(void)
101{
102 unregister_profile(&tiobench_profile);
103}