blob: 34c7e6f44bce50fed649380d391977de9752b32c [file] [log] [blame]
Jens Axboe10ba5352006-10-20 11:39:27 +02001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <signal.h>
5#include <time.h>
6#include <assert.h>
7
8#include "fio.h"
9#include "os.h"
10
11/*
12 * The ->file_map[] contains a map of blocks we have or have not done io
13 * to yet. Used to make sure we cover the entire range in a fair fashion.
14 */
15static int random_map_free(struct thread_data *td, struct fio_file *f,
16 unsigned long long block)
17{
18 unsigned int idx = RAND_MAP_IDX(td, f, block);
19 unsigned int bit = RAND_MAP_BIT(td, f, block);
20
21 return (f->file_map[idx] & (1UL << bit)) == 0;
22}
23
24/*
Jens Axboedf415582006-10-20 11:41:03 +020025 * Mark a given offset as used in the map.
26 */
27static void mark_random_map(struct thread_data *td, struct fio_file *f,
28 struct io_u *io_u)
29{
Jens Axboeafdbe582007-02-10 19:01:57 +010030 unsigned int min_bs = td->rw_min_bs;
Jens Axboea00735e2006-11-03 08:58:08 +010031 unsigned long long block;
32 unsigned int blocks;
Jens Axboec685b5b2007-02-10 20:02:28 +010033 unsigned int nr_blocks;
Jens Axboedf415582006-10-20 11:41:03 +020034
Jens Axboea00735e2006-11-03 08:58:08 +010035 block = io_u->offset / (unsigned long long) min_bs;
36 blocks = 0;
Jens Axboec685b5b2007-02-10 20:02:28 +010037 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
38
39 while (blocks < nr_blocks) {
Jens Axboedf415582006-10-20 11:41:03 +020040 unsigned int idx, bit;
41
42 if (!random_map_free(td, f, block))
43 break;
44
45 idx = RAND_MAP_IDX(td, f, block);
46 bit = RAND_MAP_BIT(td, f, block);
47
48 assert(idx < f->num_maps);
49
50 f->file_map[idx] |= (1UL << bit);
51 block++;
52 blocks++;
53 }
54
Jens Axboea00735e2006-11-03 08:58:08 +010055 if ((blocks * min_bs) < io_u->buflen)
56 io_u->buflen = blocks * min_bs;
Jens Axboedf415582006-10-20 11:41:03 +020057}
58
59/*
Jens Axboe10ba5352006-10-20 11:39:27 +020060 * Return the next free block in the map.
61 */
62static int get_next_free_block(struct thread_data *td, struct fio_file *f,
63 unsigned long long *b)
64{
65 int i;
66
Jens Axboec685b5b2007-02-10 20:02:28 +010067 i = f->last_free_lookup;
68 *b = (i * BLOCKS_PER_MAP);
Jens Axboeee884702006-12-20 10:58:07 +010069 while ((*b) * td->rw_min_bs < f->real_file_size) {
Jens Axboe10ba5352006-10-20 11:39:27 +020070 if (f->file_map[i] != -1UL) {
71 *b += ffz(f->file_map[i]);
Jens Axboec685b5b2007-02-10 20:02:28 +010072 f->last_free_lookup = i;
Jens Axboe10ba5352006-10-20 11:39:27 +020073 return 0;
74 }
75
76 *b += BLOCKS_PER_MAP;
77 i++;
78 }
79
80 return 1;
81}
82
83/*
84 * For random io, generate a random new block and see if it's used. Repeat
85 * until we find a free one. For sequential io, just return the end of
86 * the last io issued.
87 */
88static int get_next_offset(struct thread_data *td, struct fio_file *f,
Jens Axboec685b5b2007-02-10 20:02:28 +010089 struct io_u *io_u)
Jens Axboe10ba5352006-10-20 11:39:27 +020090{
Jens Axboec685b5b2007-02-10 20:02:28 +010091 const int ddir = io_u->ddir;
Jens Axboe10ba5352006-10-20 11:39:27 +020092 unsigned long long b, rb;
93 long r;
94
95 if (!td->sequential) {
Jens Axboef6971252006-11-15 10:00:31 +010096 unsigned long long max_blocks = f->file_size / td->min_bs[ddir];
Jens Axboec685b5b2007-02-10 20:02:28 +010097 int loops = 5;
Jens Axboe10ba5352006-10-20 11:39:27 +020098
99 do {
100 r = os_random_long(&td->random_state);
101 b = ((max_blocks - 1) * r / (unsigned long long) (RAND_MAX+1.0));
Jens Axboebb8895e2006-10-30 15:14:48 +0100102 if (td->norandommap)
103 break;
Jens Axboea00735e2006-11-03 08:58:08 +0100104 rb = b + (f->file_offset / td->min_bs[ddir]);
Jens Axboe10ba5352006-10-20 11:39:27 +0200105 loops--;
106 } while (!random_map_free(td, f, rb) && loops);
107
108 if (!loops) {
109 if (get_next_free_block(td, f, &b))
110 return 1;
Jens Axboec685b5b2007-02-10 20:02:28 +0100111
112 b += f->file_offset / td->min_bs[ddir];
Jens Axboe10ba5352006-10-20 11:39:27 +0200113 }
114 } else
Jens Axboea00735e2006-11-03 08:58:08 +0100115 b = f->last_pos / td->min_bs[ddir];
Jens Axboe10ba5352006-10-20 11:39:27 +0200116
Jens Axboec685b5b2007-02-10 20:02:28 +0100117 io_u->offset = (b * td->min_bs[ddir]) + f->file_offset;
118 if (io_u->offset > f->real_file_size)
Jens Axboe10ba5352006-10-20 11:39:27 +0200119 return 1;
120
121 return 0;
122}
123
Jens Axboea00735e2006-11-03 08:58:08 +0100124static unsigned int get_next_buflen(struct thread_data *td, int ddir)
Jens Axboe10ba5352006-10-20 11:39:27 +0200125{
126 unsigned int buflen;
127 long r;
128
Jens Axboea00735e2006-11-03 08:58:08 +0100129 if (td->min_bs[ddir] == td->max_bs[ddir])
130 buflen = td->min_bs[ddir];
Jens Axboe10ba5352006-10-20 11:39:27 +0200131 else {
132 r = os_random_long(&td->bsrange_state);
Jens Axboe1e97cce2006-12-05 11:44:16 +0100133 buflen = (unsigned int) (1 + (double) (td->max_bs[ddir] - 1) * r / (RAND_MAX + 1.0));
Jens Axboe690adba2006-10-30 15:25:09 +0100134 if (!td->bs_unaligned)
Jens Axboea00735e2006-11-03 08:58:08 +0100135 buflen = (buflen + td->min_bs[ddir] - 1) & ~(td->min_bs[ddir] - 1);
Jens Axboe10ba5352006-10-20 11:39:27 +0200136 }
137
Jens Axboea00735e2006-11-03 08:58:08 +0100138 if (buflen > td->io_size - td->this_io_bytes[ddir]) {
Jens Axboe10ba5352006-10-20 11:39:27 +0200139 /*
140 * if using direct/raw io, we may not be able to
141 * shrink the size. so just fail it.
142 */
143 if (td->io_ops->flags & FIO_RAWIO)
144 return 0;
145
Jens Axboea00735e2006-11-03 08:58:08 +0100146 buflen = td->io_size - td->this_io_bytes[ddir];
Jens Axboe10ba5352006-10-20 11:39:27 +0200147 }
148
149 return buflen;
150}
151
152/*
153 * Return the data direction for the next io_u. If the job is a
154 * mixed read/write workload, check the rwmix cycle and switch if
155 * necessary.
156 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100157static enum fio_ddir get_rw_ddir(struct thread_data *td)
Jens Axboe10ba5352006-10-20 11:39:27 +0200158{
159 if (td_rw(td)) {
160 struct timeval now;
161 unsigned long elapsed;
162
Jens Axboe02bcaa82006-11-24 10:42:00 +0100163 fio_gettime(&now, NULL);
Jens Axboe10ba5352006-10-20 11:39:27 +0200164 elapsed = mtime_since_now(&td->rwmix_switch);
165
166 /*
167 * Check if it's time to seed a new data direction.
168 */
169 if (elapsed >= td->rwmixcycle) {
170 unsigned int v;
171 long r;
172
173 r = os_random_long(&td->rwmix_state);
174 v = 1 + (int) (100.0 * (r / (RAND_MAX + 1.0)));
175 if (v < td->rwmixread)
176 td->rwmix_ddir = DDIR_READ;
177 else
178 td->rwmix_ddir = DDIR_WRITE;
179 memcpy(&td->rwmix_switch, &now, sizeof(now));
180 }
181 return td->rwmix_ddir;
182 } else if (td_read(td))
183 return DDIR_READ;
184 else
185 return DDIR_WRITE;
186}
187
Jens Axboe10ba5352006-10-20 11:39:27 +0200188void put_io_u(struct thread_data *td, struct io_u *io_u)
189{
190 io_u->file = NULL;
191 list_del(&io_u->list);
192 list_add(&io_u->list, &td->io_u_freelist);
193 td->cur_depth--;
194}
195
196static int fill_io_u(struct thread_data *td, struct fio_file *f,
197 struct io_u *io_u)
198{
199 /*
200 * If using an iolog, grab next piece if any available.
201 */
202 if (td->read_iolog)
203 return read_iolog_get(td, io_u);
204
205 /*
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200206 * see if it's time to sync
207 */
208 if (td->fsync_blocks && !(td->io_blocks[DDIR_WRITE] % td->fsync_blocks)
209 && should_fsync(td)) {
210 io_u->ddir = DDIR_SYNC;
211 io_u->file = f;
212 return 0;
213 }
214
Jens Axboea00735e2006-11-03 08:58:08 +0100215 io_u->ddir = get_rw_ddir(td);
216
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200217 /*
Jens Axboec685b5b2007-02-10 20:02:28 +0100218 * No log, let the seq/rand engine retrieve the next buflen and
219 * position.
Jens Axboe10ba5352006-10-20 11:39:27 +0200220 */
Jens Axboec685b5b2007-02-10 20:02:28 +0100221 io_u->buflen = get_next_buflen(td, io_u->ddir);
222 if (io_u->buflen) {
223 if (!get_next_offset(td, f, io_u)) {
224 /*
225 * mark entry before potentially trimming io_u
226 */
227 if (!td->read_iolog && !td->sequential &&
228 !td->norandommap)
229 mark_random_map(td, f, io_u);
230
Jens Axboe10ba5352006-10-20 11:39:27 +0200231 /*
232 * If using a write iolog, store this entry.
233 */
Jens Axboe076efc72006-10-27 11:24:25 +0200234 if (td->write_iolog_file)
Jens Axboe10ba5352006-10-20 11:39:27 +0200235 write_iolog_put(td, io_u);
236
237 io_u->file = f;
238 return 0;
239 }
240 }
241
242 return 1;
243}
244
Jens Axboe71619dc2007-01-13 23:56:33 +0100245static void io_u_mark_depth(struct thread_data *td)
246{
247 int index = 0;
248
249 switch (td->cur_depth) {
250 default:
251 index++;
252 case 32 ... 63:
253 index++;
254 case 16 ... 31:
255 index++;
256 case 8 ... 15:
257 index++;
258 case 4 ... 7:
259 index++;
260 case 2 ... 3:
261 index++;
262 case 1:
263 break;
264 }
265
266 td->io_u_map[index]++;
267 td->total_io_u++;
268}
269
Jens Axboe10ba5352006-10-20 11:39:27 +0200270struct io_u *__get_io_u(struct thread_data *td)
271{
272 struct io_u *io_u = NULL;
273
274 if (!queue_full(td)) {
275 io_u = list_entry(td->io_u_freelist.next, struct io_u, list);
276
Jens Axboe6040dab2006-10-24 19:38:15 +0200277 io_u->buflen = 0;
Jens Axboe10ba5352006-10-20 11:39:27 +0200278 io_u->error = 0;
279 io_u->resid = 0;
280 list_del(&io_u->list);
281 list_add(&io_u->list, &td->io_u_busylist);
282 td->cur_depth++;
Jens Axboe71619dc2007-01-13 23:56:33 +0100283 io_u_mark_depth(td);
Jens Axboe10ba5352006-10-20 11:39:27 +0200284 }
285
286 return io_u;
287}
288
289/*
290 * Return an io_u to be processed. Gets a buflen and offset, sets direction,
291 * etc. The returned io_u is fully ready to be prepped and submitted.
292 */
293struct io_u *get_io_u(struct thread_data *td, struct fio_file *f)
294{
295 struct io_u *io_u;
296
297 io_u = __get_io_u(td);
298 if (!io_u)
299 return NULL;
300
301 if (td->zone_bytes >= td->zone_size) {
302 td->zone_bytes = 0;
303 f->last_pos += td->zone_skip;
304 }
305
306 if (fill_io_u(td, f, io_u)) {
307 put_io_u(td, io_u);
308 return NULL;
309 }
310
Jens Axboeee884702006-12-20 10:58:07 +0100311 if (io_u->buflen + io_u->offset > f->real_file_size) {
Jens Axboe10ba5352006-10-20 11:39:27 +0200312 if (td->io_ops->flags & FIO_RAWIO) {
313 put_io_u(td, io_u);
314 return NULL;
315 }
316
Jens Axboeee884702006-12-20 10:58:07 +0100317 io_u->buflen = f->real_file_size - io_u->offset;
Jens Axboe10ba5352006-10-20 11:39:27 +0200318 }
319
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200320 if (io_u->ddir != DDIR_SYNC) {
321 if (!io_u->buflen) {
322 put_io_u(td, io_u);
323 return NULL;
324 }
325
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200326 f->last_pos += io_u->buflen;
327
328 if (td->verify != VERIFY_NONE)
329 populate_verify_io_u(td, io_u);
Jens Axboe10ba5352006-10-20 11:39:27 +0200330 }
331
Jens Axboe10ba5352006-10-20 11:39:27 +0200332 if (td_io_prep(td, io_u)) {
333 put_io_u(td, io_u);
334 return NULL;
335 }
336
Jens Axboe165faf12007-02-07 11:30:37 +0100337 /*
338 * Set io data pointers.
339 */
Jens Axboecec6b552007-02-06 20:15:38 +0100340 io_u->xfer_buf = io_u->buf;
341 io_u->xfer_buflen = io_u->buflen;
Jens Axboe165faf12007-02-07 11:30:37 +0100342
Jens Axboe02bcaa82006-11-24 10:42:00 +0100343 fio_gettime(&io_u->start_time, NULL);
Jens Axboe10ba5352006-10-20 11:39:27 +0200344 return io_u;
345}
346
347void io_completed(struct thread_data *td, struct io_u *io_u,
348 struct io_completion_data *icd)
349{
Jens Axboe10ba5352006-10-20 11:39:27 +0200350 unsigned long msec;
351
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200352 if (io_u->ddir == DDIR_SYNC) {
353 td->last_was_sync = 1;
354 return;
355 }
356
357 td->last_was_sync = 0;
358
Jens Axboe10ba5352006-10-20 11:39:27 +0200359 if (!io_u->error) {
360 unsigned int bytes = io_u->buflen - io_u->resid;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100361 const enum fio_ddir idx = io_u->ddir;
Jens Axboe10ba5352006-10-20 11:39:27 +0200362
363 td->io_blocks[idx]++;
364 td->io_bytes[idx] += bytes;
365 td->zone_bytes += bytes;
366 td->this_io_bytes[idx] += bytes;
367
Jens Axboe02bcaa82006-11-24 10:42:00 +0100368 io_u->file->last_completed_pos = io_u->offset + io_u->buflen;
369
370 msec = mtime_since(&io_u->issue_time, &icd->time);
Jens Axboe10ba5352006-10-20 11:39:27 +0200371
372 add_clat_sample(td, idx, msec);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100373 add_bw_sample(td, idx, &icd->time);
Jens Axboe10ba5352006-10-20 11:39:27 +0200374
375 if ((td_rw(td) || td_write(td)) && idx == DDIR_WRITE)
376 log_io_piece(td, io_u);
377
378 icd->bytes_done[idx] += bytes;
379 } else
380 icd->error = io_u->error;
381}
382
383void ios_completed(struct thread_data *td, struct io_completion_data *icd)
384{
385 struct io_u *io_u;
386 int i;
387
Jens Axboe02bcaa82006-11-24 10:42:00 +0100388 fio_gettime(&icd->time, NULL);
389
Jens Axboe10ba5352006-10-20 11:39:27 +0200390 icd->error = 0;
391 icd->bytes_done[0] = icd->bytes_done[1] = 0;
392
393 for (i = 0; i < icd->nr; i++) {
394 io_u = td->io_ops->event(td, i);
395
396 io_completed(td, io_u, icd);
397 put_io_u(td, io_u);
398 }
399}