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