Add some more options for commands
[fio.git] / engines / cpu.c
CommitLineData
da751ca9
JA
1/*
2 * CPU engine
3 *
4 * Doesn't transfer any data, merely burns CPU cycles according to
5 * the settings.
6 *
7 */
5f350952
JA
8#include "../fio.h"
9#include "../os.h"
2866c82d 10
ba0fbe10
JA
11static int fio_cpuio_queue(struct thread_data *td, struct io_u fio_unused *io_u)
12{
13 __usec_sleep(td->cpucycle);
14 return FIO_Q_COMPLETED;
15}
16
ea2877a4
JA
17static int fio_cpuio_setup(struct thread_data fio_unused *td)
18{
ba0fbe10 19 struct fio_file *f;
af52b345 20 unsigned int i;
ba0fbe10
JA
21
22 td->total_file_size = -1;
23 td->io_size = td->total_file_size;
24 td->total_io_size = td->io_size;
25
26 for_each_file(td, f, i) {
27 f->real_file_size = -1;
28 f->file_size = -1;
29 }
30
ea2877a4
JA
31 return 0;
32}
33
2866c82d
JA
34static int fio_cpuio_init(struct thread_data *td)
35{
36 if (!td->cpuload) {
ba0fbe10 37 td_vmsg(td, EINVAL, "cpu thread needs rate (cpuload=)","cpuio");
2866c82d 38 return 1;
ba0fbe10
JA
39 }
40
41 if (td->cpuload > 100)
2866c82d
JA
42 td->cpuload = 100;
43
ba0fbe10
JA
44 /*
45 * set thinktime_sleep and thinktime_spin appropriately
46 */
47 td->thinktime_blocks = 1;
48 td->thinktime_spin = 0;
49 td->thinktime = (td->cpucycle * (100 - td->cpuload)) / td->cpuload;
2866c82d 50
ba0fbe10
JA
51 td->nr_files = td->open_files = 1;
52 return 0;
53}
54
55static int fio_cpuio_open(struct thread_data fio_unused *td, struct fio_file *f)
56{
57 f->fd = 0;
2866c82d
JA
58 return 0;
59}
60
5f350952 61static struct ioengine_ops ioengine = {
2866c82d
JA
62 .name = "cpuio",
63 .version = FIO_IOOPS_VERSION,
ba0fbe10 64 .queue = fio_cpuio_queue,
2866c82d 65 .init = fio_cpuio_init,
ea2877a4 66 .setup = fio_cpuio_setup,
ba0fbe10
JA
67 .open_file = fio_cpuio_open,
68 .flags = FIO_SYNCIO | FIO_DISKLESSIO,
2866c82d 69};
5f350952
JA
70
71static void fio_init fio_cpuio_register(void)
72{
73 register_ioengine(&ioengine);
74}
75
76static void fio_exit fio_cpuio_unregister(void)
77{
78 unregister_ioengine(&ioengine);
79}