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