blob: f48b43dc8f58c3794003e5fd98303a9dcb26e284 [file] [log] [blame]
Jens Axboe2e1df072012-02-09 11:15:02 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
5 * Copyright (C) 2006-2012 Jens Axboe <axboe@kernel.dk>
6 *
7 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
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 */
24#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
27#include <limits.h>
28#include <signal.h>
29#include <time.h>
30#include <locale.h>
31#include <assert.h>
32#include <time.h>
Bruce Crane43606c2012-02-20 09:34:24 +010033#include <inttypes.h>
Jens Axboe2e1df072012-02-09 11:15:02 +010034#include <sys/stat.h>
35#include <sys/wait.h>
36#include <sys/ipc.h>
Jens Axboe2e1df072012-02-09 11:15:02 +010037#include <sys/mman.h>
38
39#include "fio.h"
Olega5e0ee12013-03-12 00:06:53 -070040#ifndef FIO_NO_HAVE_SHM_H
41#include <sys/shm.h>
42#endif
Jens Axboe2e1df072012-02-09 11:15:02 +010043#include "hash.h"
44#include "smalloc.h"
45#include "verify.h"
46#include "trim.h"
47#include "diskutil.h"
48#include "cgroup.h"
49#include "profile.h"
50#include "lib/rand.h"
51#include "memalign.h"
52#include "server.h"
Jens Axboe44404c52013-01-24 14:20:09 -070053#include "lib/getrusage.h"
Huadong Liuf2a2ce02013-01-30 13:22:24 +010054#include "idletime.h"
Jens Axboe2e1df072012-02-09 11:15:02 +010055
56static pthread_t disk_util_thread;
Jens Axboe9ec77792012-08-02 08:27:41 +020057static struct fio_mutex *disk_thread_mutex;
Jens Axboe2e1df072012-02-09 11:15:02 +010058static struct fio_mutex *startup_mutex;
59static struct fio_mutex *writeout_mutex;
60static struct flist_head *cgroup_list;
61static char *cgroup_mnt;
62static int exit_value;
63static volatile int fio_abort;
Jens Axboe3a5f6bd2013-04-11 12:04:38 +020064static unsigned int nr_process = 0;
65static unsigned int nr_thread = 0;
Jens Axboe2e1df072012-02-09 11:15:02 +010066
Shaohua Li6eaf09d2012-09-14 08:49:43 +020067struct io_log *agg_io_log[DDIR_RWDIR_CNT];
Jens Axboe2e1df072012-02-09 11:15:02 +010068
Jens Axboea3efc912012-02-09 11:25:24 +010069int groupid = 0;
70unsigned int thread_number = 0;
Jens Axboe108fea72012-11-14 13:09:45 -070071unsigned int stat_number = 0;
Jens Axboea3efc912012-02-09 11:25:24 +010072int shm_id = 0;
73int temp_stall_ts;
74unsigned long done_secs = 0;
Jens Axboe27357182012-09-27 11:31:50 +020075volatile int disk_util_exit = 0;
Jens Axboea3efc912012-02-09 11:25:24 +010076
Jens Axboe2e1df072012-02-09 11:15:02 +010077#define PAGE_ALIGN(buf) \
Bruce Crane43606c2012-02-20 09:34:24 +010078 (char *) (((uintptr_t) (buf) + page_mask) & ~page_mask)
Jens Axboe2e1df072012-02-09 11:15:02 +010079
80#define JOB_START_TIMEOUT (5 * 1000)
81
82static void sig_int(int sig)
83{
84 if (threads) {
85 if (is_backend)
86 fio_server_got_signal(sig);
87 else {
88 log_info("\nfio: terminating on signal %d\n", sig);
89 fflush(stdout);
90 exit_value = 128;
91 }
92
93 fio_terminate_threads(TERMINATE_ALL);
94 }
95}
96
Jens Axboe4c6d91e2012-03-30 10:30:35 +020097static void sig_show_status(int sig)
98{
99 show_running_run_stats();
100}
101
Jens Axboe2e1df072012-02-09 11:15:02 +0100102static void set_sig_handlers(void)
103{
104 struct sigaction act;
105
106 memset(&act, 0, sizeof(act));
107 act.sa_handler = sig_int;
108 act.sa_flags = SA_RESTART;
109 sigaction(SIGINT, &act, NULL);
110
111 memset(&act, 0, sizeof(act));
112 act.sa_handler = sig_int;
113 act.sa_flags = SA_RESTART;
114 sigaction(SIGTERM, &act, NULL);
115
Bruce Cran2f694502012-10-10 16:34:13 +0100116/* Windows uses SIGBREAK as a quit signal from other applications */
117#ifdef WIN32
118 memset(&act, 0, sizeof(act));
119 act.sa_handler = sig_int;
120 act.sa_flags = SA_RESTART;
121 sigaction(SIGBREAK, &act, NULL);
122#endif
123
Jens Axboe4c6d91e2012-03-30 10:30:35 +0200124 memset(&act, 0, sizeof(act));
125 act.sa_handler = sig_show_status;
126 act.sa_flags = SA_RESTART;
127 sigaction(SIGUSR1, &act, NULL);
128
Jens Axboe2e1df072012-02-09 11:15:02 +0100129 if (is_backend) {
130 memset(&act, 0, sizeof(act));
131 act.sa_handler = sig_int;
132 act.sa_flags = SA_RESTART;
133 sigaction(SIGPIPE, &act, NULL);
134 }
135}
136
137/*
138 * Check if we are above the minimum rate given.
139 */
140static int __check_min_rate(struct thread_data *td, struct timeval *now,
141 enum fio_ddir ddir)
142{
143 unsigned long long bytes = 0;
144 unsigned long iops = 0;
145 unsigned long spent;
146 unsigned long rate;
147 unsigned int ratemin = 0;
148 unsigned int rate_iops = 0;
149 unsigned int rate_iops_min = 0;
150
151 assert(ddir_rw(ddir));
152
153 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
154 return 0;
155
156 /*
157 * allow a 2 second settle period in the beginning
158 */
159 if (mtime_since(&td->start, now) < 2000)
160 return 0;
161
162 iops += td->this_io_blocks[ddir];
163 bytes += td->this_io_bytes[ddir];
164 ratemin += td->o.ratemin[ddir];
165 rate_iops += td->o.rate_iops[ddir];
166 rate_iops_min += td->o.rate_iops_min[ddir];
167
168 /*
169 * if rate blocks is set, sample is running
170 */
171 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
172 spent = mtime_since(&td->lastrate[ddir], now);
173 if (spent < td->o.ratecycle)
174 return 0;
175
176 if (td->o.rate[ddir]) {
177 /*
178 * check bandwidth specified rate
179 */
180 if (bytes < td->rate_bytes[ddir]) {
181 log_err("%s: min rate %u not met\n", td->o.name,
182 ratemin);
183 return 1;
184 } else {
185 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
186 if (rate < ratemin ||
187 bytes < td->rate_bytes[ddir]) {
188 log_err("%s: min rate %u not met, got"
189 " %luKB/sec\n", td->o.name,
190 ratemin, rate);
191 return 1;
192 }
193 }
194 } else {
195 /*
196 * checks iops specified rate
197 */
198 if (iops < rate_iops) {
199 log_err("%s: min iops rate %u not met\n",
200 td->o.name, rate_iops);
201 return 1;
202 } else {
203 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
204 if (rate < rate_iops_min ||
205 iops < td->rate_blocks[ddir]) {
206 log_err("%s: min iops rate %u not met,"
207 " got %lu\n", td->o.name,
208 rate_iops_min, rate);
209 }
210 }
211 }
212 }
213
214 td->rate_bytes[ddir] = bytes;
215 td->rate_blocks[ddir] = iops;
216 memcpy(&td->lastrate[ddir], now, sizeof(*now));
217 return 0;
218}
219
220static int check_min_rate(struct thread_data *td, struct timeval *now,
Jens Axboe100f49f2013-01-23 10:15:57 -0700221 uint64_t *bytes_done)
Jens Axboe2e1df072012-02-09 11:15:02 +0100222{
223 int ret = 0;
224
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200225 if (bytes_done[DDIR_READ])
226 ret |= __check_min_rate(td, now, DDIR_READ);
227 if (bytes_done[DDIR_WRITE])
228 ret |= __check_min_rate(td, now, DDIR_WRITE);
229 if (bytes_done[DDIR_TRIM])
230 ret |= __check_min_rate(td, now, DDIR_TRIM);
Jens Axboe2e1df072012-02-09 11:15:02 +0100231
232 return ret;
233}
234
235/*
236 * When job exits, we can cancel the in-flight IO if we are using async
237 * io. Attempt to do so.
238 */
239static void cleanup_pending_aio(struct thread_data *td)
240{
241 struct flist_head *entry, *n;
242 struct io_u *io_u;
243 int r;
244
245 /*
246 * get immediately available events, if any
247 */
248 r = io_u_queued_complete(td, 0, NULL);
249 if (r < 0)
250 return;
251
252 /*
253 * now cancel remaining active events
254 */
255 if (td->io_ops->cancel) {
256 flist_for_each_safe(entry, n, &td->io_u_busylist) {
257 io_u = flist_entry(entry, struct io_u, list);
258
259 /*
260 * if the io_u isn't in flight, then that generally
261 * means someone leaked an io_u. complain but fix
262 * it up, so we don't stall here.
263 */
264 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
265 log_err("fio: non-busy IO on busy list\n");
266 put_io_u(td, io_u);
267 } else {
268 r = td->io_ops->cancel(td, io_u);
269 if (!r)
270 put_io_u(td, io_u);
271 }
272 }
273 }
274
275 if (td->cur_depth)
276 r = io_u_queued_complete(td, td->cur_depth, NULL);
277}
278
279/*
280 * Helper to handle the final sync of a file. Works just like the normal
281 * io path, just does everything sync.
282 */
283static int fio_io_sync(struct thread_data *td, struct fio_file *f)
284{
285 struct io_u *io_u = __get_io_u(td);
286 int ret;
287
288 if (!io_u)
289 return 1;
290
291 io_u->ddir = DDIR_SYNC;
292 io_u->file = f;
293
294 if (td_io_prep(td, io_u)) {
295 put_io_u(td, io_u);
296 return 1;
297 }
298
299requeue:
300 ret = td_io_queue(td, io_u);
301 if (ret < 0) {
302 td_verror(td, io_u->error, "td_io_queue");
303 put_io_u(td, io_u);
304 return 1;
305 } else if (ret == FIO_Q_QUEUED) {
306 if (io_u_queued_complete(td, 1, NULL) < 0)
307 return 1;
308 } else if (ret == FIO_Q_COMPLETED) {
309 if (io_u->error) {
310 td_verror(td, io_u->error, "td_io_queue");
311 return 1;
312 }
313
314 if (io_u_sync_complete(td, io_u, NULL) < 0)
315 return 1;
316 } else if (ret == FIO_Q_BUSY) {
317 if (td_io_commit(td))
318 return 1;
319 goto requeue;
320 }
321
322 return 0;
323}
Jens Axboea3efc912012-02-09 11:25:24 +0100324
Jens Axboe61ee0f82013-02-11 11:26:55 +0100325static int fio_file_fsync(struct thread_data *td, struct fio_file *f)
326{
327 int ret;
328
329 if (fio_file_open(f))
330 return fio_io_sync(td, f);
331
332 if (td_io_open_file(td, f))
333 return 1;
334
335 ret = fio_io_sync(td, f);
336 td_io_close_file(td, f);
337 return ret;
338}
339
Jens Axboe2e1df072012-02-09 11:15:02 +0100340static inline void __update_tv_cache(struct thread_data *td)
341{
342 fio_gettime(&td->tv_cache, NULL);
343}
344
345static inline void update_tv_cache(struct thread_data *td)
346{
347 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
348 __update_tv_cache(td);
349}
350
351static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
352{
353 if (in_ramp_time(td))
354 return 0;
355 if (!td->o.timeout)
356 return 0;
357 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
358 return 1;
359
360 return 0;
361}
362
363static int break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
364 int *retptr)
365{
366 int ret = *retptr;
367
368 if (ret < 0 || td->error) {
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400369 int err = td->error;
370 enum error_type_bit eb;
Jens Axboe2e1df072012-02-09 11:15:02 +0100371
372 if (ret < 0)
373 err = -ret;
Jens Axboe2e1df072012-02-09 11:15:02 +0100374
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400375 eb = td_error_type(ddir, err);
376 if (!(td->o.continue_on_error & (1 << eb)))
Jens Axboe2e1df072012-02-09 11:15:02 +0100377 return 1;
378
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400379 if (td_non_fatal_error(td, eb, err)) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100380 /*
381 * Continue with the I/Os in case of
382 * a non fatal error.
383 */
384 update_error_count(td, err);
385 td_clear_error(td);
386 *retptr = 0;
387 return 0;
388 } else if (td->o.fill_device && err == ENOSPC) {
389 /*
390 * We expect to hit this error if
391 * fill_device option is set.
392 */
393 td_clear_error(td);
394 td->terminate = 1;
395 return 1;
396 } else {
397 /*
398 * Stop the I/O in case of a fatal
399 * error.
400 */
401 update_error_count(td, err);
402 return 1;
403 }
404 }
405
406 return 0;
407}
408
Jens Axboec97f1ad2013-03-28 15:08:49 -0600409static void check_update_rusage(struct thread_data *td)
410{
411 if (td->update_rusage) {
412 td->update_rusage = 0;
413 update_rusage_stat(td);
414 fio_mutex_up(td->rusage_sem);
415 }
416}
417
Jens Axboe2e1df072012-02-09 11:15:02 +0100418/*
419 * The main verify engine. Runs over the writes we previously submitted,
420 * reads the blocks back in, and checks the crc/md5 of the data.
421 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700422static void do_verify(struct thread_data *td, uint64_t verify_bytes)
Jens Axboe2e1df072012-02-09 11:15:02 +0100423{
Jens Axboe100f49f2013-01-23 10:15:57 -0700424 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
Jens Axboe2e1df072012-02-09 11:15:02 +0100425 struct fio_file *f;
426 struct io_u *io_u;
427 int ret, min_events;
428 unsigned int i;
429
430 dprint(FD_VERIFY, "starting loop\n");
431
432 /*
433 * sync io first and invalidate cache, to make sure we really
434 * read from disk.
435 */
436 for_each_file(td, f, i) {
437 if (!fio_file_open(f))
438 continue;
439 if (fio_io_sync(td, f))
440 break;
441 if (file_invalidate_cache(td, f))
442 break;
443 }
444
Jens Axboec97f1ad2013-03-28 15:08:49 -0600445 check_update_rusage(td);
446
Jens Axboe2e1df072012-02-09 11:15:02 +0100447 if (td->error)
448 return;
449
450 td_set_runstate(td, TD_VERIFYING);
451
452 io_u = NULL;
453 while (!td->terminate) {
Jens Axboefbccf462013-01-08 21:02:14 +0100454 enum fio_ddir ddir;
Jens Axboe2e1df072012-02-09 11:15:02 +0100455 int ret2, full;
456
457 update_tv_cache(td);
Jens Axboec97f1ad2013-03-28 15:08:49 -0600458 check_update_rusage(td);
Jens Axboe2e1df072012-02-09 11:15:02 +0100459
460 if (runtime_exceeded(td, &td->tv_cache)) {
461 __update_tv_cache(td);
462 if (runtime_exceeded(td, &td->tv_cache)) {
463 td->terminate = 1;
464 break;
465 }
466 }
467
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100468 if (flow_threshold_exceeded(td))
469 continue;
470
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700471 if (!td->o.experimental_verify) {
472 io_u = __get_io_u(td);
473 if (!io_u)
474 break;
Jens Axboe2e1df072012-02-09 11:15:02 +0100475
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700476 if (get_next_verify(td, io_u)) {
477 put_io_u(td, io_u);
478 break;
479 }
Jens Axboe2e1df072012-02-09 11:15:02 +0100480
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700481 if (td_io_prep(td, io_u)) {
482 put_io_u(td, io_u);
483 break;
484 }
485 } else {
Jens Axboe100f49f2013-01-23 10:15:57 -0700486 if (ddir_rw_sum(bytes_done) + td->o.rw_min_bs > verify_bytes)
487 break;
488
Jens Axboebcd5abf2013-01-23 09:27:25 -0700489 while ((io_u = get_io_u(td)) != NULL) {
490 /*
491 * We are only interested in the places where
492 * we wrote or trimmed IOs. Turn those into
493 * reads for verification purposes.
494 */
495 if (io_u->ddir == DDIR_READ) {
496 /*
497 * Pretend we issued it for rwmix
498 * accounting
499 */
500 td->io_issues[DDIR_READ]++;
501 put_io_u(td, io_u);
502 continue;
503 } else if (io_u->ddir == DDIR_TRIM) {
504 io_u->ddir = DDIR_READ;
505 io_u->flags |= IO_U_F_TRIMMED;
506 break;
507 } else if (io_u->ddir == DDIR_WRITE) {
508 io_u->ddir = DDIR_READ;
509 break;
510 } else {
511 put_io_u(td, io_u);
512 continue;
513 }
514 }
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700515
Jens Axboebcd5abf2013-01-23 09:27:25 -0700516 if (!io_u)
Jens Axboe44cbc6d2013-01-21 09:47:03 -0700517 break;
Jens Axboe2e1df072012-02-09 11:15:02 +0100518 }
519
520 if (td->o.verify_async)
521 io_u->end_io = verify_io_u_async;
522 else
523 io_u->end_io = verify_io_u;
524
Jens Axboefbccf462013-01-08 21:02:14 +0100525 ddir = io_u->ddir;
526
Jens Axboe2e1df072012-02-09 11:15:02 +0100527 ret = td_io_queue(td, io_u);
528 switch (ret) {
529 case FIO_Q_COMPLETED:
530 if (io_u->error) {
531 ret = -io_u->error;
532 clear_io_u(td, io_u);
533 } else if (io_u->resid) {
534 int bytes = io_u->xfer_buflen - io_u->resid;
535
536 /*
537 * zero read, fail
538 */
539 if (!bytes) {
540 td_verror(td, EIO, "full resid");
541 put_io_u(td, io_u);
542 break;
543 }
544
545 io_u->xfer_buflen = io_u->resid;
546 io_u->xfer_buf += bytes;
547 io_u->offset += bytes;
548
549 if (ddir_rw(io_u->ddir))
550 td->ts.short_io_u[io_u->ddir]++;
551
552 f = io_u->file;
553 if (io_u->offset == f->real_file_size)
554 goto sync_done;
555
556 requeue_io_u(td, &io_u);
557 } else {
558sync_done:
Jens Axboe100f49f2013-01-23 10:15:57 -0700559 ret = io_u_sync_complete(td, io_u, bytes_done);
Jens Axboe2e1df072012-02-09 11:15:02 +0100560 if (ret < 0)
561 break;
562 }
563 continue;
564 case FIO_Q_QUEUED:
565 break;
566 case FIO_Q_BUSY:
567 requeue_io_u(td, &io_u);
568 ret2 = td_io_commit(td);
569 if (ret2 < 0)
570 ret = ret2;
571 break;
572 default:
573 assert(ret < 0);
574 td_verror(td, -ret, "td_io_queue");
575 break;
576 }
577
Jens Axboefbccf462013-01-08 21:02:14 +0100578 if (break_on_this_error(td, ddir, &ret))
Jens Axboe2e1df072012-02-09 11:15:02 +0100579 break;
580
581 /*
582 * if we can queue more, do so. but check if there are
583 * completed io_u's first. Note that we can get BUSY even
584 * without IO queued, if the system is resource starved.
585 */
586 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
587 if (full || !td->o.iodepth_batch_complete) {
588 min_events = min(td->o.iodepth_batch_complete,
589 td->cur_depth);
Jens Axboe8a74b562012-03-16 13:55:50 +0100590 /*
591 * if the queue is full, we MUST reap at least 1 event
592 */
593 if (full && !min_events)
Jens Axboe2e1df072012-02-09 11:15:02 +0100594 min_events = 1;
595
596 do {
597 /*
598 * Reap required number of io units, if any,
599 * and do the verification on them through
600 * the callback handler
601 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700602 if (io_u_queued_complete(td, min_events, bytes_done) < 0) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100603 ret = -1;
604 break;
605 }
606 } while (full && (td->cur_depth > td->o.iodepth_low));
607 }
608 if (ret < 0)
609 break;
610 }
611
Jens Axboec97f1ad2013-03-28 15:08:49 -0600612 check_update_rusage(td);
613
Jens Axboe2e1df072012-02-09 11:15:02 +0100614 if (!td->error) {
615 min_events = td->cur_depth;
616
617 if (min_events)
618 ret = io_u_queued_complete(td, min_events, NULL);
619 } else
620 cleanup_pending_aio(td);
621
622 td_set_runstate(td, TD_RUNNING);
623
624 dprint(FD_VERIFY, "exiting loop\n");
625}
626
Jens Axboef7078f72012-03-07 09:24:05 +0100627static int io_bytes_exceeded(struct thread_data *td)
628{
629 unsigned long long bytes;
630
631 if (td_rw(td))
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200632 bytes = td->this_io_bytes[DDIR_READ] + td->this_io_bytes[DDIR_WRITE];
Jens Axboef7078f72012-03-07 09:24:05 +0100633 else if (td_write(td))
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200634 bytes = td->this_io_bytes[DDIR_WRITE];
635 else if (td_read(td))
636 bytes = td->this_io_bytes[DDIR_READ];
Jens Axboef7078f72012-03-07 09:24:05 +0100637 else
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200638 bytes = td->this_io_bytes[DDIR_TRIM];
Jens Axboef7078f72012-03-07 09:24:05 +0100639
640 return bytes >= td->o.size;
641}
642
Jens Axboe2e1df072012-02-09 11:15:02 +0100643/*
644 * Main IO worker function. It retrieves io_u's to process and queues
645 * and reaps them, checking for rate and errors along the way.
Jens Axboe100f49f2013-01-23 10:15:57 -0700646 *
647 * Returns number of bytes written and trimmed.
Jens Axboe2e1df072012-02-09 11:15:02 +0100648 */
Jens Axboe100f49f2013-01-23 10:15:57 -0700649static uint64_t do_io(struct thread_data *td)
Jens Axboe2e1df072012-02-09 11:15:02 +0100650{
Jens Axboe100f49f2013-01-23 10:15:57 -0700651 uint64_t bytes_done[DDIR_RWDIR_CNT] = { 0, 0, 0 };
Jens Axboe2e1df072012-02-09 11:15:02 +0100652 unsigned int i;
653 int ret = 0;
654
655 if (in_ramp_time(td))
656 td_set_runstate(td, TD_RAMP);
657 else
658 td_set_runstate(td, TD_RUNNING);
659
Jens Axboef7078f72012-03-07 09:24:05 +0100660 while ((td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100661 (!flist_empty(&td->trim_list)) || !io_bytes_exceeded(td) ||
662 td->o.time_based) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100663 struct timeval comp_time;
Jens Axboe2e1df072012-02-09 11:15:02 +0100664 int min_evts = 0;
665 struct io_u *io_u;
666 int ret2, full;
667 enum fio_ddir ddir;
668
Jens Axboec97f1ad2013-03-28 15:08:49 -0600669 check_update_rusage(td);
670
Yufei Ren7d7803f2012-10-22 21:29:38 -0400671 if (td->terminate || td->done)
Jens Axboe2e1df072012-02-09 11:15:02 +0100672 break;
673
674 update_tv_cache(td);
675
676 if (runtime_exceeded(td, &td->tv_cache)) {
677 __update_tv_cache(td);
678 if (runtime_exceeded(td, &td->tv_cache)) {
679 td->terminate = 1;
680 break;
681 }
682 }
683
Dan Ehrenberg9e684a42012-02-20 11:05:14 +0100684 if (flow_threshold_exceeded(td))
685 continue;
686
Jens Axboe2e1df072012-02-09 11:15:02 +0100687 io_u = get_io_u(td);
688 if (!io_u)
689 break;
690
691 ddir = io_u->ddir;
692
693 /*
Jens Axboe82af2a72012-03-13 13:45:58 +0100694 * Add verification end_io handler if:
695 * - Asked to verify (!td_rw(td))
696 * - Or the io_u is from our verify list (mixed write/ver)
Jens Axboe2e1df072012-02-09 11:15:02 +0100697 */
698 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
Jens Axboe82af2a72012-03-13 13:45:58 +0100699 ((io_u->flags & IO_U_F_VER_LIST) || !td_rw(td))) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100700 if (td->o.verify_async)
701 io_u->end_io = verify_io_u_async;
702 else
703 io_u->end_io = verify_io_u;
704 td_set_runstate(td, TD_VERIFYING);
705 } else if (in_ramp_time(td))
706 td_set_runstate(td, TD_RAMP);
707 else
708 td_set_runstate(td, TD_RUNNING);
709
710 ret = td_io_queue(td, io_u);
711 switch (ret) {
712 case FIO_Q_COMPLETED:
713 if (io_u->error) {
714 ret = -io_u->error;
715 clear_io_u(td, io_u);
716 } else if (io_u->resid) {
717 int bytes = io_u->xfer_buflen - io_u->resid;
718 struct fio_file *f = io_u->file;
719
720 /*
721 * zero read, fail
722 */
723 if (!bytes) {
724 td_verror(td, EIO, "full resid");
725 put_io_u(td, io_u);
726 break;
727 }
728
729 io_u->xfer_buflen = io_u->resid;
730 io_u->xfer_buf += bytes;
731 io_u->offset += bytes;
732
733 if (ddir_rw(io_u->ddir))
734 td->ts.short_io_u[io_u->ddir]++;
735
736 if (io_u->offset == f->real_file_size)
737 goto sync_done;
738
739 requeue_io_u(td, &io_u);
740 } else {
741sync_done:
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200742 if (__should_check_rate(td, DDIR_READ) ||
743 __should_check_rate(td, DDIR_WRITE) ||
744 __should_check_rate(td, DDIR_TRIM))
Jens Axboe2e1df072012-02-09 11:15:02 +0100745 fio_gettime(&comp_time, NULL);
746
747 ret = io_u_sync_complete(td, io_u, bytes_done);
748 if (ret < 0)
749 break;
750 }
751 break;
752 case FIO_Q_QUEUED:
753 /*
754 * if the engine doesn't have a commit hook,
755 * the io_u is really queued. if it does have such
756 * a hook, it has to call io_u_queued() itself.
757 */
758 if (td->io_ops->commit == NULL)
759 io_u_queued(td, io_u);
760 break;
761 case FIO_Q_BUSY:
762 requeue_io_u(td, &io_u);
763 ret2 = td_io_commit(td);
764 if (ret2 < 0)
765 ret = ret2;
766 break;
767 default:
768 assert(ret < 0);
769 put_io_u(td, io_u);
770 break;
771 }
772
773 if (break_on_this_error(td, ddir, &ret))
774 break;
775
776 /*
777 * See if we need to complete some commands. Note that we
778 * can get BUSY even without IO queued, if the system is
779 * resource starved.
780 */
781 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
782 if (full || !td->o.iodepth_batch_complete) {
783 min_evts = min(td->o.iodepth_batch_complete,
784 td->cur_depth);
Jens Axboe8a74b562012-03-16 13:55:50 +0100785 /*
786 * if the queue is full, we MUST reap at least 1 event
787 */
788 if (full && !min_evts)
Jens Axboe2e1df072012-02-09 11:15:02 +0100789 min_evts = 1;
790
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200791 if (__should_check_rate(td, DDIR_READ) ||
792 __should_check_rate(td, DDIR_WRITE) ||
793 __should_check_rate(td, DDIR_TRIM))
Jens Axboe2e1df072012-02-09 11:15:02 +0100794 fio_gettime(&comp_time, NULL);
795
796 do {
797 ret = io_u_queued_complete(td, min_evts, bytes_done);
798 if (ret < 0)
799 break;
800
801 } while (full && (td->cur_depth > td->o.iodepth_low));
802 }
803
804 if (ret < 0)
805 break;
Jens Axboed5abee02012-10-22 20:36:26 +0200806 if (!ddir_rw_sum(bytes_done) && !(td->io_ops->flags & FIO_NOIO))
Jens Axboe2e1df072012-02-09 11:15:02 +0100807 continue;
808
809 if (!in_ramp_time(td) && should_check_rate(td, bytes_done)) {
810 if (check_min_rate(td, &comp_time, bytes_done)) {
811 if (exitall_on_terminate)
812 fio_terminate_threads(td->groupid);
813 td_verror(td, EIO, "check_min_rate");
814 break;
815 }
816 }
817
818 if (td->o.thinktime) {
819 unsigned long long b;
820
Jens Axboe342f4be2012-09-14 08:59:20 +0200821 b = ddir_rw_sum(td->io_blocks);
Jens Axboe2e1df072012-02-09 11:15:02 +0100822 if (!(b % td->o.thinktime_blocks)) {
823 int left;
824
825 if (td->o.thinktime_spin)
826 usec_spin(td->o.thinktime_spin);
827
828 left = td->o.thinktime - td->o.thinktime_spin;
829 if (left)
830 usec_sleep(td, left);
831 }
832 }
833 }
834
Jens Axboec97f1ad2013-03-28 15:08:49 -0600835 check_update_rusage(td);
836
Jens Axboe2e1df072012-02-09 11:15:02 +0100837 if (td->trim_entries)
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200838 log_err("fio: %lu trim entries leaked?\n", td->trim_entries);
Jens Axboe2e1df072012-02-09 11:15:02 +0100839
840 if (td->o.fill_device && td->error == ENOSPC) {
841 td->error = 0;
842 td->terminate = 1;
843 }
844 if (!td->error) {
845 struct fio_file *f;
846
847 i = td->cur_depth;
848 if (i) {
Jens Axboe5bd5f712013-02-03 14:20:44 +0100849 ret = io_u_queued_complete(td, i, bytes_done);
Jens Axboe2e1df072012-02-09 11:15:02 +0100850 if (td->o.fill_device && td->error == ENOSPC)
851 td->error = 0;
852 }
853
854 if (should_fsync(td) && td->o.end_fsync) {
855 td_set_runstate(td, TD_FSYNCING);
856
857 for_each_file(td, f, i) {
Jens Axboe61ee0f82013-02-11 11:26:55 +0100858 if (!fio_file_fsync(td, f))
Jens Axboe2e1df072012-02-09 11:15:02 +0100859 continue;
Jens Axboe61ee0f82013-02-11 11:26:55 +0100860
861 log_err("fio: end_fsync failed for file %s\n",
862 f->file_name);
Jens Axboe2e1df072012-02-09 11:15:02 +0100863 }
864 }
865 } else
866 cleanup_pending_aio(td);
867
868 /*
869 * stop job if we failed doing any IO
870 */
Jens Axboe342f4be2012-09-14 08:59:20 +0200871 if (!ddir_rw_sum(td->this_io_bytes))
Jens Axboe2e1df072012-02-09 11:15:02 +0100872 td->done = 1;
Jens Axboe100f49f2013-01-23 10:15:57 -0700873
874 return bytes_done[DDIR_WRITE] + bytes_done[DDIR_TRIM];
Jens Axboe2e1df072012-02-09 11:15:02 +0100875}
876
877static void cleanup_io_u(struct thread_data *td)
878{
879 struct flist_head *entry, *n;
880 struct io_u *io_u;
881
882 flist_for_each_safe(entry, n, &td->io_u_freelist) {
883 io_u = flist_entry(entry, struct io_u, list);
884
885 flist_del(&io_u->list);
Jens Axboec73ed242012-12-06 20:30:38 +0100886
887 if (td->io_ops->io_u_free)
888 td->io_ops->io_u_free(td, io_u);
889
Jens Axboe2e1df072012-02-09 11:15:02 +0100890 fio_memfree(io_u, sizeof(*io_u));
891 }
892
893 free_io_mem(td);
894}
895
896static int init_io_u(struct thread_data *td)
897{
898 struct io_u *io_u;
Jens Axboe9c426842012-03-02 21:02:12 +0100899 unsigned int max_bs, min_write;
Jens Axboe2e1df072012-02-09 11:15:02 +0100900 int cl_align, i, max_units;
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200901 int data_xfer = 1;
Jens Axboe2e1df072012-02-09 11:15:02 +0100902 char *p;
903
904 max_units = td->o.iodepth;
Jens Axboe74f4b022013-03-22 22:56:55 -0600905 max_bs = td_max_bs(td);
Jens Axboe9c426842012-03-02 21:02:12 +0100906 min_write = td->o.min_bs[DDIR_WRITE];
Jens Axboe2e1df072012-02-09 11:15:02 +0100907 td->orig_buffer_size = (unsigned long long) max_bs
908 * (unsigned long long) max_units;
909
Dmitry Monakhov88045e02012-09-25 12:12:36 +0200910 if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td)))
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200911 data_xfer = 0;
912
peter changfd8a09b2013-04-24 16:32:25 -0600913 /*
914 * if we may later need to do address alignment, then add any
915 * possible adjustment here so that we don't cause a buffer
916 * overflow later. this adjustment may be too much if we get
917 * lucky and the allocator gives us an aligned address.
918 */
919 if (td->o.odirect || td->o.mem_align || (td->io_ops->flags & FIO_RAWIO))
920 td->orig_buffer_size += page_mask + td->o.mem_align;
921
Jens Axboe2e1df072012-02-09 11:15:02 +0100922 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
923 unsigned long bs;
924
925 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
926 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
927 }
928
929 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
930 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
931 return 1;
932 }
933
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200934 if (data_xfer && allocate_io_mem(td))
Jens Axboe2e1df072012-02-09 11:15:02 +0100935 return 1;
936
937 if (td->o.odirect || td->o.mem_align ||
938 (td->io_ops->flags & FIO_RAWIO))
939 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
940 else
941 p = td->orig_buffer;
942
943 cl_align = os_cache_line_size();
944
945 for (i = 0; i < max_units; i++) {
946 void *ptr;
947
948 if (td->terminate)
949 return 1;
950
951 ptr = fio_memalign(cl_align, sizeof(*io_u));
952 if (!ptr) {
953 log_err("fio: unable to allocate aligned memory\n");
954 break;
955 }
956
957 io_u = ptr;
958 memset(io_u, 0, sizeof(*io_u));
959 INIT_FLIST_HEAD(&io_u->list);
960 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
961
Jens Axboe59d8d0f2012-09-24 14:25:33 +0200962 if (data_xfer) {
Jens Axboe2e1df072012-02-09 11:15:02 +0100963 io_u->buf = p;
964 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
965
966 if (td_write(td))
Jens Axboe9c426842012-03-02 21:02:12 +0100967 io_u_fill_buffer(td, io_u, min_write, max_bs);
Jens Axboe2e1df072012-02-09 11:15:02 +0100968 if (td_write(td) && td->o.verify_pattern_bytes) {
969 /*
970 * Fill the buffer with the pattern if we are
971 * going to be doing writes.
972 */
973 fill_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
974 }
975 }
976
977 io_u->index = i;
978 io_u->flags = IO_U_F_FREE;
979 flist_add(&io_u->list, &td->io_u_freelist);
Jens Axboec73ed242012-12-06 20:30:38 +0100980
981 if (td->io_ops->io_u_init) {
982 int ret = td->io_ops->io_u_init(td, io_u);
983
984 if (ret) {
985 log_err("fio: failed to init engine data: %d\n", ret);
986 return 1;
987 }
988 }
989
Jens Axboe2e1df072012-02-09 11:15:02 +0100990 p += max_bs;
991 }
992
993 return 0;
994}
995
996static int switch_ioscheduler(struct thread_data *td)
997{
998 char tmp[256], tmp2[128];
999 FILE *f;
1000 int ret;
1001
1002 if (td->io_ops->flags & FIO_DISKLESSIO)
1003 return 0;
1004
1005 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
1006
1007 f = fopen(tmp, "r+");
1008 if (!f) {
1009 if (errno == ENOENT) {
1010 log_err("fio: os or kernel doesn't support IO scheduler"
1011 " switching\n");
1012 return 0;
1013 }
1014 td_verror(td, errno, "fopen iosched");
1015 return 1;
1016 }
1017
1018 /*
1019 * Set io scheduler.
1020 */
1021 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
1022 if (ferror(f) || ret != 1) {
1023 td_verror(td, errno, "fwrite");
1024 fclose(f);
1025 return 1;
1026 }
1027
1028 rewind(f);
1029
1030 /*
1031 * Read back and check that the selected scheduler is now the default.
1032 */
1033 ret = fread(tmp, 1, sizeof(tmp), f);
1034 if (ferror(f) || ret < 0) {
1035 td_verror(td, errno, "fread");
1036 fclose(f);
1037 return 1;
1038 }
1039
1040 sprintf(tmp2, "[%s]", td->o.ioscheduler);
1041 if (!strstr(tmp, tmp2)) {
1042 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
1043 td_verror(td, EINVAL, "iosched_switch");
1044 fclose(f);
1045 return 1;
1046 }
1047
1048 fclose(f);
1049 return 0;
1050}
1051
1052static int keep_running(struct thread_data *td)
1053{
Jens Axboe2e1df072012-02-09 11:15:02 +01001054 if (td->done)
1055 return 0;
1056 if (td->o.time_based)
1057 return 1;
1058 if (td->o.loops) {
1059 td->o.loops--;
1060 return 1;
1061 }
1062
Jens Axboeee98e232013-03-19 07:49:35 -06001063 if (td->o.size != -1ULL && ddir_rw_sum(td->io_bytes) < td->o.size) {
Jens Axboe5bd5f712013-02-03 14:20:44 +01001064 uint64_t diff;
1065
1066 /*
1067 * If the difference is less than the minimum IO size, we
1068 * are done.
1069 */
1070 diff = td->o.size - ddir_rw_sum(td->io_bytes);
Jens Axboe74f4b022013-03-22 22:56:55 -06001071 if (diff < td_max_bs(td))
Jens Axboe5bd5f712013-02-03 14:20:44 +01001072 return 0;
1073
Jens Axboe2e1df072012-02-09 11:15:02 +01001074 return 1;
Jens Axboe5bd5f712013-02-03 14:20:44 +01001075 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001076
1077 return 0;
1078}
1079
1080static int exec_string(const char *string)
1081{
1082 int ret, newlen = strlen(string) + 1 + 8;
1083 char *str;
1084
1085 str = malloc(newlen);
1086 sprintf(str, "sh -c %s", string);
1087
1088 ret = system(str);
1089 if (ret == -1)
1090 log_err("fio: exec of cmd <%s> failed\n", str);
1091
1092 free(str);
1093 return ret;
1094}
1095
1096/*
1097 * Entry point for the thread based jobs. The process based jobs end up
1098 * here as well, after a little setup.
1099 */
1100static void *thread_main(void *data)
1101{
1102 unsigned long long elapsed;
1103 struct thread_data *td = data;
Jens Axboe48964732013-04-11 12:01:48 +02001104 struct thread_options *o = &td->o;
Jens Axboe2e1df072012-02-09 11:15:02 +01001105 pthread_condattr_t attr;
1106 int clear_state;
Jens Axboe28727df2012-03-29 08:33:15 +02001107 int ret;
Jens Axboe2e1df072012-02-09 11:15:02 +01001108
Jens Axboe48964732013-04-11 12:01:48 +02001109 if (!o->use_thread) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001110 setsid();
1111 td->pid = getpid();
1112 } else
1113 td->pid = gettid();
1114
Jens Axboe48964732013-04-11 12:01:48 +02001115 fio_local_clock_init(o->use_thread);
Jens Axboe5d879392012-12-18 09:12:27 +01001116
Jens Axboe2e1df072012-02-09 11:15:02 +01001117 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
1118
Jens Axboe122c7722012-03-19 09:13:15 +01001119 if (is_backend)
1120 fio_server_send_start(td);
1121
Jens Axboe2e1df072012-02-09 11:15:02 +01001122 INIT_FLIST_HEAD(&td->io_u_freelist);
1123 INIT_FLIST_HEAD(&td->io_u_busylist);
1124 INIT_FLIST_HEAD(&td->io_u_requeues);
1125 INIT_FLIST_HEAD(&td->io_log_list);
1126 INIT_FLIST_HEAD(&td->io_hist_list);
1127 INIT_FLIST_HEAD(&td->verify_list);
1128 INIT_FLIST_HEAD(&td->trim_list);
Jens Axboe1ae83d42013-01-12 01:44:15 -07001129 INIT_FLIST_HEAD(&td->next_rand_list);
Jens Axboe2e1df072012-02-09 11:15:02 +01001130 pthread_mutex_init(&td->io_u_lock, NULL);
1131 td->io_hist_tree = RB_ROOT;
1132
1133 pthread_condattr_init(&attr);
1134 pthread_cond_init(&td->verify_cond, &attr);
1135 pthread_cond_init(&td->free_cond, &attr);
1136
1137 td_set_runstate(td, TD_INITIALIZED);
1138 dprint(FD_MUTEX, "up startup_mutex\n");
1139 fio_mutex_up(startup_mutex);
1140 dprint(FD_MUTEX, "wait on td->mutex\n");
1141 fio_mutex_down(td->mutex);
1142 dprint(FD_MUTEX, "done waiting on td->mutex\n");
1143
1144 /*
1145 * the ->mutex mutex is now no longer used, close it to avoid
1146 * eating a file descriptor
1147 */
1148 fio_mutex_remove(td->mutex);
Jens Axboe812409e2012-03-19 10:44:29 +01001149 td->mutex = NULL;
Jens Axboe2e1df072012-02-09 11:15:02 +01001150
1151 /*
1152 * A new gid requires privilege, so we need to do this before setting
1153 * the uid.
1154 */
Jens Axboe48964732013-04-11 12:01:48 +02001155 if (o->gid != -1U && setgid(o->gid)) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001156 td_verror(td, errno, "setgid");
1157 goto err;
1158 }
Jens Axboe48964732013-04-11 12:01:48 +02001159 if (o->uid != -1U && setuid(o->uid)) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001160 td_verror(td, errno, "setuid");
1161 goto err;
1162 }
1163
1164 /*
1165 * If we have a gettimeofday() thread, make sure we exclude that
1166 * thread from this job
1167 */
Jens Axboe48964732013-04-11 12:01:48 +02001168 if (o->gtod_cpu)
1169 fio_cpu_clear(&o->cpumask, o->gtod_cpu);
Jens Axboe2e1df072012-02-09 11:15:02 +01001170
1171 /*
1172 * Set affinity first, in case it has an impact on the memory
1173 * allocations.
1174 */
Jens Axboe48964732013-04-11 12:01:48 +02001175 if (o->cpumask_set) {
Jens Axboe28727df2012-03-29 08:33:15 +02001176 ret = fio_setaffinity(td->pid, o->cpumask);
1177 if (ret == -1) {
Jens Axboe48964732013-04-11 12:01:48 +02001178 td_verror(td, errno, "cpu_set_affinity");
1179 goto err;
1180 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001181 }
1182
Jens Axboe67bf9822013-01-10 11:23:19 +01001183#ifdef CONFIG_LIBNUMA
Yufei Rend0b937e2012-10-19 23:11:52 -04001184 /* numa node setup */
Jens Axboe48964732013-04-11 12:01:48 +02001185 if (o->numa_cpumask_set || o->numa_memmask_set) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001186 int ret;
1187
1188 if (numa_available() < 0) {
1189 td_verror(td, errno, "Does not support NUMA API\n");
1190 goto err;
1191 }
1192
Jens Axboe48964732013-04-11 12:01:48 +02001193 if (o->numa_cpumask_set) {
1194 ret = numa_run_on_node_mask(o->numa_cpunodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001195 if (ret == -1) {
1196 td_verror(td, errno, \
1197 "numa_run_on_node_mask failed\n");
1198 goto err;
1199 }
1200 }
1201
Jens Axboe48964732013-04-11 12:01:48 +02001202 if (o->numa_memmask_set) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001203
Jens Axboe48964732013-04-11 12:01:48 +02001204 switch (o->numa_mem_mode) {
Yufei Rend0b937e2012-10-19 23:11:52 -04001205 case MPOL_INTERLEAVE:
Jens Axboe48964732013-04-11 12:01:48 +02001206 numa_set_interleave_mask(o->numa_memnodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001207 break;
1208 case MPOL_BIND:
Jens Axboe48964732013-04-11 12:01:48 +02001209 numa_set_membind(o->numa_memnodesmask);
Yufei Rend0b937e2012-10-19 23:11:52 -04001210 break;
1211 case MPOL_LOCAL:
1212 numa_set_localalloc();
1213 break;
1214 case MPOL_PREFERRED:
Jens Axboe48964732013-04-11 12:01:48 +02001215 numa_set_preferred(o->numa_mem_prefer_node);
Yufei Rend0b937e2012-10-19 23:11:52 -04001216 break;
1217 case MPOL_DEFAULT:
1218 default:
1219 break;
1220 }
1221
1222 }
1223 }
1224#endif
1225
Jens Axboe9a3f1102012-03-28 20:50:15 +02001226 if (fio_pin_memory(td))
1227 goto err;
1228
Jens Axboe2e1df072012-02-09 11:15:02 +01001229 /*
1230 * May alter parameters that init_io_u() will use, so we need to
1231 * do this first.
1232 */
1233 if (init_iolog(td))
1234 goto err;
1235
1236 if (init_io_u(td))
1237 goto err;
1238
Jens Axboe48964732013-04-11 12:01:48 +02001239 if (o->verify_async && verify_async_init(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001240 goto err;
1241
Jens Axboe28727df2012-03-29 08:33:15 +02001242 if (o->ioprio) {
1243 ret = ioprio_set(IOPRIO_WHO_PROCESS, 0, o->ioprio_class, o->ioprio);
1244 if (ret == -1) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001245 td_verror(td, errno, "ioprio_set");
1246 goto err;
1247 }
1248 }
1249
Jens Axboe48964732013-04-11 12:01:48 +02001250 if (o->cgroup && cgroup_setup(td, cgroup_list, &cgroup_mnt))
Jens Axboe2e1df072012-02-09 11:15:02 +01001251 goto err;
1252
Bruce Cran649c10c2012-02-20 07:59:06 +01001253 errno = 0;
Jens Axboe48964732013-04-11 12:01:48 +02001254 if (nice(o->nice) == -1 && errno != 0) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001255 td_verror(td, errno, "nice");
1256 goto err;
1257 }
1258
Jens Axboe48964732013-04-11 12:01:48 +02001259 if (o->ioscheduler && switch_ioscheduler(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001260 goto err;
1261
Jens Axboe48964732013-04-11 12:01:48 +02001262 if (!o->create_serialize && setup_files(td))
Jens Axboe2e1df072012-02-09 11:15:02 +01001263 goto err;
1264
1265 if (td_io_init(td))
1266 goto err;
1267
1268 if (init_random_map(td))
1269 goto err;
1270
Jens Axboe48964732013-04-11 12:01:48 +02001271 if (o->exec_prerun && exec_string(o->exec_prerun))
1272 goto err;
Jens Axboe2e1df072012-02-09 11:15:02 +01001273
Jens Axboe48964732013-04-11 12:01:48 +02001274 if (o->pre_read) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001275 if (pre_read_files(td) < 0)
1276 goto err;
1277 }
1278
Jens Axboedc5bfbb2013-04-10 22:23:40 +02001279 fio_verify_init(td);
1280
Jens Axboe2e1df072012-02-09 11:15:02 +01001281 fio_gettime(&td->epoch, NULL);
Jens Axboe44404c52013-01-24 14:20:09 -07001282 fio_getrusage(&td->ru_start);
Jens Axboe2e1df072012-02-09 11:15:02 +01001283 clear_state = 0;
1284 while (keep_running(td)) {
Jens Axboe100f49f2013-01-23 10:15:57 -07001285 uint64_t verify_bytes;
1286
Jens Axboe2e1df072012-02-09 11:15:02 +01001287 fio_gettime(&td->start, NULL);
1288 memcpy(&td->bw_sample_time, &td->start, sizeof(td->start));
1289 memcpy(&td->iops_sample_time, &td->start, sizeof(td->start));
1290 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
1291
Jens Axboe48964732013-04-11 12:01:48 +02001292 if (o->ratemin[DDIR_READ] || o->ratemin[DDIR_WRITE] ||
1293 o->ratemin[DDIR_TRIM]) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001294 memcpy(&td->lastrate[DDIR_READ], &td->bw_sample_time,
Jens Axboe2e1df072012-02-09 11:15:02 +01001295 sizeof(td->bw_sample_time));
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001296 memcpy(&td->lastrate[DDIR_WRITE], &td->bw_sample_time,
1297 sizeof(td->bw_sample_time));
1298 memcpy(&td->lastrate[DDIR_TRIM], &td->bw_sample_time,
Jens Axboe2e1df072012-02-09 11:15:02 +01001299 sizeof(td->bw_sample_time));
1300 }
1301
1302 if (clear_state)
1303 clear_io_state(td);
1304
1305 prune_io_piece_log(td);
1306
Jens Axboe100f49f2013-01-23 10:15:57 -07001307 verify_bytes = do_io(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001308
1309 clear_state = 1;
1310
1311 if (td_read(td) && td->io_bytes[DDIR_READ]) {
1312 elapsed = utime_since_now(&td->start);
1313 td->ts.runtime[DDIR_READ] += elapsed;
1314 }
1315 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
1316 elapsed = utime_since_now(&td->start);
1317 td->ts.runtime[DDIR_WRITE] += elapsed;
1318 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001319 if (td_trim(td) && td->io_bytes[DDIR_TRIM]) {
1320 elapsed = utime_since_now(&td->start);
1321 td->ts.runtime[DDIR_TRIM] += elapsed;
1322 }
Jens Axboe2e1df072012-02-09 11:15:02 +01001323
1324 if (td->error || td->terminate)
1325 break;
1326
Jens Axboe48964732013-04-11 12:01:48 +02001327 if (!o->do_verify ||
1328 o->verify == VERIFY_NONE ||
Jens Axboe2e1df072012-02-09 11:15:02 +01001329 (td->io_ops->flags & FIO_UNIDIR))
1330 continue;
1331
1332 clear_io_state(td);
1333
1334 fio_gettime(&td->start, NULL);
1335
Jens Axboe100f49f2013-01-23 10:15:57 -07001336 do_verify(td, verify_bytes);
Jens Axboe2e1df072012-02-09 11:15:02 +01001337
1338 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
1339
1340 if (td->error || td->terminate)
1341 break;
1342 }
1343
1344 update_rusage_stat(td);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001345 td->ts.runtime[DDIR_READ] = (td->ts.runtime[DDIR_READ] + 999) / 1000;
1346 td->ts.runtime[DDIR_WRITE] = (td->ts.runtime[DDIR_WRITE] + 999) / 1000;
1347 td->ts.runtime[DDIR_TRIM] = (td->ts.runtime[DDIR_TRIM] + 999) / 1000;
Jens Axboe2e1df072012-02-09 11:15:02 +01001348 td->ts.total_run_time = mtime_since_now(&td->epoch);
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001349 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1350 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1351 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
Jens Axboe2e1df072012-02-09 11:15:02 +01001352
Jens Axboe9a3f1102012-03-28 20:50:15 +02001353 fio_unpin_memory(td);
1354
Jens Axboe2e1df072012-02-09 11:15:02 +01001355 fio_mutex_down(writeout_mutex);
1356 if (td->bw_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001357 if (o->bw_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001358 finish_log_named(td, td->bw_log,
Jens Axboe48964732013-04-11 12:01:48 +02001359 o->bw_log_file, "bw");
Jens Axboe2e1df072012-02-09 11:15:02 +01001360 } else
1361 finish_log(td, td->bw_log, "bw");
1362 }
1363 if (td->lat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001364 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001365 finish_log_named(td, td->lat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001366 o->lat_log_file, "lat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001367 } else
1368 finish_log(td, td->lat_log, "lat");
1369 }
1370 if (td->slat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001371 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001372 finish_log_named(td, td->slat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001373 o->lat_log_file, "slat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001374 } else
1375 finish_log(td, td->slat_log, "slat");
1376 }
1377 if (td->clat_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001378 if (o->lat_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001379 finish_log_named(td, td->clat_log,
Jens Axboe48964732013-04-11 12:01:48 +02001380 o->lat_log_file, "clat");
Jens Axboe2e1df072012-02-09 11:15:02 +01001381 } else
1382 finish_log(td, td->clat_log, "clat");
1383 }
1384 if (td->iops_log) {
Jens Axboe48964732013-04-11 12:01:48 +02001385 if (o->iops_log_file) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001386 finish_log_named(td, td->iops_log,
Jens Axboe48964732013-04-11 12:01:48 +02001387 o->iops_log_file, "iops");
Jens Axboe2e1df072012-02-09 11:15:02 +01001388 } else
1389 finish_log(td, td->iops_log, "iops");
1390 }
1391
1392 fio_mutex_up(writeout_mutex);
Jens Axboe48964732013-04-11 12:01:48 +02001393 if (o->exec_postrun)
1394 exec_string(o->exec_postrun);
Jens Axboe2e1df072012-02-09 11:15:02 +01001395
1396 if (exitall_on_terminate)
1397 fio_terminate_threads(td->groupid);
1398
1399err:
1400 if (td->error)
1401 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
1402 td->verror);
1403
Jens Axboe48964732013-04-11 12:01:48 +02001404 if (o->verify_async)
Jens Axboe2e1df072012-02-09 11:15:02 +01001405 verify_async_exit(td);
1406
1407 close_and_free_files(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001408 cleanup_io_u(td);
Bruce Cran32dbca22012-12-06 20:32:40 +01001409 close_ioengine(td);
Jens Axboe2e1df072012-02-09 11:15:02 +01001410 cgroup_shutdown(td, &cgroup_mnt);
1411
Jens Axboe48964732013-04-11 12:01:48 +02001412 if (o->cpumask_set) {
1413 int ret = fio_cpuset_exit(&o->cpumask);
Jens Axboe2e1df072012-02-09 11:15:02 +01001414
1415 td_verror(td, ret, "fio_cpuset_exit");
1416 }
1417
1418 /*
1419 * do this very late, it will log file closing as well
1420 */
Jens Axboe48964732013-04-11 12:01:48 +02001421 if (o->write_iolog_file)
Jens Axboe2e1df072012-02-09 11:15:02 +01001422 write_iolog_close(td);
1423
Jens Axboec97f1ad2013-03-28 15:08:49 -06001424 fio_mutex_remove(td->rusage_sem);
1425 td->rusage_sem = NULL;
1426
Jens Axboe2e1df072012-02-09 11:15:02 +01001427 td_set_runstate(td, TD_EXITED);
Bruce Crane43606c2012-02-20 09:34:24 +01001428 return (void *) (uintptr_t) td->error;
Jens Axboe2e1df072012-02-09 11:15:02 +01001429}
1430
1431
1432/*
1433 * We cannot pass the td data into a forked process, so attach the td and
1434 * pass it to the thread worker.
1435 */
1436static int fork_main(int shmid, int offset)
1437{
1438 struct thread_data *td;
1439 void *data, *ret;
1440
1441#ifndef __hpux
1442 data = shmat(shmid, NULL, 0);
1443 if (data == (void *) -1) {
1444 int __err = errno;
1445
1446 perror("shmat");
1447 return __err;
1448 }
1449#else
1450 /*
1451 * HP-UX inherits shm mappings?
1452 */
1453 data = threads;
1454#endif
1455
1456 td = data + offset * sizeof(struct thread_data);
1457 ret = thread_main(td);
1458 shmdt(data);
Bruce Crane43606c2012-02-20 09:34:24 +01001459 return (int) (uintptr_t) ret;
Jens Axboe2e1df072012-02-09 11:15:02 +01001460}
1461
1462/*
1463 * Run over the job map and reap the threads that have exited, if any.
1464 */
1465static void reap_threads(unsigned int *nr_running, unsigned int *t_rate,
1466 unsigned int *m_rate)
1467{
1468 struct thread_data *td;
1469 unsigned int cputhreads, realthreads, pending;
1470 int i, status, ret;
1471
1472 /*
1473 * reap exited threads (TD_EXITED -> TD_REAPED)
1474 */
1475 realthreads = pending = cputhreads = 0;
1476 for_each_td(td, i) {
1477 int flags = 0;
1478
1479 /*
1480 * ->io_ops is NULL for a thread that has closed its
1481 * io engine
1482 */
1483 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
1484 cputhreads++;
1485 else
1486 realthreads++;
1487
1488 if (!td->pid) {
1489 pending++;
1490 continue;
1491 }
1492 if (td->runstate == TD_REAPED)
1493 continue;
1494 if (td->o.use_thread) {
1495 if (td->runstate == TD_EXITED) {
1496 td_set_runstate(td, TD_REAPED);
1497 goto reaped;
1498 }
1499 continue;
1500 }
1501
1502 flags = WNOHANG;
1503 if (td->runstate == TD_EXITED)
1504 flags = 0;
1505
1506 /*
1507 * check if someone quit or got killed in an unusual way
1508 */
1509 ret = waitpid(td->pid, &status, flags);
1510 if (ret < 0) {
1511 if (errno == ECHILD) {
1512 log_err("fio: pid=%d disappeared %d\n",
1513 (int) td->pid, td->runstate);
Jens Axboea5e371a2012-04-02 09:47:09 -07001514 td->sig = ECHILD;
Jens Axboe2e1df072012-02-09 11:15:02 +01001515 td_set_runstate(td, TD_REAPED);
1516 goto reaped;
1517 }
1518 perror("waitpid");
1519 } else if (ret == td->pid) {
1520 if (WIFSIGNALED(status)) {
1521 int sig = WTERMSIG(status);
1522
Jens Axboe36d80bc2012-11-30 21:46:06 +01001523 if (sig != SIGTERM && sig != SIGUSR2)
Jens Axboe2e1df072012-02-09 11:15:02 +01001524 log_err("fio: pid=%d, got signal=%d\n",
1525 (int) td->pid, sig);
Jens Axboea5e371a2012-04-02 09:47:09 -07001526 td->sig = sig;
Jens Axboe2e1df072012-02-09 11:15:02 +01001527 td_set_runstate(td, TD_REAPED);
1528 goto reaped;
1529 }
1530 if (WIFEXITED(status)) {
1531 if (WEXITSTATUS(status) && !td->error)
1532 td->error = WEXITSTATUS(status);
1533
1534 td_set_runstate(td, TD_REAPED);
1535 goto reaped;
1536 }
1537 }
1538
1539 /*
1540 * thread is not dead, continue
1541 */
1542 pending++;
1543 continue;
1544reaped:
1545 (*nr_running)--;
Jens Axboe342f4be2012-09-14 08:59:20 +02001546 (*m_rate) -= ddir_rw_sum(td->o.ratemin);
1547 (*t_rate) -= ddir_rw_sum(td->o.rate);
Jens Axboe2e1df072012-02-09 11:15:02 +01001548 if (!td->pid)
1549 pending--;
1550
1551 if (td->error)
1552 exit_value++;
1553
1554 done_secs += mtime_since_now(&td->epoch) / 1000;
1555 }
1556
1557 if (*nr_running == cputhreads && !pending && realthreads)
1558 fio_terminate_threads(TERMINATE_ALL);
1559}
1560
Jens Axboe2e1df072012-02-09 11:15:02 +01001561/*
1562 * Main function for kicking off and reaping jobs, as needed.
1563 */
1564static void run_threads(void)
1565{
1566 struct thread_data *td;
1567 unsigned long spent;
1568 unsigned int i, todo, nr_running, m_rate, t_rate, nr_started;
1569
Jens Axboe2e1df072012-02-09 11:15:02 +01001570 if (fio_gtod_offload && fio_start_gtod_thread())
1571 return;
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001572
1573 fio_idle_prof_init();
Jens Axboe2e1df072012-02-09 11:15:02 +01001574
1575 set_sig_handlers();
1576
Jens Axboe3a5f6bd2013-04-11 12:04:38 +02001577 nr_thread = nr_process = 0;
1578 for_each_td(td, i) {
1579 if (td->o.use_thread)
1580 nr_thread++;
1581 else
1582 nr_process++;
1583 }
1584
Jens Axboef3afa572012-09-17 13:34:16 +02001585 if (output_format == FIO_OUTPUT_NORMAL) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001586 log_info("Starting ");
1587 if (nr_thread)
1588 log_info("%d thread%s", nr_thread,
1589 nr_thread > 1 ? "s" : "");
1590 if (nr_process) {
1591 if (nr_thread)
1592 log_info(" and ");
1593 log_info("%d process%s", nr_process,
1594 nr_process > 1 ? "es" : "");
1595 }
1596 log_info("\n");
1597 fflush(stdout);
1598 }
1599
1600 todo = thread_number;
1601 nr_running = 0;
1602 nr_started = 0;
1603 m_rate = t_rate = 0;
1604
1605 for_each_td(td, i) {
1606 print_status_init(td->thread_number - 1);
1607
1608 if (!td->o.create_serialize)
1609 continue;
1610
1611 /*
1612 * do file setup here so it happens sequentially,
1613 * we don't want X number of threads getting their
1614 * client data interspersed on disk
1615 */
1616 if (setup_files(td)) {
1617 exit_value++;
1618 if (td->error)
1619 log_err("fio: pid=%d, err=%d/%s\n",
1620 (int) td->pid, td->error, td->verror);
1621 td_set_runstate(td, TD_REAPED);
1622 todo--;
1623 } else {
1624 struct fio_file *f;
1625 unsigned int j;
1626
1627 /*
1628 * for sharing to work, each job must always open
1629 * its own files. so close them, if we opened them
1630 * for creation
1631 */
1632 for_each_file(td, f, j) {
1633 if (fio_file_open(f))
1634 td_io_close_file(td, f);
1635 }
1636 }
1637 }
1638
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001639 /* start idle threads before io threads start to run */
1640 fio_idle_prof_start();
1641
Jens Axboe2e1df072012-02-09 11:15:02 +01001642 set_genesis_time();
1643
1644 while (todo) {
1645 struct thread_data *map[REAL_MAX_JOBS];
1646 struct timeval this_start;
1647 int this_jobs = 0, left;
1648
1649 /*
1650 * create threads (TD_NOT_CREATED -> TD_CREATED)
1651 */
1652 for_each_td(td, i) {
1653 if (td->runstate != TD_NOT_CREATED)
1654 continue;
1655
1656 /*
1657 * never got a chance to start, killed by other
1658 * thread for some reason
1659 */
1660 if (td->terminate) {
1661 todo--;
1662 continue;
1663 }
1664
1665 if (td->o.start_delay) {
1666 spent = mtime_since_genesis();
1667
1668 if (td->o.start_delay * 1000 > spent)
1669 continue;
1670 }
1671
1672 if (td->o.stonewall && (nr_started || nr_running)) {
1673 dprint(FD_PROCESS, "%s: stonewall wait\n",
1674 td->o.name);
1675 break;
1676 }
1677
1678 init_disk_util(td);
1679
Jens Axboec97f1ad2013-03-28 15:08:49 -06001680 td->rusage_sem = fio_mutex_init(FIO_MUTEX_LOCKED);
1681 td->update_rusage = 0;
1682
Jens Axboe2e1df072012-02-09 11:15:02 +01001683 /*
1684 * Set state to created. Thread will transition
1685 * to TD_INITIALIZED when it's done setting up.
1686 */
1687 td_set_runstate(td, TD_CREATED);
1688 map[this_jobs++] = td;
1689 nr_started++;
1690
1691 if (td->o.use_thread) {
1692 int ret;
1693
1694 dprint(FD_PROCESS, "will pthread_create\n");
1695 ret = pthread_create(&td->thread, NULL,
1696 thread_main, td);
1697 if (ret) {
1698 log_err("pthread_create: %s\n",
1699 strerror(ret));
1700 nr_started--;
1701 break;
1702 }
1703 ret = pthread_detach(td->thread);
1704 if (ret)
1705 log_err("pthread_detach: %s",
1706 strerror(ret));
1707 } else {
1708 pid_t pid;
1709 dprint(FD_PROCESS, "will fork\n");
1710 pid = fork();
1711 if (!pid) {
1712 int ret = fork_main(shm_id, i);
1713
1714 _exit(ret);
1715 } else if (i == fio_debug_jobno)
1716 *fio_debug_jobp = pid;
1717 }
1718 dprint(FD_MUTEX, "wait on startup_mutex\n");
1719 if (fio_mutex_down_timeout(startup_mutex, 10)) {
1720 log_err("fio: job startup hung? exiting.\n");
1721 fio_terminate_threads(TERMINATE_ALL);
1722 fio_abort = 1;
1723 nr_started--;
1724 break;
1725 }
1726 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1727 }
1728
1729 /*
1730 * Wait for the started threads to transition to
1731 * TD_INITIALIZED.
1732 */
1733 fio_gettime(&this_start, NULL);
1734 left = this_jobs;
1735 while (left && !fio_abort) {
1736 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1737 break;
1738
1739 usleep(100000);
1740
1741 for (i = 0; i < this_jobs; i++) {
1742 td = map[i];
1743 if (!td)
1744 continue;
1745 if (td->runstate == TD_INITIALIZED) {
1746 map[i] = NULL;
1747 left--;
1748 } else if (td->runstate >= TD_EXITED) {
1749 map[i] = NULL;
1750 left--;
1751 todo--;
1752 nr_running++; /* work-around... */
1753 }
1754 }
1755 }
1756
1757 if (left) {
Jens Axboe4e87c372012-02-15 14:27:08 +01001758 log_err("fio: %d job%s failed to start\n", left,
1759 left > 1 ? "s" : "");
Jens Axboe2e1df072012-02-09 11:15:02 +01001760 for (i = 0; i < this_jobs; i++) {
1761 td = map[i];
1762 if (!td)
1763 continue;
1764 kill(td->pid, SIGTERM);
1765 }
1766 break;
1767 }
1768
1769 /*
1770 * start created threads (TD_INITIALIZED -> TD_RUNNING).
1771 */
1772 for_each_td(td, i) {
1773 if (td->runstate != TD_INITIALIZED)
1774 continue;
1775
1776 if (in_ramp_time(td))
1777 td_set_runstate(td, TD_RAMP);
1778 else
1779 td_set_runstate(td, TD_RUNNING);
1780 nr_running++;
1781 nr_started--;
Jens Axboe342f4be2012-09-14 08:59:20 +02001782 m_rate += ddir_rw_sum(td->o.ratemin);
1783 t_rate += ddir_rw_sum(td->o.rate);
Jens Axboe2e1df072012-02-09 11:15:02 +01001784 todo--;
1785 fio_mutex_up(td->mutex);
1786 }
1787
1788 reap_threads(&nr_running, &t_rate, &m_rate);
1789
Jens Axboe122c7722012-03-19 09:13:15 +01001790 if (todo)
1791 usleep(100000);
Jens Axboe2e1df072012-02-09 11:15:02 +01001792 }
1793
1794 while (nr_running) {
1795 reap_threads(&nr_running, &t_rate, &m_rate);
Jens Axboe122c7722012-03-19 09:13:15 +01001796 usleep(10000);
Jens Axboe2e1df072012-02-09 11:15:02 +01001797 }
1798
Huadong Liuf2a2ce02013-01-30 13:22:24 +01001799 fio_idle_prof_stop();
1800
Jens Axboe2e1df072012-02-09 11:15:02 +01001801 update_io_ticks();
Jens Axboe2e1df072012-02-09 11:15:02 +01001802}
1803
Jens Axboe9ec77792012-08-02 08:27:41 +02001804void wait_for_disk_thread_exit(void)
1805{
1806 fio_mutex_down(disk_thread_mutex);
1807}
1808
Jens Axboe27357182012-09-27 11:31:50 +02001809static void free_disk_util(void)
1810{
1811 disk_util_start_exit();
1812 wait_for_disk_thread_exit();
1813 disk_util_prune_entries();
1814}
1815
Jens Axboe2e1df072012-02-09 11:15:02 +01001816static void *disk_thread_main(void *data)
1817{
Jens Axboe9ec77792012-08-02 08:27:41 +02001818 int ret = 0;
1819
Jens Axboe2e1df072012-02-09 11:15:02 +01001820 fio_mutex_up(startup_mutex);
1821
Jens Axboe9ec77792012-08-02 08:27:41 +02001822 while (threads && !ret) {
Jens Axboe2e1df072012-02-09 11:15:02 +01001823 usleep(DISK_UTIL_MSEC * 1000);
1824 if (!threads)
1825 break;
Jens Axboe9ec77792012-08-02 08:27:41 +02001826 ret = update_io_ticks();
Jens Axboe2e1df072012-02-09 11:15:02 +01001827
1828 if (!is_backend)
1829 print_thread_status();
1830 }
1831
Jens Axboe9ec77792012-08-02 08:27:41 +02001832 fio_mutex_up(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001833 return NULL;
1834}
1835
1836static int create_disk_util_thread(void)
1837{
1838 int ret;
1839
Jens Axboe9ec77792012-08-02 08:27:41 +02001840 setup_disk_util();
1841
Jens Axboe521da522012-08-02 11:21:36 +02001842 disk_thread_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboe9ec77792012-08-02 08:27:41 +02001843
Jens Axboe2e1df072012-02-09 11:15:02 +01001844 ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
1845 if (ret) {
Jens Axboe9ec77792012-08-02 08:27:41 +02001846 fio_mutex_remove(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001847 log_err("Can't create disk util thread: %s\n", strerror(ret));
1848 return 1;
1849 }
1850
1851 ret = pthread_detach(disk_util_thread);
1852 if (ret) {
Jens Axboe9ec77792012-08-02 08:27:41 +02001853 fio_mutex_remove(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001854 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
1855 return 1;
1856 }
1857
1858 dprint(FD_MUTEX, "wait on startup_mutex\n");
1859 fio_mutex_down(startup_mutex);
1860 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
1861 return 0;
1862}
1863
Jens Axboe2e1df072012-02-09 11:15:02 +01001864int fio_backend(void)
1865{
1866 struct thread_data *td;
1867 int i;
1868
1869 if (exec_profile) {
1870 if (load_profile(exec_profile))
1871 return 1;
1872 free(exec_profile);
1873 exec_profile = NULL;
1874 }
1875 if (!thread_number)
1876 return 0;
1877
1878 if (write_bw_log) {
Jens Axboe5a812f92012-03-14 11:39:13 +01001879 setup_log(&agg_io_log[DDIR_READ], 0, IO_LOG_TYPE_BW);
1880 setup_log(&agg_io_log[DDIR_WRITE], 0, IO_LOG_TYPE_BW);
1881 setup_log(&agg_io_log[DDIR_TRIM], 0, IO_LOG_TYPE_BW);
Jens Axboe2e1df072012-02-09 11:15:02 +01001882 }
1883
Jens Axboe521da522012-08-02 11:21:36 +02001884 startup_mutex = fio_mutex_init(FIO_MUTEX_LOCKED);
Jens Axboe2e1df072012-02-09 11:15:02 +01001885 if (startup_mutex == NULL)
1886 return 1;
Jens Axboe521da522012-08-02 11:21:36 +02001887 writeout_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
Jens Axboe2e1df072012-02-09 11:15:02 +01001888 if (writeout_mutex == NULL)
1889 return 1;
1890
1891 set_genesis_time();
1892 create_disk_util_thread();
1893
1894 cgroup_list = smalloc(sizeof(*cgroup_list));
1895 INIT_FLIST_HEAD(cgroup_list);
1896
1897 run_threads();
1898
1899 if (!fio_abort) {
1900 show_run_stats();
1901 if (write_bw_log) {
1902 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1903 __finish_log(agg_io_log[DDIR_WRITE],
1904 "agg-write_bw.log");
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001905 __finish_log(agg_io_log[DDIR_TRIM],
1906 "agg-write_bw.log");
Jens Axboe2e1df072012-02-09 11:15:02 +01001907 }
1908 }
1909
1910 for_each_td(td, i)
1911 fio_options_free(td);
1912
Jens Axboea462bae2012-03-30 08:33:27 +02001913 free_disk_util();
Jens Axboe2e1df072012-02-09 11:15:02 +01001914 cgroup_kill(cgroup_list);
1915 sfree(cgroup_list);
1916 sfree(cgroup_mnt);
1917
1918 fio_mutex_remove(startup_mutex);
1919 fio_mutex_remove(writeout_mutex);
Jens Axboe9ec77792012-08-02 08:27:41 +02001920 fio_mutex_remove(disk_thread_mutex);
Jens Axboe2e1df072012-02-09 11:15:02 +01001921 return exit_value;
1922}