blob: 5358af2c8a8dc7bea5234c329bdf39087679a15f [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboeaae22ca2006-09-05 10:46:22 +02005 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
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 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027#include <signal.h>
28#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010029#include <locale.h>
Jens Axboe36167d82007-02-18 05:41:31 +010030#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010031#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010035#include <sys/mman.h>
36
37#include "fio.h"
38#include "os.h"
39
Jens Axboe29d610e2007-02-06 13:25:33 +010040static unsigned long page_mask;
41#define ALIGN(buf) \
42 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010043
44int groupid = 0;
45int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010046int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020047int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010048
Jens Axboebbfd6b02006-06-07 19:42:54 +020049static volatile int startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010050static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010051static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboebb3884d2007-01-17 17:23:11 +110053struct io_log *agg_io_log[2];
54
Jens Axboeebac4652005-12-08 15:25:21 +010055#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020056#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboe6ce15a32007-01-12 09:04:41 +010058static inline void td_set_runstate(struct thread_data *td, int runstate)
59{
60 td->runstate = runstate;
61}
62
63static void terminate_threads(int group_id, int forced_kill)
Jens Axboeebac4652005-12-08 15:25:21 +010064{
Jens Axboe34572e22006-10-20 09:33:18 +020065 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010066 int i;
67
Jens Axboe34572e22006-10-20 09:33:18 +020068 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010069 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
70 td->terminate = 1;
71 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010072 if (forced_kill)
73 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010074 }
75 }
76}
77
78static void sig_handler(int sig)
79{
80 switch (sig) {
81 case SIGALRM:
82 update_io_ticks();
83 disk_util_timer_arm();
84 print_thread_status();
85 break;
86 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010088 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010089 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010090 break;
91 }
92}
93
Jens Axboe906c8d72006-06-13 09:37:56 +020094/*
Jens Axboe906c8d72006-06-13 09:37:56 +020095 * Check if we are above the minimum rate given.
96 */
Jens Axboeebac4652005-12-08 15:25:21 +010097static int check_min_rate(struct thread_data *td, struct timeval *now)
98{
99 unsigned long spent;
100 unsigned long rate;
101 int ddir = td->ddir;
102
103 /*
104 * allow a 2 second settle period in the beginning
105 */
106 if (mtime_since(&td->start, now) < 2000)
107 return 0;
108
109 /*
110 * if rate blocks is set, sample is running
111 */
112 if (td->rate_bytes) {
113 spent = mtime_since(&td->lastrate, now);
114 if (spent < td->ratecycle)
115 return 0;
116
117 rate = (td->this_io_bytes[ddir] - td->rate_bytes) / spent;
118 if (rate < td->ratemin) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100119 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
Jens Axboeebac4652005-12-08 15:25:21 +0100120 return 1;
121 }
122 }
123
124 td->rate_bytes = td->this_io_bytes[ddir];
125 memcpy(&td->lastrate, now, sizeof(*now));
126 return 0;
127}
128
129static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
130{
131 if (!td->timeout)
132 return 0;
133 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
134 return 1;
135
136 return 0;
137}
138
Jens Axboe53cdc682006-10-18 11:50:58 +0200139static struct fio_file *get_next_file(struct thread_data *td)
140{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200141 unsigned int old_next_file = td->next_file;
Jens Axboeb2a15192006-10-18 14:10:42 +0200142 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200143
Jens Axboeb2a15192006-10-18 14:10:42 +0200144 do {
145 f = &td->files[td->next_file];
146
147 td->next_file++;
148 if (td->next_file >= td->nr_files)
149 td->next_file = 0;
150
151 if (f->fd != -1)
152 break;
153
154 f = NULL;
155 } while (td->next_file != old_next_file);
Jens Axboe53cdc682006-10-18 11:50:58 +0200156
157 return f;
158}
159
Jens Axboe906c8d72006-06-13 09:37:56 +0200160/*
161 * When job exits, we can cancel the in-flight IO if we are using async
162 * io. Attempt to do so.
163 */
Jens Axboeebac4652005-12-08 15:25:21 +0100164static void cleanup_pending_aio(struct thread_data *td)
165{
166 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
167 struct list_head *entry, *n;
168 struct io_completion_data icd;
169 struct io_u *io_u;
170 int r;
171
172 /*
173 * get immediately available events, if any
174 */
Jens Axboe45bee282006-10-18 15:26:44 +0200175 r = td_io_getevents(td, 0, td->cur_depth, &ts);
Jens Axboeebac4652005-12-08 15:25:21 +0100176 if (r > 0) {
177 icd.nr = r;
178 ios_completed(td, &icd);
179 }
180
181 /*
182 * now cancel remaining active events
183 */
Jens Axboe2866c822006-10-09 15:57:48 +0200184 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100185 list_for_each_safe(entry, n, &td->io_u_busylist) {
186 io_u = list_entry(entry, struct io_u, list);
187
Jens Axboe2866c822006-10-09 15:57:48 +0200188 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100189 if (!r)
190 put_io_u(td, io_u);
191 }
192 }
193
194 if (td->cur_depth) {
Jens Axboe45bee282006-10-18 15:26:44 +0200195 r = td_io_getevents(td, td->cur_depth, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100196 if (r > 0) {
197 icd.nr = r;
198 ios_completed(td, &icd);
199 }
200 }
201}
202
Jens Axboe906c8d72006-06-13 09:37:56 +0200203/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200204 * Helper to handle the final sync of a file. Works just like the normal
205 * io path, just does everything sync.
206 */
207static int fio_io_sync(struct thread_data *td, struct fio_file *f)
208{
209 struct io_u *io_u = __get_io_u(td);
210 struct io_completion_data icd;
211 int ret;
212
213 if (!io_u)
214 return 1;
215
216 io_u->ddir = DDIR_SYNC;
217 io_u->file = f;
218
219 if (td_io_prep(td, io_u)) {
220 put_io_u(td, io_u);
221 return 1;
222 }
223
224 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100225 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200226 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200227 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200228 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100229 } else if (ret == FIO_Q_QUEUED) {
230 ret = td_io_getevents(td, 1, td->cur_depth, NULL);
231 if (ret < 0) {
232 td_verror(td, ret);
233 return 1;
234 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200235
Jens Axboe36167d82007-02-18 05:41:31 +0100236 icd.nr = ret;
237 ios_completed(td, &icd);
238 if (icd.error) {
239 td_verror(td, icd.error);
240 return 1;
241 }
242 } else if (ret == FIO_Q_COMPLETED) {
243 if (io_u->error) {
244 td_verror(td, io_u->error);
245 return 1;
246 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200247
Jens Axboe36167d82007-02-18 05:41:31 +0100248 init_icd(&icd);
249 io_completed(td, io_u, &icd);
250 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200251 }
252
253 return 0;
254}
255
256/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200257 * The main verify engine. Runs over the writes we previusly submitted,
258 * reads the blocks back in, and checks the crc/md5 of the data.
259 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100260static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100261{
Jens Axboe53cdc682006-10-18 11:50:58 +0200262 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100263 struct io_u *io_u;
Jens Axboee5b401d2006-10-18 16:03:40 +0200264 int ret, i;
265
266 /*
267 * sync io first and invalidate cache, to make sure we really
268 * read from disk.
269 */
270 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200271 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200272 file_invalidate_cache(td, f);
273 }
Jens Axboeebac4652005-12-08 15:25:21 +0100274
275 td_set_runstate(td, TD_VERIFYING);
276
Jens Axboe36167d82007-02-18 05:41:31 +0100277 io_u = NULL;
278 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100279 io_u = __get_io_u(td);
280 if (!io_u)
281 break;
282
Jens Axboe36167d82007-02-18 05:41:31 +0100283 if (runtime_exceeded(td, &io_u->start_time))
Jens Axboe53cdc682006-10-18 11:50:58 +0200284 break;
285
Jens Axboe36167d82007-02-18 05:41:31 +0100286 if (get_next_verify(td, io_u))
Jens Axboeebac4652005-12-08 15:25:21 +0100287 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100288
Jens Axboe36167d82007-02-18 05:41:31 +0100289 if (td_io_prep(td, io_u))
290 break;
291
292requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200293 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100294
295 switch (ret) {
296 case FIO_Q_COMPLETED:
297 if (io_u->error)
298 ret = io_u->error;
299 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
300 int bytes = io_u->xfer_buflen - io_u->resid;
301
302 io_u->xfer_buflen = io_u->resid;
303 io_u->xfer_buf += bytes;
304 goto requeue;
305 }
306 if (do_io_u_verify(td, &io_u)) {
307 ret = -EIO;
308 break;
309 }
310 continue;
311 case FIO_Q_QUEUED:
312 break;
313 default:
314 assert(ret < 0);
315 td_verror(td, ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100316 break;
317 }
318
319 /*
Jens Axboe36167d82007-02-18 05:41:31 +0100320 * We get here for a queued request, in the future we
321 * want to later make this take full advantage of
322 * keeping IO in flight while verifying others.
Jens Axboeebac4652005-12-08 15:25:21 +0100323 */
Jens Axboe45bee282006-10-18 15:26:44 +0200324 ret = td_io_getevents(td, 1, 1, NULL);
Jens Axboe36167d82007-02-18 05:41:31 +0100325 if (ret < 0)
Jens Axboeebac4652005-12-08 15:25:21 +0100326 break;
327
Jens Axboe36167d82007-02-18 05:41:31 +0100328 assert(ret == 1);
329 io_u = td->io_ops->event(td, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100330
Jens Axboe36167d82007-02-18 05:41:31 +0100331 if (do_io_u_verify(td, &io_u))
332 break;
333 }
334
335 if (io_u)
336 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100337
338 if (td->cur_depth)
339 cleanup_pending_aio(td);
340
341 td_set_runstate(td, TD_RUNNING);
342}
343
Jens Axboe32cd46a2006-06-07 13:40:40 +0200344/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200345 * Not really an io thread, all it does is burn CPU cycles in the specified
346 * manner.
347 */
348static void do_cpuio(struct thread_data *td)
349{
350 struct timeval e;
351 int split = 100 / td->cpuload;
352 int i = 0;
353
354 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100355 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200356
357 if (runtime_exceeded(td, &e))
358 break;
359
360 if (!(i % split))
361 __usec_sleep(10000);
362 else
363 usec_sleep(td, 10000);
364
365 i++;
366 }
367}
368
369/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200370 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200371 * and reaps them, checking for rate and errors along the way.
372 */
Jens Axboeebac4652005-12-08 15:25:21 +0100373static void do_io(struct thread_data *td)
374{
375 struct io_completion_data icd;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100376 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100377 unsigned long usec;
Jens Axboe53cdc682006-10-18 11:50:58 +0200378 struct fio_file *f;
Jens Axboe84585002006-10-19 20:26:22 +0200379 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100380
Jens Axboe5853e5a2006-06-08 14:41:05 +0200381 td_set_runstate(td, TD_RUNNING);
382
Jens Axboe39514142007-02-12 18:49:58 +0100383 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboeebac4652005-12-08 15:25:21 +0100384 struct timespec *timeout;
Jens Axboe84585002006-10-19 20:26:22 +0200385 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100386 struct io_u *io_u;
387
388 if (td->terminate)
389 break;
390
Jens Axboe53cdc682006-10-18 11:50:58 +0200391 f = get_next_file(td);
392 if (!f)
393 break;
394
395 io_u = get_io_u(td, f);
Jens Axboeebac4652005-12-08 15:25:21 +0100396 if (!io_u)
397 break;
398
399 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboecec6b552007-02-06 20:15:38 +0100400requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200401 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100402
403 switch (ret) {
404 case FIO_Q_COMPLETED:
405 if (io_u->error) {
406 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100407 break;
408 }
Jens Axboe36167d82007-02-18 05:41:31 +0100409 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
410 int bytes = io_u->xfer_buflen - io_u->resid;
411
412 io_u->xfer_buflen = io_u->resid;
413 io_u->xfer_buf += bytes;
414 goto requeue;
415 }
416 init_icd(&icd);
417 io_completed(td, io_u, &icd);
418 put_io_u(td, io_u);
419 break;
420 case FIO_Q_QUEUED:
421 break;
422 default:
423 assert(ret < 0);
424 put_io_u(td, io_u);
425 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100426 }
427
Jens Axboe36167d82007-02-18 05:41:31 +0100428 if (ret < 0)
429 break;
430
Jens Axboeebac4652005-12-08 15:25:21 +0100431 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
432
Jens Axboe36167d82007-02-18 05:41:31 +0100433 if (ret == FIO_Q_QUEUED) {
434 if (td->cur_depth < td->iodepth) {
435 struct timespec ts;
Jens Axboe8d7ad8d2007-01-09 21:22:18 +0100436
Jens Axboe36167d82007-02-18 05:41:31 +0100437 ts.tv_sec = 0;
438 ts.tv_nsec = 0;
439 timeout = &ts;
440 min_evts = 0;
441 } else {
442 timeout = NULL;
443 min_evts = 1;
444 }
Jens Axboeebac4652005-12-08 15:25:21 +0100445
Jens Axboe36167d82007-02-18 05:41:31 +0100446 ret = td_io_getevents(td, min_evts, td->cur_depth, timeout);
447 if (ret < 0) {
448 td_verror(td, ret);
449 break;
450 } else if (!ret)
451 continue;
Jens Axboeebac4652005-12-08 15:25:21 +0100452
Jens Axboe36167d82007-02-18 05:41:31 +0100453 icd.nr = ret;
454 ios_completed(td, &icd);
455 if (icd.error) {
456 td_verror(td, icd.error);
457 break;
458 }
Jens Axboeebac4652005-12-08 15:25:21 +0100459 }
460
461 /*
462 * the rate is batched for now, it should work for batches
463 * of completions except the very first one which may look
464 * a little bursty
465 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100466 usec = utime_since(&s, &icd.time);
Jens Axboeebac4652005-12-08 15:25:21 +0100467
Jens Axboea00735e2006-11-03 08:58:08 +0100468 rate_throttle(td, usec, icd.bytes_done[td->ddir], td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100469
Jens Axboe02bcaa82006-11-24 10:42:00 +0100470 if (check_min_rate(td, &icd.time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100471 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100472 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100473 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100474 break;
475 }
476
Jens Axboe02bcaa82006-11-24 10:42:00 +0100477 if (runtime_exceeded(td, &icd.time))
Jens Axboeebac4652005-12-08 15:25:21 +0100478 break;
479
Jens Axboe9c1f7432007-01-03 20:43:19 +0100480 if (td->thinktime) {
481 unsigned long long b;
482
483 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100484 if (!(b % td->thinktime_blocks)) {
485 int left;
486
487 if (td->thinktime_spin)
488 __usec_sleep(td->thinktime_spin);
489
490 left = td->thinktime - td->thinktime_spin;
491 if (left)
492 usec_sleep(td, left);
493 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100494 }
Jens Axboeebac4652005-12-08 15:25:21 +0100495 }
496
Jens Axboe4d2413c2006-11-23 11:58:59 +0100497 if (!td->error) {
Jens Axboe84585002006-10-19 20:26:22 +0200498 if (td->cur_depth)
499 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100500
Jens Axboe84585002006-10-19 20:26:22 +0200501 if (should_fsync(td) && td->end_fsync) {
502 td_set_runstate(td, TD_FSYNCING);
503 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200504 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200505 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200506 }
Jens Axboeebac4652005-12-08 15:25:21 +0100507}
508
Jens Axboeebac4652005-12-08 15:25:21 +0100509static void cleanup_io_u(struct thread_data *td)
510{
511 struct list_head *entry, *n;
512 struct io_u *io_u;
513
514 list_for_each_safe(entry, n, &td->io_u_freelist) {
515 io_u = list_entry(entry, struct io_u, list);
516
517 list_del(&io_u->list);
518 free(io_u);
519 }
520
Jens Axboe2f9ade32006-10-20 11:25:52 +0200521 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100522}
523
Jens Axboe6b9cea22006-10-30 17:00:24 +0100524/*
525 * "randomly" fill the buffer contents
526 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100527static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100528{
Jens Axboe66eeb292006-11-01 08:35:44 +0100529 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100530
531 while ((void *) ptr - io_u->buf < max_bs) {
532 *ptr = rand() * 0x9e370001;
533 ptr++;
534 }
535}
536
Jens Axboeebac4652005-12-08 15:25:21 +0100537static int init_io_u(struct thread_data *td)
538{
539 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100540 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100541 int i, max_units;
542 char *p;
543
Jens Axboe2866c822006-10-09 15:57:48 +0200544 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200545 return 0;
546
Jens Axboe2866c822006-10-09 15:57:48 +0200547 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100548 max_units = 1;
549 else
550 max_units = td->iodepth;
551
Jens Axboea00735e2006-11-03 08:58:08 +0100552 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100553 td->orig_buffer_size = max_bs * max_units;
554
Jens Axboed0bdaf42006-12-20 14:40:44 +0100555 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100556 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100557 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100558 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100559
Jens Axboe2f9ade32006-10-20 11:25:52 +0200560 if (allocate_io_mem(td))
561 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100562
Jens Axboeebac4652005-12-08 15:25:21 +0100563 p = ALIGN(td->orig_buffer);
564 for (i = 0; i < max_units; i++) {
565 io_u = malloc(sizeof(*io_u));
566 memset(io_u, 0, sizeof(*io_u));
567 INIT_LIST_HEAD(&io_u->list);
568
Jens Axboea00735e2006-11-03 08:58:08 +0100569 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100570 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100571 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100572
Jens Axboeb1ff3402006-02-17 11:35:58 +0100573 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100574 list_add(&io_u->list, &td->io_u_freelist);
575 }
576
577 return 0;
578}
579
Jens Axboeda867742006-06-06 10:39:10 -0700580static int switch_ioscheduler(struct thread_data *td)
581{
582 char tmp[256], tmp2[128];
583 FILE *f;
584 int ret;
585
Jens Axboef48b4672006-10-27 11:30:07 +0200586 if (td->io_ops->flags & FIO_CPUIO)
587 return 0;
588
Jens Axboeda867742006-06-06 10:39:10 -0700589 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
590
591 f = fopen(tmp, "r+");
592 if (!f) {
593 td_verror(td, errno);
594 return 1;
595 }
596
597 /*
598 * Set io scheduler.
599 */
600 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
601 if (ferror(f) || ret != 1) {
602 td_verror(td, errno);
603 fclose(f);
604 return 1;
605 }
606
607 rewind(f);
608
609 /*
610 * Read back and check that the selected scheduler is now the default.
611 */
612 ret = fread(tmp, 1, sizeof(tmp), f);
613 if (ferror(f) || ret < 0) {
614 td_verror(td, errno);
615 fclose(f);
616 return 1;
617 }
618
619 sprintf(tmp2, "[%s]", td->ioscheduler);
620 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200621 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700622 td_verror(td, EINVAL);
623 fclose(f);
624 return 1;
625 }
626
627 fclose(f);
628 return 0;
629}
630
Jens Axboeebac4652005-12-08 15:25:21 +0100631static void clear_io_state(struct thread_data *td)
632{
Jens Axboe53cdc682006-10-18 11:50:58 +0200633 struct fio_file *f;
634 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100635
Jens Axboeebac4652005-12-08 15:25:21 +0100636 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
637 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100638 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100639
Jens Axboe53cdc682006-10-18 11:50:58 +0200640 for_each_file(td, f, i) {
641 f->last_pos = 0;
642 if (td->io_ops->flags & FIO_SYNCIO)
643 lseek(f->fd, SEEK_SET, 0);
644
645 if (f->file_map)
646 memset(f->file_map, 0, f->num_maps * sizeof(long));
647 }
Jens Axboeebac4652005-12-08 15:25:21 +0100648}
649
Jens Axboe906c8d72006-06-13 09:37:56 +0200650/*
651 * Entry point for the thread based jobs. The process based jobs end up
652 * here as well, after a little setup.
653 */
Jens Axboeebac4652005-12-08 15:25:21 +0100654static void *thread_main(void *data)
655{
Jens Axboe69008992006-11-24 13:12:56 +0100656 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100657 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100658
659 if (!td->use_thread)
660 setsid();
661
662 td->pid = getpid();
663
Jens Axboeaea47d42006-05-26 19:27:29 +0200664 INIT_LIST_HEAD(&td->io_u_freelist);
665 INIT_LIST_HEAD(&td->io_u_busylist);
666 INIT_LIST_HEAD(&td->io_hist_list);
667 INIT_LIST_HEAD(&td->io_log_list);
668
Jens Axboeebac4652005-12-08 15:25:21 +0100669 if (init_io_u(td))
670 goto err;
671
672 if (fio_setaffinity(td) == -1) {
673 td_verror(td, errno);
674 goto err;
675 }
676
Jens Axboeaea47d42006-05-26 19:27:29 +0200677 if (init_iolog(td))
678 goto err;
679
Jens Axboeebac4652005-12-08 15:25:21 +0100680 if (td->ioprio) {
681 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
682 td_verror(td, errno);
683 goto err;
684 }
685 }
686
Jens Axboe1056eaa2006-07-13 10:33:45 -0700687 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200688 td_verror(td, errno);
689 goto err;
690 }
691
Jens Axboe75154842006-06-01 13:56:09 +0200692 if (init_random_state(td))
693 goto err;
694
Jens Axboe56f94982006-10-24 09:33:42 +0200695 if (td->ioscheduler && switch_ioscheduler(td))
696 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700697
Jens Axboe75154842006-06-01 13:56:09 +0200698 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200699 fio_sem_up(&startup_sem);
700 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100701
Jens Axboe53cdc682006-10-18 11:50:58 +0200702 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100703 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100704 if (open_files(td))
705 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100706
Jens Axboe7d6c5282007-02-05 10:52:10 +0100707 /*
708 * Do this late, as some IO engines would like to have the
709 * files setup prior to initializing structures.
710 */
711 if (td_io_init(td))
712 goto err;
713
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100714 if (td->exec_prerun) {
715 if (system(td->exec_prerun) < 0)
716 goto err;
717 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200718
Jens Axboe69008992006-11-24 13:12:56 +0100719 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100720 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100721
722 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100723 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100724 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100725 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
726
727 if (td->ratemin)
728 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
729
730 clear_io_state(td);
731 prune_io_piece_log(td);
732
Jens Axboe2866c822006-10-09 15:57:48 +0200733 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200734 do_cpuio(td);
735 else
736 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100737
Jens Axboe69008992006-11-24 13:12:56 +0100738 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200739 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100740 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200741
Jens Axboeebac4652005-12-08 15:25:21 +0100742 if (td->error || td->terminate)
743 break;
744
745 if (td->verify == VERIFY_NONE)
746 continue;
747
748 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100749 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100750
751 do_verify(td);
752
Jens Axboe69008992006-11-24 13:12:56 +0100753 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100754
755 if (td->error || td->terminate)
756 break;
757 }
758
Jens Axboe36dff962006-11-24 13:29:20 +0100759 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100760 fio_gettime(&td->end_time, NULL);
761 td->runtime[0] = runtime[0] / 1000;
762 td->runtime[1] = runtime[1] / 1000;
763
Jens Axboeebac4652005-12-08 15:25:21 +0100764 if (td->bw_log)
765 finish_log(td, td->bw_log, "bw");
766 if (td->slat_log)
767 finish_log(td, td->slat_log, "slat");
768 if (td->clat_log)
769 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200770 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700771 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100772 if (td->exec_postrun) {
773 if (system(td->exec_postrun) < 0)
774 log_err("fio: postrun %s failed\n", td->exec_postrun);
775 }
Jens Axboeebac4652005-12-08 15:25:21 +0100776
777 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100778 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100779
780err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100781 if (td->error)
782 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200783 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200784 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100785 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100786 td_set_runstate(td, TD_EXITED);
Jens Axboea6418142007-02-17 04:47:18 +0100787 return (void *) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100788}
789
Jens Axboe906c8d72006-06-13 09:37:56 +0200790/*
791 * We cannot pass the td data into a forked process, so attach the td and
792 * pass it to the thread worker.
793 */
Jens Axboea6418142007-02-17 04:47:18 +0100794static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100795{
796 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100797 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100798
799 data = shmat(shmid, NULL, 0);
800 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100801 int __err = errno;
802
Jens Axboeebac4652005-12-08 15:25:21 +0100803 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100804 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100805 }
806
807 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100808 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100809 shmdt(data);
Jens Axboea6418142007-02-17 04:47:18 +0100810 return (int) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100811}
812
Jens Axboe906c8d72006-06-13 09:37:56 +0200813/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200814 * Run over the job map and reap the threads that have exited, if any.
815 */
Jens Axboeebac4652005-12-08 15:25:21 +0100816static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
817{
Jens Axboe34572e22006-10-20 09:33:18 +0200818 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100819 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100820
821 /*
822 * reap exited threads (TD_EXITED -> TD_REAPED)
823 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100824 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200825 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200826 /*
827 * ->io_ops is NULL for a thread that has closed its
828 * io engine
829 */
830 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200831 cputhreads++;
832
Jens Axboefab6aa72007-02-17 06:19:24 +0100833 if (td->runstate < TD_EXITED) {
834 /*
835 * check if someone quit or got killed in an unusual way
836 */
837 ret = waitpid(td->pid, &status, WNOHANG);
838 if (ret < 0)
839 perror("waitpid");
840 else if ((ret == td->pid) && WIFSIGNALED(status)) {
841 int sig = WTERMSIG(status);
842
843 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
844 td_set_runstate(td, TD_REAPED);
845 goto reaped;
846 }
847 }
848
Jens Axboe4d2413c2006-11-23 11:58:59 +0100849 if (td->runstate != TD_EXITED) {
850 if (td->runstate < TD_RUNNING)
851 pending++;
852
Jens Axboeebac4652005-12-08 15:25:21 +0100853 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100854 }
Jens Axboeebac4652005-12-08 15:25:21 +0100855
Jens Axboe437c9b72007-02-13 18:20:37 +0100856 if (td->error)
857 exit_value++;
858
Jens Axboeebac4652005-12-08 15:25:21 +0100859 td_set_runstate(td, TD_REAPED);
860
861 if (td->use_thread) {
862 long ret;
863
864 if (pthread_join(td->thread, (void *) &ret))
865 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100866 } else {
867 int status;
868
Jens Axboefab6aa72007-02-17 06:19:24 +0100869 ret = waitpid(td->pid, &status, 0);
870 if (ret < 0)
871 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100872 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100873 if (!exit_value)
874 exit_value++;
875 }
876 }
Jens Axboeebac4652005-12-08 15:25:21 +0100877
Jens Axboefab6aa72007-02-17 06:19:24 +0100878reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100879 (*nr_running)--;
880 (*m_rate) -= td->ratemin;
881 (*t_rate) -= td->rate;
882 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200883
Jens Axboe4d2413c2006-11-23 11:58:59 +0100884 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100885 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100886}
887
Jens Axboe906c8d72006-06-13 09:37:56 +0200888/*
889 * Main function for kicking off and reaping jobs, as needed.
890 */
Jens Axboeebac4652005-12-08 15:25:21 +0100891static void run_threads(void)
892{
Jens Axboeebac4652005-12-08 15:25:21 +0100893 struct thread_data *td;
894 unsigned long spent;
895 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200896
Jens Axboe2f9ade32006-10-20 11:25:52 +0200897 if (fio_pin_memory())
898 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100899
Jens Axboec6ae0a52006-06-12 11:04:44 +0200900 if (!terse_output) {
901 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
902 fflush(stdout);
903 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200904
Jens Axboe4efa9702006-05-31 11:56:49 +0200905 signal(SIGINT, sig_handler);
906 signal(SIGALRM, sig_handler);
907
Jens Axboeebac4652005-12-08 15:25:21 +0100908 todo = thread_number;
909 nr_running = 0;
910 nr_started = 0;
911 m_rate = t_rate = 0;
912
Jens Axboe34572e22006-10-20 09:33:18 +0200913 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200914 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100915
Jens Axboe380cf262007-01-11 14:01:27 +0100916 if (!td->create_serialize) {
917 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100918 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100919 }
Jens Axboeebac4652005-12-08 15:25:21 +0100920
921 /*
922 * do file setup here so it happens sequentially,
923 * we don't want X number of threads getting their
924 * client data interspersed on disk
925 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200926 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100927 exit_value++;
928 if (td->error)
929 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100930 td_set_runstate(td, TD_REAPED);
931 todo--;
932 }
Jens Axboe380cf262007-01-11 14:01:27 +0100933
934 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100935 }
936
Jens Axboeebac4652005-12-08 15:25:21 +0100937 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200938 struct thread_data *map[MAX_JOBS];
939 struct timeval this_start;
940 int this_jobs = 0, left;
941
Jens Axboeebac4652005-12-08 15:25:21 +0100942 /*
943 * create threads (TD_NOT_CREATED -> TD_CREATED)
944 */
Jens Axboe34572e22006-10-20 09:33:18 +0200945 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100946 if (td->runstate != TD_NOT_CREATED)
947 continue;
948
949 /*
950 * never got a chance to start, killed by other
951 * thread for some reason
952 */
953 if (td->terminate) {
954 todo--;
955 continue;
956 }
957
958 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200959 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100960
961 if (td->start_delay * 1000 > spent)
962 continue;
963 }
964
965 if (td->stonewall && (nr_started || nr_running))
966 break;
967
Jens Axboe75154842006-06-01 13:56:09 +0200968 /*
969 * Set state to created. Thread will transition
970 * to TD_INITIALIZED when it's done setting up.
971 */
Jens Axboeebac4652005-12-08 15:25:21 +0100972 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200973 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200974 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100975 nr_started++;
976
977 if (td->use_thread) {
978 if (pthread_create(&td->thread, NULL, thread_main, td)) {
979 perror("thread_create");
980 nr_started--;
981 }
982 } else {
983 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200984 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100985 else {
Jens Axboea6418142007-02-17 04:47:18 +0100986 int ret = fork_main(shm_id, i);
987
988 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100989 }
990 }
991 }
992
993 /*
Jens Axboe75154842006-06-01 13:56:09 +0200994 * Wait for the started threads to transition to
995 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100996 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100997 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200998 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100999 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001000 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1001 break;
1002
1003 usleep(100000);
1004
1005 for (i = 0; i < this_jobs; i++) {
1006 td = map[i];
1007 if (!td)
1008 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001009 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001010 map[i] = NULL;
1011 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001012 } else if (td->runstate >= TD_EXITED) {
1013 map[i] = NULL;
1014 left--;
1015 todo--;
1016 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001017 }
1018 }
1019 }
1020
1021 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001022 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001023 for (i = 0; i < this_jobs; i++) {
1024 td = map[i];
1025 if (!td)
1026 continue;
1027 kill(td->pid, SIGTERM);
1028 }
1029 break;
1030 }
1031
1032 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001033 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001034 */
Jens Axboe34572e22006-10-20 09:33:18 +02001035 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001036 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001037 continue;
1038
1039 td_set_runstate(td, TD_RUNNING);
1040 nr_running++;
1041 nr_started--;
1042 m_rate += td->ratemin;
1043 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001044 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001045 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001046 }
1047
1048 reap_threads(&nr_running, &t_rate, &m_rate);
1049
1050 if (todo)
1051 usleep(100000);
1052 }
1053
1054 while (nr_running) {
1055 reap_threads(&nr_running, &t_rate, &m_rate);
1056 usleep(10000);
1057 }
1058
1059 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001060 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001061}
1062
Jens Axboeebac4652005-12-08 15:25:21 +01001063int main(int argc, char *argv[])
1064{
Jens Axboe29d610e2007-02-06 13:25:33 +01001065 long ps;
1066
Jens Axboedbe11252007-02-11 00:19:51 +01001067 /*
1068 * We need locale for number printing, if it isn't set then just
1069 * go with the US format.
1070 */
1071 if (!getenv("LC_NUMERIC"))
1072 setlocale(LC_NUMERIC, "en_US");
1073
Jens Axboeebac4652005-12-08 15:25:21 +01001074 if (parse_options(argc, argv))
1075 return 1;
1076
1077 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001078 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001079 return 1;
1080 }
1081
Jens Axboe29d610e2007-02-06 13:25:33 +01001082 ps = sysconf(_SC_PAGESIZE);
1083 if (ps < 0) {
1084 log_err("Failed to get page size\n");
1085 return 1;
1086 }
1087
1088 page_mask = ps - 1;
1089
Jens Axboebb3884d2007-01-17 17:23:11 +11001090 if (write_bw_log) {
1091 setup_log(&agg_io_log[DDIR_READ]);
1092 setup_log(&agg_io_log[DDIR_WRITE]);
1093 }
1094
Jens Axboeebac4652005-12-08 15:25:21 +01001095 disk_util_timer_arm();
1096
1097 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001098
Jens Axboebb3884d2007-01-17 17:23:11 +11001099 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001100 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001101 if (write_bw_log) {
1102 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1103 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1104 }
1105 }
Jens Axboeebac4652005-12-08 15:25:21 +01001106
Jens Axboe437c9b72007-02-13 18:20:37 +01001107 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001108}