Remove debug printf() in net engine
[fio.git] / engines / null.c
1 /*
2  * null engine
3  *
4  * IO engine that doesn't do any real IO transfers, it just pretends to.
5  * The main purpose is to test fio itself.
6  *
7  */
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <errno.h>
12 #include <assert.h>
13
14 #include "../fio.h"
15
16 struct null_data {
17         struct io_u **io_us;
18         int queued;
19         int events;
20 };
21
22 static struct io_u *fio_null_event(struct thread_data *td, int event)
23 {
24         struct null_data *nd = td->io_ops->data;
25
26         return nd->io_us[event];
27 }
28
29 static int fio_null_getevents(struct thread_data *td, unsigned int min_events,
30                               unsigned int fio_unused max,
31                               struct timespec fio_unused *t)
32 {
33         struct null_data *nd = td->io_ops->data;
34         int ret = 0;
35         
36         if (min_events) {
37                 ret = nd->events;
38                 nd->events = 0;
39         }
40
41         return ret;
42 }
43
44 static int fio_null_commit(struct thread_data *td)
45 {
46         struct null_data *nd = td->io_ops->data;
47
48         if (!nd->events) {
49                 nd->events = nd->queued;
50                 nd->queued = 0;
51         }
52
53         return 0;
54 }
55
56 static int fio_null_queue(struct thread_data fio_unused *td, struct io_u *io_u)
57 {
58         struct null_data *nd = td->io_ops->data;
59
60         fio_ro_check(td, io_u);
61
62         if (td->io_ops->flags & FIO_SYNCIO)
63                 return FIO_Q_COMPLETED;
64         if (nd->events)
65                 return FIO_Q_BUSY;
66
67         nd->io_us[nd->queued++] = io_u;
68         return FIO_Q_QUEUED;
69 }
70
71 static int fio_null_open(struct thread_data fio_unused *td,
72                          struct fio_file fio_unused *f)
73 {
74         return 0;
75 }
76
77 static void fio_null_cleanup(struct thread_data *td)
78 {
79         struct null_data *nd = td->io_ops->data;
80
81         if (nd) {
82                 if (nd->io_us)
83                         free(nd->io_us);
84                 free(nd);
85                 td->io_ops->data = NULL;
86         }
87 }
88
89 static int fio_null_init(struct thread_data *td)
90 {
91         struct null_data *nd = malloc(sizeof(*nd));
92
93         memset(nd, 0, sizeof(*nd));
94
95         if (td->o.iodepth != 1) {
96                 nd->io_us = malloc(td->o.iodepth * sizeof(struct io_u *));
97                 memset(nd->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
98         } else
99                 td->io_ops->flags |= FIO_SYNCIO;
100
101         td->io_ops->data = nd;
102         return 0;
103 }
104
105 static struct ioengine_ops ioengine = {
106         .name           = "null",
107         .version        = FIO_IOOPS_VERSION,
108         .queue          = fio_null_queue,
109         .commit         = fio_null_commit,
110         .getevents      = fio_null_getevents,
111         .event          = fio_null_event,
112         .init           = fio_null_init,
113         .cleanup        = fio_null_cleanup,
114         .open_file      = fio_null_open,
115         .flags          = FIO_DISKLESSIO,
116 };
117
118 static void fio_init fio_null_register(void)
119 {
120         register_ioengine(&ioengine);
121 }
122
123 static void fio_exit fio_null_unregister(void)
124 {
125         unregister_ioengine(&ioengine);
126 }