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