Update close file handler to return potential error
[fio.git] / fio.c
CommitLineData
ebac4655
JA
1/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
aae22ca7 5 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
ebac4655 6 *
8e9fe637
JA
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
ebac4655 10 * This program is free software; you can redistribute it and/or modify
8e9fe637
JA
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
ebac4655
JA
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
ebac4655
JA
24#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
ebac4655
JA
27#include <signal.h>
28#include <time.h>
dbe1125e 29#include <locale.h>
36167d82 30#include <assert.h>
ebac4655
JA
31#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
ebac4655
JA
35#include <sys/mman.h>
36
37#include "fio.h"
210f43b3 38#include "hash.h"
ebac4655 39
cfc99db7
JA
40unsigned long page_mask;
41unsigned long page_size;
29d610e1
JA
42#define ALIGN(buf) \
43 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
ebac4655
JA
44
45int groupid = 0;
46int thread_number = 0;
9cedf167
JA
47int nr_process = 0;
48int nr_thread = 0;
ebac4655 49int shm_id = 0;
53cdc686 50int temp_stall_ts;
ebac4655 51
cdd18ad8 52static struct fio_mutex *startup_mutex;
6ce15a32 53static volatile int fio_abort;
437c9b71 54static int exit_value;
ebac4655 55
bb3884d8
JA
56struct io_log *agg_io_log[2];
57
ebac4655 58#define TERMINATE_ALL (-1)
75154845 59#define JOB_START_TIMEOUT (5 * 1000)
ebac4655 60
6ce15a32
JA
61static inline void td_set_runstate(struct thread_data *td, int runstate)
62{
bd6f78b2
JA
63 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", td->pid, td->runstate,
64 runstate);
6ce15a32
JA
65 td->runstate = runstate;
66}
67
390c40e2 68static void terminate_threads(int group_id)
ebac4655 69{
34572e28 70 struct thread_data *td;
ebac4655
JA
71 int i;
72
34572e28 73 for_each_td(td, i) {
ebac4655 74 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
ee56ad50 75 dprint(FD_PROCESS, "setting terminate on %d\n",td->pid);
ad830ed7
JA
76
77 td->terminate = 1;
78 td->o.start_delay = 0;
79
7a93ab19
JA
80 /*
81 * if the thread is running, just let it exit
82 */
83 if (td->runstate < TD_RUNNING)
c1302d44 84 kill(td->pid, SIGQUIT);
f63f7f3b
JA
85 else {
86 struct ioengine_ops *ops = td->io_ops;
87
88 if (ops && (ops->flags & FIO_SIGQUIT))
89 kill(td->pid, SIGQUIT);
90 }
ebac4655
JA
91 }
92 }
93}
94
95static void sig_handler(int sig)
96{
97 switch (sig) {
98 case SIGALRM:
99 update_io_ticks();
100 disk_util_timer_arm();
101 print_thread_status();
102 break;
103 default:
6ce15a32 104 printf("\nfio: terminating on signal %d\n", sig);
ebac4655 105 fflush(stdout);
390c40e2 106 terminate_threads(TERMINATE_ALL);
ebac4655
JA
107 break;
108 }
109}
110
906c8d75
JA
111/*
112 * Check if we are above the minimum rate given.
113 */
ebac4655
JA
114static int check_min_rate(struct thread_data *td, struct timeval *now)
115{
0904200b 116 unsigned long long bytes = 0;
4e991c23 117 unsigned long iops = 0;
ebac4655
JA
118 unsigned long spent;
119 unsigned long rate;
ebac4655 120
780bf1a1
JA
121 /*
122 * No minimum rate set, always ok
123 */
2dc1bbeb 124 if (!td->o.ratemin && !td->o.rate_iops_min)
780bf1a1
JA
125 return 0;
126
ebac4655
JA
127 /*
128 * allow a 2 second settle period in the beginning
129 */
130 if (mtime_since(&td->start, now) < 2000)
131 return 0;
132
4e991c23
JA
133 if (td_read(td)) {
134 iops += td->io_blocks[DDIR_READ];
0904200b 135 bytes += td->this_io_bytes[DDIR_READ];
4e991c23
JA
136 }
137 if (td_write(td)) {
138 iops += td->io_blocks[DDIR_WRITE];
0904200b 139 bytes += td->this_io_bytes[DDIR_WRITE];
4e991c23 140 }
0904200b 141
ebac4655
JA
142 /*
143 * if rate blocks is set, sample is running
144 */
4e991c23 145 if (td->rate_bytes || td->rate_blocks) {
ebac4655 146 spent = mtime_since(&td->lastrate, now);
2dc1bbeb 147 if (spent < td->o.ratecycle)
ebac4655
JA
148 return 0;
149
2dc1bbeb 150 if (td->o.rate) {
4e991c23
JA
151 /*
152 * check bandwidth specified rate
153 */
154 if (bytes < td->rate_bytes) {
2dc1bbeb 155 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
4e991c23
JA
156 return 1;
157 } else {
158 rate = (bytes - td->rate_bytes) / spent;
2dc1bbeb
JA
159 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
160 log_err("%s: min rate %u not met, got %luKiB/sec\n", td->o.name, td->o.ratemin, rate);
4e991c23
JA
161 return 1;
162 }
163 }
413dd459 164 } else {
4e991c23
JA
165 /*
166 * checks iops specified rate
167 */
2dc1bbeb
JA
168 if (iops < td->o.rate_iops) {
169 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
413dd459 170 return 1;
4e991c23
JA
171 } else {
172 rate = (iops - td->rate_blocks) / spent;
2dc1bbeb
JA
173 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
174 log_err("%s: min iops rate %u not met, got %lu\n", td->o.name, td->o.rate_iops_min, rate);
4e991c23 175 }
413dd459 176 }
ebac4655
JA
177 }
178 }
179
0904200b 180 td->rate_bytes = bytes;
4e991c23 181 td->rate_blocks = iops;
ebac4655
JA
182 memcpy(&td->lastrate, now, sizeof(*now));
183 return 0;
184}
185
186static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
187{
2dc1bbeb 188 if (!td->o.timeout)
ebac4655 189 return 0;
2dc1bbeb 190 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
ebac4655
JA
191 return 1;
192
193 return 0;
194}
195
906c8d75
JA
196/*
197 * When job exits, we can cancel the in-flight IO if we are using async
198 * io. Attempt to do so.
199 */
ebac4655
JA
200static void cleanup_pending_aio(struct thread_data *td)
201{
ebac4655 202 struct list_head *entry, *n;
ebac4655
JA
203 struct io_u *io_u;
204 int r;
205
206 /*
207 * get immediately available events, if any
208 */
d7762cf8 209 r = io_u_queued_complete(td, 0);
b2fdda43
JA
210 if (r < 0)
211 return;
ebac4655
JA
212
213 /*
214 * now cancel remaining active events
215 */
2866c82d 216 if (td->io_ops->cancel) {
ebac4655
JA
217 list_for_each_safe(entry, n, &td->io_u_busylist) {
218 io_u = list_entry(entry, struct io_u, list);
219
0c6e7517
JA
220 /*
221 * if the io_u isn't in flight, then that generally
222 * means someone leaked an io_u. complain but fix
223 * it up, so we don't stall here.
224 */
225 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
226 log_err("fio: non-busy IO on busy list\n");
ebac4655 227 put_io_u(td, io_u);
0c6e7517
JA
228 } else {
229 r = td->io_ops->cancel(td, io_u);
230 if (!r)
231 put_io_u(td, io_u);
232 }
ebac4655
JA
233 }
234 }
235
97601024 236 if (td->cur_depth)
d7762cf8 237 r = io_u_queued_complete(td, td->cur_depth);
ebac4655
JA
238}
239
858a3d47
JA
240/*
241 * Helper to handle the final sync of a file. Works just like the normal
242 * io path, just does everything sync.
243 */
244static int fio_io_sync(struct thread_data *td, struct fio_file *f)
245{
246 struct io_u *io_u = __get_io_u(td);
858a3d47
JA
247 int ret;
248
249 if (!io_u)
250 return 1;
251
252 io_u->ddir = DDIR_SYNC;
253 io_u->file = f;
254
255 if (td_io_prep(td, io_u)) {
256 put_io_u(td, io_u);
257 return 1;
258 }
259
755200a3 260requeue:
858a3d47 261 ret = td_io_queue(td, io_u);
36167d82 262 if (ret < 0) {
e1161c32 263 td_verror(td, io_u->error, "td_io_queue");
858a3d47 264 put_io_u(td, io_u);
858a3d47 265 return 1;
36167d82 266 } else if (ret == FIO_Q_QUEUED) {
d7762cf8 267 if (io_u_queued_complete(td, 1) < 0)
36167d82 268 return 1;
36167d82
JA
269 } else if (ret == FIO_Q_COMPLETED) {
270 if (io_u->error) {
e1161c32 271 td_verror(td, io_u->error, "td_io_queue");
36167d82
JA
272 return 1;
273 }
858a3d47 274
d7762cf8 275 if (io_u_sync_complete(td, io_u) < 0)
b2fdda43 276 return 1;
755200a3
JA
277 } else if (ret == FIO_Q_BUSY) {
278 if (td_io_commit(td))
279 return 1;
280 goto requeue;
858a3d47
JA
281 }
282
283 return 0;
284}
285
906c8d75 286/*
34403fb1 287 * The main verify engine. Runs over the writes we previously submitted,
906c8d75
JA
288 * reads the blocks back in, and checks the crc/md5 of the data.
289 */
1e97cce9 290static void do_verify(struct thread_data *td)
ebac4655 291{
53cdc686 292 struct fio_file *f;
36167d82 293 struct io_u *io_u;
af52b345
JA
294 int ret, min_events;
295 unsigned int i;
e5b401d4
JA
296
297 /*
298 * sync io first and invalidate cache, to make sure we really
299 * read from disk.
300 */
301 for_each_file(td, f, i) {
3d7b485f
JA
302 if (!(f->flags & FIO_FILE_OPEN))
303 continue;
b2fdda43
JA
304 if (fio_io_sync(td, f))
305 break;
306 if (file_invalidate_cache(td, f))
307 break;
e5b401d4 308 }
ebac4655 309
b2fdda43
JA
310 if (td->error)
311 return;
312
ebac4655
JA
313 td_set_runstate(td, TD_VERIFYING);
314
36167d82
JA
315 io_u = NULL;
316 while (!td->terminate) {
5451792e
JA
317 int ret2;
318
ebac4655
JA
319 io_u = __get_io_u(td);
320 if (!io_u)
321 break;
322
069c2918
JA
323 if (runtime_exceeded(td, &io_u->start_time)) {
324 put_io_u(td, io_u);
90a87d4b 325 td->terminate = 1;
02bcaa8c 326 break;
069c2918 327 }
02bcaa8c 328
069c2918
JA
329 if (get_next_verify(td, io_u)) {
330 put_io_u(td, io_u);
ebac4655 331 break;
069c2918 332 }
ebac4655 333
069c2918
JA
334 if (td_io_prep(td, io_u)) {
335 put_io_u(td, io_u);
53cdc686 336 break;
069c2918 337 }
d7762cf8
JA
338
339 io_u->end_io = verify_io_u;
53cdc686 340
11786802 341 ret = td_io_queue(td, io_u);
36167d82
JA
342 switch (ret) {
343 case FIO_Q_COMPLETED:
344 if (io_u->error)
22819ec2 345 ret = -io_u->error;
9e9d164e 346 else if (io_u->resid) {
36167d82 347 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 348 struct fio_file *f = io_u->file;
ebac4655 349
9e9d164e
JA
350 /*
351 * zero read, fail
352 */
353 if (!bytes) {
354 td_verror(td, ENODATA, "full resid");
355 put_io_u(td, io_u);
356 break;
357 }
8400d9b2 358
36167d82
JA
359 io_u->xfer_buflen = io_u->resid;
360 io_u->xfer_buf += bytes;
8400d9b2 361 io_u->offset += bytes;
d460eb31 362 f->last_completed_pos = io_u->offset;
8400d9b2 363
30061b97
JA
364 td->ts.short_io_u[io_u->ddir]++;
365
d460eb31 366 if (io_u->offset == f->real_file_size)
8400d9b2
JA
367 goto sync_done;
368
11786802
JA
369 requeue_io_u(td, &io_u);
370 } else {
8400d9b2 371sync_done:
11786802
JA
372 ret = io_u_sync_complete(td, io_u);
373 if (ret < 0)
374 break;
36167d82 375 }
36167d82
JA
376 continue;
377 case FIO_Q_QUEUED:
378 break;
755200a3
JA
379 case FIO_Q_BUSY:
380 requeue_io_u(td, &io_u);
5451792e
JA
381 ret2 = td_io_commit(td);
382 if (ret2 < 0)
383 ret = ret2;
755200a3 384 break;
36167d82
JA
385 default:
386 assert(ret < 0);
e1161c32 387 td_verror(td, -ret, "td_io_queue");
ebac4655
JA
388 break;
389 }
390
99784632 391 if (ret < 0 || td->error)
3af6ef39
JA
392 break;
393
ebac4655 394 /*
3af6ef39
JA
395 * if we can queue more, do so. but check if there are
396 * completed io_u's first.
ebac4655 397 */
97601024 398 min_events = 0;
e916b390 399 if (queue_full(td) || ret == FIO_Q_BUSY) {
3af6ef39 400 min_events = 1;
3af6ef39 401
2dc1bbeb
JA
402 if (td->cur_depth > td->o.iodepth_low)
403 min_events = td->cur_depth - td->o.iodepth_low;
e916b390
JA
404 }
405
3af6ef39
JA
406 /*
407 * Reap required number of io units, if any, and do the
408 * verification on them through the callback handler
409 */
d7762cf8 410 if (io_u_queued_complete(td, min_events) < 0)
ebac4655 411 break;
36167d82 412 }
ebac4655 413
c01c0395
JA
414 if (!td->error) {
415 min_events = td->cur_depth;
416
417 if (min_events)
418 ret = io_u_queued_complete(td, min_events);
419 } else
ebac4655
JA
420 cleanup_pending_aio(td);
421
422 td_set_runstate(td, TD_RUNNING);
423}
424
32cd46a0 425/*
906c8d75 426 * Main IO worker function. It retrieves io_u's to process and queues
32cd46a0
JA
427 * and reaps them, checking for rate and errors along the way.
428 */
ebac4655
JA
429static void do_io(struct thread_data *td)
430{
02bcaa8c 431 struct timeval s;
ebac4655 432 unsigned long usec;
af52b345
JA
433 unsigned int i;
434 int ret = 0;
ebac4655 435
5853e5a8
JA
436 td_set_runstate(td, TD_RUNNING);
437
7bb48f84 438 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
97601024
JA
439 struct timeval comp_time;
440 long bytes_done = 0;
84585003 441 int min_evts = 0;
ebac4655 442 struct io_u *io_u;
5451792e 443 int ret2;
ebac4655
JA
444
445 if (td->terminate)
446 break;
447
3d7c391d 448 io_u = get_io_u(td);
ebac4655
JA
449 if (!io_u)
450 break;
451
452 memcpy(&s, &io_u->start_time, sizeof(s));
97601024
JA
453
454 if (runtime_exceeded(td, &s)) {
455 put_io_u(td, io_u);
90a87d4b 456 td->terminate = 1;
97601024
JA
457 break;
458 }
36167d82 459
b67740d3
JA
460 /*
461 * Add verification end_io handler, if asked to verify
462 * a previously written file.
463 */
464 if (td->o.verify != VERIFY_NONE)
465 io_u->end_io = verify_io_u;
466
11786802 467 ret = td_io_queue(td, io_u);
36167d82
JA
468 switch (ret) {
469 case FIO_Q_COMPLETED:
5451792e
JA
470 if (io_u->error)
471 ret = -io_u->error;
9e9d164e 472 else if (io_u->resid) {
36167d82 473 int bytes = io_u->xfer_buflen - io_u->resid;
d460eb31 474 struct fio_file *f = io_u->file;
36167d82 475
9e9d164e
JA
476 /*
477 * zero read, fail
478 */
479 if (!bytes) {
480 td_verror(td, ENODATA, "full resid");
481 put_io_u(td, io_u);
482 break;
483 }
484
cec6b55d 485 io_u->xfer_buflen = io_u->resid;
36167d82 486 io_u->xfer_buf += bytes;
5a7c5680 487 io_u->offset += bytes;
d460eb31 488 f->last_completed_pos = io_u->offset;
5a7c5680 489
30061b97
JA
490 td->ts.short_io_u[io_u->ddir]++;
491
d460eb31 492 if (io_u->offset == f->real_file_size)
5a7c5680
JA
493 goto sync_done;
494
11786802
JA
495 requeue_io_u(td, &io_u);
496 } else {
5a7c5680 497sync_done:
11786802
JA
498 fio_gettime(&comp_time, NULL);
499 bytes_done = io_u_sync_complete(td, io_u);
500 if (bytes_done < 0)
501 ret = bytes_done;
cec6b55d 502 }
36167d82
JA
503 break;
504 case FIO_Q_QUEUED:
7e77dd02
JA
505 /*
506 * if the engine doesn't have a commit hook,
507 * the io_u is really queued. if it does have such
508 * a hook, it has to call io_u_queued() itself.
509 */
510 if (td->io_ops->commit == NULL)
511 io_u_queued(td, io_u);
36167d82 512 break;
755200a3
JA
513 case FIO_Q_BUSY:
514 requeue_io_u(td, &io_u);
5451792e
JA
515 ret2 = td_io_commit(td);
516 if (ret2 < 0)
517 ret = ret2;
755200a3 518 break;
36167d82
JA
519 default:
520 assert(ret < 0);
521 put_io_u(td, io_u);
522 break;
ebac4655
JA
523 }
524
99784632 525 if (ret < 0 || td->error)
36167d82
JA
526 break;
527
97601024
JA
528 /*
529 * See if we need to complete some commands
530 */
755200a3 531 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
97601024 532 min_evts = 0;
e916b390 533 if (queue_full(td) || ret == FIO_Q_BUSY) {
36167d82 534 min_evts = 1;
ebac4655 535
2dc1bbeb
JA
536 if (td->cur_depth > td->o.iodepth_low)
537 min_evts = td->cur_depth - td->o.iodepth_low;
e916b390
JA
538 }
539
97601024 540 fio_gettime(&comp_time, NULL);
d7762cf8 541 bytes_done = io_u_queued_complete(td, min_evts);
97601024 542 if (bytes_done < 0)
36167d82 543 break;
ebac4655
JA
544 }
545
97601024
JA
546 if (!bytes_done)
547 continue;
548
ebac4655
JA
549 /*
550 * the rate is batched for now, it should work for batches
551 * of completions except the very first one which may look
552 * a little bursty
553 */
97601024 554 usec = utime_since(&s, &comp_time);
ebac4655 555
413dd459 556 rate_throttle(td, usec, bytes_done);
ebac4655 557
97601024 558 if (check_min_rate(td, &comp_time)) {
98aa62d8 559 if (exitall_on_terminate)
390c40e2 560 terminate_threads(td->groupid);
e1161c32 561 td_verror(td, ENODATA, "check_min_rate");
ebac4655
JA
562 break;
563 }
564
2dc1bbeb 565 if (td->o.thinktime) {
9c1f7434
JA
566 unsigned long long b;
567
568 b = td->io_blocks[0] + td->io_blocks[1];
2dc1bbeb 569 if (!(b % td->o.thinktime_blocks)) {
48097d5c
JA
570 int left;
571
2dc1bbeb
JA
572 if (td->o.thinktime_spin)
573 __usec_sleep(td->o.thinktime_spin);
48097d5c 574
2dc1bbeb 575 left = td->o.thinktime - td->o.thinktime_spin;
48097d5c
JA
576 if (left)
577 usec_sleep(td, left);
578 }
9c1f7434 579 }
ebac4655
JA
580 }
581
aa31f1f1
SL
582 if (td->o.fill_device && td->error == ENOSPC) {
583 td->error = 0;
584 td->terminate = 1;
585 }
4d2413c6 586 if (!td->error) {
3d7c391d
JA
587 struct fio_file *f;
588
c01c0395
JA
589 i = td->cur_depth;
590 if (i)
591 ret = io_u_queued_complete(td, i);
ebac4655 592
2dc1bbeb 593 if (should_fsync(td) && td->o.end_fsync) {
84585003 594 td_set_runstate(td, TD_FSYNCING);
3d7b485f
JA
595
596 for_each_file(td, f, i) {
597 if (!(f->flags & FIO_FILE_OPEN))
598 continue;
858a3d47 599 fio_io_sync(td, f);
3d7b485f 600 }
84585003 601 }
c01c0395
JA
602 } else
603 cleanup_pending_aio(td);
2ba1c290
JA
604
605 /*
606 * stop job if we failed doing any IO
607 */
608 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
609 td->done = 1;
ebac4655
JA
610}
611
ebac4655
JA
612static void cleanup_io_u(struct thread_data *td)
613{
614 struct list_head *entry, *n;
615 struct io_u *io_u;
616
617 list_for_each_safe(entry, n, &td->io_u_freelist) {
618 io_u = list_entry(entry, struct io_u, list);
619
620 list_del(&io_u->list);
621 free(io_u);
622 }
623
2f9ade3c 624 free_io_mem(td);
ebac4655
JA
625}
626
6b9cea23
JA
627/*
628 * "randomly" fill the buffer contents
629 */
e9459e5a 630static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
6b9cea23 631{
210f43b3 632 long *ptr = io_u->buf;
6b9cea23 633
e9459e5a
JA
634 if (!td->o.zero_buffers) {
635 while ((void *) ptr - io_u->buf < max_bs) {
210f43b3 636 *ptr = rand() * GOLDEN_RATIO_PRIME;
e9459e5a
JA
637 ptr++;
638 }
639 } else
640 memset(ptr, 0, max_bs);
6b9cea23
JA
641}
642
ebac4655
JA
643static int init_io_u(struct thread_data *td)
644{
645 struct io_u *io_u;
a00735e6 646 unsigned int max_bs;
ebac4655
JA
647 int i, max_units;
648 char *p;
649
1e3c09af 650 max_units = td->o.iodepth;
2dc1bbeb 651 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
c3990645 652 td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units;
74b025b0 653
2dc1bbeb
JA
654 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
655 td->orig_buffer_size = (td->orig_buffer_size + td->o.hugepage_size - 1) & ~(td->o.hugepage_size - 1);
ebac4655 656
c3990645
JA
657 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
658 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
659 return 1;
660 }
661
2f9ade3c
JA
662 if (allocate_io_mem(td))
663 return 1;
ebac4655 664
b3f378e9
JA
665 if (td->o.odirect)
666 p = ALIGN(td->orig_buffer);
667 else
668 p = td->orig_buffer;
669
ebac4655 670 for (i = 0; i < max_units; i++) {
db1cd90b
JA
671 if (td->terminate)
672 return 1;
ebac4655
JA
673 io_u = malloc(sizeof(*io_u));
674 memset(io_u, 0, sizeof(*io_u));
675 INIT_LIST_HEAD(&io_u->list);
676
b4c5e1ac
JA
677 if (!(td->io_ops->flags & FIO_NOIO)) {
678 io_u->buf = p + max_bs * i;
e9459e5a 679
b4c5e1ac
JA
680 if (td_write(td))
681 fill_io_buf(td, io_u, max_bs);
682 }
6b9cea23 683
b1ff3403 684 io_u->index = i;
0c6e7517 685 io_u->flags = IO_U_F_FREE;
ebac4655
JA
686 list_add(&io_u->list, &td->io_u_freelist);
687 }
688
433afcb4
JA
689 io_u_init_timeout();
690
ebac4655
JA
691 return 0;
692}
693
da86774e
JA
694static int switch_ioscheduler(struct thread_data *td)
695{
696 char tmp[256], tmp2[128];
697 FILE *f;
698 int ret;
699
ba0fbe10 700 if (td->io_ops->flags & FIO_DISKLESSIO)
f48b467c
JA
701 return 0;
702
da86774e
JA
703 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
704
705 f = fopen(tmp, "r+");
706 if (!f) {
cbf5c1d7
JA
707 if (errno == ENOENT) {
708 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
709 return 0;
710 }
711 td_verror(td, errno, "fopen iosched");
da86774e
JA
712 return 1;
713 }
714
715 /*
716 * Set io scheduler.
717 */
2dc1bbeb 718 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
da86774e 719 if (ferror(f) || ret != 1) {
e1161c32 720 td_verror(td, errno, "fwrite");
da86774e
JA
721 fclose(f);
722 return 1;
723 }
724
725 rewind(f);
726
727 /*
728 * Read back and check that the selected scheduler is now the default.
729 */
730 ret = fread(tmp, 1, sizeof(tmp), f);
731 if (ferror(f) || ret < 0) {
e1161c32 732 td_verror(td, errno, "fread");
da86774e
JA
733 fclose(f);
734 return 1;
735 }
736
2dc1bbeb 737 sprintf(tmp2, "[%s]", td->o.ioscheduler);
da86774e 738 if (!strstr(tmp, tmp2)) {
2dc1bbeb 739 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
e1161c32 740 td_verror(td, EINVAL, "iosched_switch");
da86774e
JA
741 fclose(f);
742 return 1;
743 }
744
745 fclose(f);
746 return 0;
747}
748
492158cf
JA
749static int keep_running(struct thread_data *td)
750{
751 unsigned long long io_done;
752
20e354ef
JA
753 if (td->done)
754 return 0;
492158cf
JA
755 if (td->o.time_based)
756 return 1;
757 if (td->o.loops) {
758 td->o.loops--;
759 return 1;
760 }
761
48f5abd3 762 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] + td->io_skip_bytes;
492158cf
JA
763 if (io_done < td->o.size)
764 return 1;
765
766 return 0;
767}
768
a978ba68 769static int clear_io_state(struct thread_data *td)
ebac4655 770{
53cdc686 771 struct fio_file *f;
af52b345
JA
772 unsigned int i;
773 int ret;
ebac4655 774
756867bd 775 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
ebac4655 776 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
20dc95c4 777 td->zone_bytes = 0;
d7d3b49b 778 td->rate_bytes = 0;
4e991c23 779 td->rate_blocks = 0;
38d77cae 780 td->rw_end_set[0] = td->rw_end_set[1] = 0;
ebac4655 781
c1324df1
JA
782 td->last_was_sync = 0;
783
2ba1c290
JA
784 /*
785 * reset file done count if we are to start over
786 */
787 if (td->o.time_based || td->o.loops)
48f5abd3 788 td->nr_done_files = 0;
281f9b63 789
24ffd2c2 790 close_files(td);
53cdc686 791
a978ba68
JA
792 ret = 0;
793 for_each_file(td, f, i) {
281f9b63 794 f->flags &= ~FIO_FILE_DONE;
a978ba68
JA
795 ret = td_io_open_file(td, f);
796 if (ret)
797 break;
53cdc686 798 }
a978ba68
JA
799
800 return ret;
ebac4655
JA
801}
802
906c8d75
JA
803/*
804 * Entry point for the thread based jobs. The process based jobs end up
805 * here as well, after a little setup.
806 */
ebac4655
JA
807static void *thread_main(void *data)
808{
10927316 809 unsigned long long runtime[2], elapsed;
ebac4655 810 struct thread_data *td = data;
a978ba68 811 int clear_state;
ebac4655 812
2dc1bbeb 813 if (!td->o.use_thread)
ebac4655
JA
814 setsid();
815
816 td->pid = getpid();
817
ee56ad50
JA
818 dprint(FD_PROCESS, "jobs pid=%d started\n", td->pid);
819
aea47d44
JA
820 INIT_LIST_HEAD(&td->io_u_freelist);
821 INIT_LIST_HEAD(&td->io_u_busylist);
755200a3 822 INIT_LIST_HEAD(&td->io_u_requeues);
aea47d44 823 INIT_LIST_HEAD(&td->io_log_list);
8de8f047 824 INIT_LIST_HEAD(&td->io_hist_list);
bb5d7d0b 825 td->io_hist_tree = RB_ROOT;
aea47d44 826
db1cd90b 827 td_set_runstate(td, TD_INITIALIZED);
cdd18ad8
JA
828 fio_mutex_up(startup_mutex);
829 fio_mutex_down(td->mutex);
db1cd90b
JA
830
831 /*
cdd18ad8 832 * the ->mutex mutex is now no longer used, close it to avoid
db1cd90b
JA
833 * eating a file descriptor
834 */
cdd18ad8 835 fio_mutex_remove(td->mutex);
db1cd90b 836
d84f8d49
JA
837 /*
838 * May alter parameters that init_io_u() will use, so we need to
839 * do this first.
840 */
841 if (init_iolog(td))
842 goto err;
843
ebac4655 844 if (init_io_u(td))
db1cd90b 845 goto err;
ebac4655 846
375b2695 847 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
e1161c32 848 td_verror(td, errno, "cpu_set_affinity");
db1cd90b 849 goto err;
ebac4655
JA
850 }
851
ac684785 852 if (td->ioprio_set) {
ebac4655 853 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
e1161c32 854 td_verror(td, errno, "ioprio_set");
db1cd90b 855 goto err;
ebac4655
JA
856 }
857 }
858
2dc1bbeb 859 if (nice(td->o.nice) == -1) {
e1161c32 860 td_verror(td, errno, "nice");
db1cd90b 861 goto err;
b6f4d880
JA
862 }
863
2dc1bbeb 864 if (td->o.ioscheduler && switch_ioscheduler(td))
db1cd90b 865 goto err;
37f56873 866
2dc1bbeb 867 if (!td->o.create_serialize && setup_files(td))
ebac4655
JA
868 goto err;
869
7d6c5283
JA
870 if (td_io_init(td))
871 goto err;
872
b5af8293
JA
873 if (open_files(td))
874 goto err;
875
68727076
JA
876 if (init_random_map(td))
877 goto err;
878
2dc1bbeb
JA
879 if (td->o.exec_prerun) {
880 if (system(td->o.exec_prerun) < 0)
69cfd7e0
JA
881 goto err;
882 }
4e0ba8af 883
69008999 884 fio_gettime(&td->epoch, NULL);
433afcb4 885 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
756867bd 886 getrusage(RUSAGE_SELF, &td->ts.ru_start);
69008999
JA
887
888 runtime[0] = runtime[1] = 0;
a978ba68 889 clear_state = 0;
492158cf 890 while (keep_running(td)) {
02bcaa8c 891 fio_gettime(&td->start, NULL);
756867bd 892 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
ebac4655 893
2dc1bbeb 894 if (td->o.ratemin)
756867bd 895 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
ebac4655 896
a978ba68
JA
897 if (clear_state && clear_io_state(td))
898 break;
899
ebac4655
JA
900 prune_io_piece_log(td);
901
ba0fbe10 902 do_io(td);
ebac4655 903
a978ba68
JA
904 clear_state = 1;
905
38d77cae
JA
906 if (td_read(td) && td->io_bytes[DDIR_READ]) {
907 if (td->rw_end_set[DDIR_READ])
908 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
909 else
910 elapsed = utime_since_now(&td->start);
911
912 runtime[DDIR_READ] += elapsed;
913 }
914 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
915 if (td->rw_end_set[DDIR_WRITE])
916 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
917 else
918 elapsed = utime_since_now(&td->start);
919
920 runtime[DDIR_WRITE] += elapsed;
921 }
413dd459 922
ebac4655
JA
923 if (td->error || td->terminate)
924 break;
925
e84c73a8
SL
926 if (!td->o.do_verify ||
927 td->o.verify == VERIFY_NONE ||
b67740d3 928 (td->io_ops->flags & FIO_UNIDIR))
ebac4655
JA
929 continue;
930
a978ba68
JA
931 if (clear_io_state(td))
932 break;
933
02bcaa8c 934 fio_gettime(&td->start, NULL);
ebac4655
JA
935
936 do_verify(td);
937
69008999 938 runtime[DDIR_READ] += utime_since_now(&td->start);
ebac4655
JA
939
940 if (td->error || td->terminate)
941 break;
942 }
943
36dff966 944 update_rusage_stat(td);
47f0cc48
YHJT
945 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
946 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
756867bd
JA
947 td->ts.total_run_time = mtime_since_now(&td->epoch);
948 td->ts.io_bytes[0] = td->io_bytes[0];
949 td->ts.io_bytes[1] = td->io_bytes[1];
950
951 if (td->ts.bw_log)
952 finish_log(td, td->ts.bw_log, "bw");
953 if (td->ts.slat_log)
954 finish_log(td, td->ts.slat_log, "slat");
955 if (td->ts.clat_log)
956 finish_log(td, td->ts.clat_log, "clat");
2dc1bbeb
JA
957 if (td->o.exec_postrun) {
958 if (system(td->o.exec_postrun) < 0)
959 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
69cfd7e0 960 }
ebac4655
JA
961
962 if (exitall_on_terminate)
390c40e2 963 terminate_threads(td->groupid);
ebac4655
JA
964
965err:
5bf13a5a
JA
966 if (td->error)
967 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
24ffd2c2 968 close_and_free_files(td);
2866c82d 969 close_ioengine(td);
ebac4655 970 cleanup_io_u(td);
f29b25a3
JA
971
972 /*
973 * do this very late, it will log file closing as well
974 */
975 if (td->o.write_iolog_file)
976 write_iolog_close(td);
977
d23bb327 978 options_mem_free(td);
ebac4655 979 td_set_runstate(td, TD_EXITED);
43d76807 980 return (void *) (unsigned long) td->error;
ebac4655
JA
981}
982
906c8d75
JA
983/*
984 * We cannot pass the td data into a forked process, so attach the td and
985 * pass it to the thread worker.
986 */
a6418147 987static int fork_main(int shmid, int offset)
ebac4655
JA
988{
989 struct thread_data *td;
a6418147 990 void *data, *ret;
ebac4655
JA
991
992 data = shmat(shmid, NULL, 0);
993 if (data == (void *) -1) {
a6418147
JA
994 int __err = errno;
995
ebac4655 996 perror("shmat");
a6418147 997 return __err;
ebac4655
JA
998 }
999
1000 td = data + offset * sizeof(struct thread_data);
a6418147 1001 ret = thread_main(td);
ebac4655 1002 shmdt(data);
43d76807 1003 return (int) (unsigned long) ret;
ebac4655
JA
1004}
1005
906c8d75
JA
1006/*
1007 * Run over the job map and reap the threads that have exited, if any.
1008 */
ebac4655
JA
1009static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1010{
34572e28 1011 struct thread_data *td;
1f809d15 1012 int i, cputhreads, realthreads, pending, status, ret;
ebac4655
JA
1013
1014 /*
1015 * reap exited threads (TD_EXITED -> TD_REAPED)
1016 */
1f809d15 1017 realthreads = pending = cputhreads = 0;
34572e28 1018 for_each_td(td, i) {
3707f45b 1019 int flags = 0;
a2f77c9f 1020
84585003
JA
1021 /*
1022 * ->io_ops is NULL for a thread that has closed its
1023 * io engine
1024 */
ba0fbe10 1025 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
b990b5c0 1026 cputhreads++;
1f809d15
JA
1027 else
1028 realthreads++;
b990b5c0 1029
a1dedc1f
AC
1030 if (!td->pid) {
1031 pending++;
1032 continue;
1033 }
1034 if (td->runstate == TD_REAPED)
a2f77c9f 1035 continue;
2dc1bbeb 1036 if (td->o.use_thread) {
3707f45b
JA
1037 if (td->runstate == TD_EXITED) {
1038 td_set_runstate(td, TD_REAPED);
1039 goto reaped;
1040 }
1041 continue;
1042 }
a2f77c9f
JA
1043
1044 flags = WNOHANG;
1045 if (td->runstate == TD_EXITED)
1046 flags = 0;
1047
1048 /*
1049 * check if someone quit or got killed in an unusual way
1050 */
1051 ret = waitpid(td->pid, &status, flags);
3707f45b 1052 if (ret < 0) {
a2f77c9f
JA
1053 if (errno == ECHILD) {
1054 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
1055 td_set_runstate(td, TD_REAPED);
1056 goto reaped;
1057 }
1058 perror("waitpid");
1059 } else if (ret == td->pid) {
1060 if (WIFSIGNALED(status)) {
fab6aa71
JA
1061 int sig = WTERMSIG(status);
1062
d9244941
JA
1063 if (sig != SIGQUIT)
1064 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
fab6aa71
JA
1065 td_set_runstate(td, TD_REAPED);
1066 goto reaped;
1067 }
a2f77c9f
JA
1068 if (WIFEXITED(status)) {
1069 if (WEXITSTATUS(status) && !td->error)
1070 td->error = WEXITSTATUS(status);
a2f77c9f 1071
a2f77c9f
JA
1072 td_set_runstate(td, TD_REAPED);
1073 goto reaped;
a6418147
JA
1074 }
1075 }
ebac4655 1076
a2f77c9f
JA
1077 /*
1078 * thread is not dead, continue
1079 */
e48676ba 1080 pending++;
a2f77c9f 1081 continue;
fab6aa71 1082reaped:
2dc1bbeb 1083 if (td->o.use_thread) {
3707f45b
JA
1084 long ret;
1085
ee56ad50
JA
1086 dprint(FD_PROCESS, "joining tread %d\n", td->pid);
1087 if (pthread_join(td->thread, (void *) &ret)) {
1088 dprint(FD_PROCESS, "join failed %ld\n", ret);
3707f45b 1089 perror("pthread_join");
ee56ad50 1090 }
3707f45b
JA
1091 }
1092
ebac4655 1093 (*nr_running)--;
2dc1bbeb
JA
1094 (*m_rate) -= td->o.ratemin;
1095 (*t_rate) -= td->o.rate;
e48676ba 1096 pending--;
a2f77c9f
JA
1097
1098 if (td->error)
1099 exit_value++;
ebac4655 1100 }
b990b5c0 1101
1f809d15 1102 if (*nr_running == cputhreads && !pending && realthreads)
390c40e2 1103 terminate_threads(TERMINATE_ALL);
ebac4655
JA
1104}
1105
906c8d75
JA
1106/*
1107 * Main function for kicking off and reaping jobs, as needed.
1108 */
ebac4655
JA
1109static void run_threads(void)
1110{
ebac4655
JA
1111 struct thread_data *td;
1112 unsigned long spent;
1113 int i, todo, nr_running, m_rate, t_rate, nr_started;
fcb6ade2 1114
2f9ade3c
JA
1115 if (fio_pin_memory())
1116 return;
ebac4655 1117
c6ae0a5b 1118 if (!terse_output) {
9cedf167
JA
1119 printf("Starting ");
1120 if (nr_thread)
1121 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1122 if (nr_process) {
1123 if (nr_thread)
1124 printf(" and ");
1125 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1126 }
1127 printf("\n");
c6ae0a5b
JA
1128 fflush(stdout);
1129 }
c04f7ec3 1130
4efa970e
JA
1131 signal(SIGINT, sig_handler);
1132 signal(SIGALRM, sig_handler);
1133
ebac4655
JA
1134 todo = thread_number;
1135 nr_running = 0;
1136 nr_started = 0;
1137 m_rate = t_rate = 0;
1138
34572e28 1139 for_each_td(td, i) {
263e529f 1140 print_status_init(td->thread_number - 1);
ebac4655 1141
2dc1bbeb 1142 if (!td->o.create_serialize) {
380cf265 1143 init_disk_util(td);
ebac4655 1144 continue;
380cf265 1145 }
ebac4655
JA
1146
1147 /*
1148 * do file setup here so it happens sequentially,
1149 * we don't want X number of threads getting their
1150 * client data interspersed on disk
1151 */
53cdc686 1152 if (setup_files(td)) {
5bf13a5a
JA
1153 exit_value++;
1154 if (td->error)
1155 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
ebac4655
JA
1156 td_set_runstate(td, TD_REAPED);
1157 todo--;
1158 }
380cf265
JA
1159
1160 init_disk_util(td);
ebac4655
JA
1161 }
1162
a2f77c9f
JA
1163 set_genesis_time();
1164
ebac4655 1165 while (todo) {
75154845
JA
1166 struct thread_data *map[MAX_JOBS];
1167 struct timeval this_start;
1168 int this_jobs = 0, left;
1169
ebac4655
JA
1170 /*
1171 * create threads (TD_NOT_CREATED -> TD_CREATED)
1172 */
34572e28 1173 for_each_td(td, i) {
ebac4655
JA
1174 if (td->runstate != TD_NOT_CREATED)
1175 continue;
1176
1177 /*
1178 * never got a chance to start, killed by other
1179 * thread for some reason
1180 */
1181 if (td->terminate) {
1182 todo--;
1183 continue;
1184 }
1185
2dc1bbeb 1186 if (td->o.start_delay) {
263e529f 1187 spent = mtime_since_genesis();
ebac4655 1188
2dc1bbeb 1189 if (td->o.start_delay * 1000 > spent)
ebac4655
JA
1190 continue;
1191 }
1192
2dc1bbeb 1193 if (td->o.stonewall && (nr_started || nr_running))
ebac4655
JA
1194 break;
1195
75154845
JA
1196 /*
1197 * Set state to created. Thread will transition
1198 * to TD_INITIALIZED when it's done setting up.
1199 */
ebac4655 1200 td_set_runstate(td, TD_CREATED);
75154845 1201 map[this_jobs++] = td;
ebac4655
JA
1202 nr_started++;
1203
2dc1bbeb 1204 if (td->o.use_thread) {
ee56ad50 1205 dprint(FD_PROCESS, "will pthread_create\n");
ebac4655
JA
1206 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1207 perror("thread_create");
1208 nr_started--;
c8bb6faf 1209 break;
ebac4655
JA
1210 }
1211 } else {
ee56ad50 1212 dprint(FD_PROCESS, "will fork\n");
07739b57 1213 if (!fork()) {
a6418147
JA
1214 int ret = fork_main(shm_id, i);
1215
1216 exit(ret);
ebac4655
JA
1217 }
1218 }
cdd18ad8 1219 fio_mutex_down(startup_mutex);
ebac4655
JA
1220 }
1221
1222 /*
75154845
JA
1223 * Wait for the started threads to transition to
1224 * TD_INITIALIZED.
ebac4655 1225 */
02bcaa8c 1226 fio_gettime(&this_start, NULL);
75154845 1227 left = this_jobs;
6ce15a32 1228 while (left && !fio_abort) {
75154845
JA
1229 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1230 break;
1231
1232 usleep(100000);
1233
1234 for (i = 0; i < this_jobs; i++) {
1235 td = map[i];
1236 if (!td)
1237 continue;
b6f4d880 1238 if (td->runstate == TD_INITIALIZED) {
75154845
JA
1239 map[i] = NULL;
1240 left--;
b6f4d880
JA
1241 } else if (td->runstate >= TD_EXITED) {
1242 map[i] = NULL;
1243 left--;
1244 todo--;
1245 nr_running++; /* work-around... */
75154845
JA
1246 }
1247 }
1248 }
1249
1250 if (left) {
3b70d7e5 1251 log_err("fio: %d jobs failed to start\n", left);
75154845
JA
1252 for (i = 0; i < this_jobs; i++) {
1253 td = map[i];
1254 if (!td)
1255 continue;
1256 kill(td->pid, SIGTERM);
1257 }
1258 break;
1259 }
1260
1261 /*
b6f4d880 1262 * start created threads (TD_INITIALIZED -> TD_RUNNING).
75154845 1263 */
34572e28 1264 for_each_td(td, i) {
75154845 1265 if (td->runstate != TD_INITIALIZED)
ebac4655
JA
1266 continue;
1267
1268 td_set_runstate(td, TD_RUNNING);
1269 nr_running++;
1270 nr_started--;
2dc1bbeb
JA
1271 m_rate += td->o.ratemin;
1272 t_rate += td->o.rate;
75154845 1273 todo--;
cdd18ad8 1274 fio_mutex_up(td->mutex);
ebac4655
JA
1275 }
1276
1277 reap_threads(&nr_running, &t_rate, &m_rate);
1278
1279 if (todo)
1280 usleep(100000);
1281 }
1282
1283 while (nr_running) {
1284 reap_threads(&nr_running, &t_rate, &m_rate);
1285 usleep(10000);
1286 }
1287
1288 update_io_ticks();
2f9ade3c 1289 fio_unpin_memory();
ebac4655
JA
1290}
1291
ebac4655
JA
1292int main(int argc, char *argv[])
1293{
29d610e1
JA
1294 long ps;
1295
dbe1125e
JA
1296 /*
1297 * We need locale for number printing, if it isn't set then just
1298 * go with the US format.
1299 */
1300 if (!getenv("LC_NUMERIC"))
1301 setlocale(LC_NUMERIC, "en_US");
1302
ebac4655
JA
1303 if (parse_options(argc, argv))
1304 return 1;
1305
4b472fa3
JA
1306 if (!thread_number)
1307 return 0;
ebac4655 1308
29d610e1
JA
1309 ps = sysconf(_SC_PAGESIZE);
1310 if (ps < 0) {
1311 log_err("Failed to get page size\n");
1312 return 1;
1313 }
1314
cfc99db7 1315 page_size = ps;
29d610e1
JA
1316 page_mask = ps - 1;
1317
bb3884d8
JA
1318 if (write_bw_log) {
1319 setup_log(&agg_io_log[DDIR_READ]);
1320 setup_log(&agg_io_log[DDIR_WRITE]);
1321 }
1322
cdd18ad8 1323 startup_mutex = fio_mutex_init(0);
07739b57 1324
a2f77c9f
JA
1325 set_genesis_time();
1326
ebac4655
JA
1327 disk_util_timer_arm();
1328
1329 run_threads();
6ce15a32 1330
bb3884d8 1331 if (!fio_abort) {
6ce15a32 1332 show_run_stats();
bb3884d8
JA
1333 if (write_bw_log) {
1334 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1335 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1336 }
1337 }
ebac4655 1338
cdd18ad8 1339 fio_mutex_remove(startup_mutex);
437c9b71 1340 return exit_value;
ebac4655 1341}