blob: ff169f86247947d5192635dcc6295a6c68705e76 [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 Axboeebac4652005-12-08 15:25:21 +010030#include <sys/stat.h>
31#include <sys/wait.h>
32#include <sys/ipc.h>
33#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010034#include <sys/mman.h>
35
36#include "fio.h"
37#include "os.h"
38
Jens Axboe29d610e2007-02-06 13:25:33 +010039static unsigned long page_mask;
40#define ALIGN(buf) \
41 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010042
43int groupid = 0;
44int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010045int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020046int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010047
Jens Axboebbfd6b02006-06-07 19:42:54 +020048static volatile int startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010049static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010050static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010051
Jens Axboebb3884d2007-01-17 17:23:11 +110052struct io_log *agg_io_log[2];
53
Jens Axboeebac4652005-12-08 15:25:21 +010054#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020055#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010056
Jens Axboe6ce15a32007-01-12 09:04:41 +010057static inline void td_set_runstate(struct thread_data *td, int runstate)
58{
59 td->runstate = runstate;
60}
61
62static void terminate_threads(int group_id, int forced_kill)
Jens Axboeebac4652005-12-08 15:25:21 +010063{
Jens Axboe34572e22006-10-20 09:33:18 +020064 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010065 int i;
66
Jens Axboe34572e22006-10-20 09:33:18 +020067 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010068 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
69 td->terminate = 1;
70 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010071 if (forced_kill)
72 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010073 }
74 }
75}
76
77static void sig_handler(int sig)
78{
79 switch (sig) {
80 case SIGALRM:
81 update_io_ticks();
82 disk_util_timer_arm();
83 print_thread_status();
84 break;
85 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010086 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010087 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010088 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010089 break;
90 }
91}
92
Jens Axboe906c8d72006-06-13 09:37:56 +020093/*
Jens Axboe906c8d72006-06-13 09:37:56 +020094 * Check if we are above the minimum rate given.
95 */
Jens Axboeebac4652005-12-08 15:25:21 +010096static int check_min_rate(struct thread_data *td, struct timeval *now)
97{
98 unsigned long spent;
99 unsigned long rate;
100 int ddir = td->ddir;
101
102 /*
103 * allow a 2 second settle period in the beginning
104 */
105 if (mtime_since(&td->start, now) < 2000)
106 return 0;
107
108 /*
109 * if rate blocks is set, sample is running
110 */
111 if (td->rate_bytes) {
112 spent = mtime_since(&td->lastrate, now);
113 if (spent < td->ratecycle)
114 return 0;
115
116 rate = (td->this_io_bytes[ddir] - td->rate_bytes) / spent;
117 if (rate < td->ratemin) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100118 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 +0100119 return 1;
120 }
121 }
122
123 td->rate_bytes = td->this_io_bytes[ddir];
124 memcpy(&td->lastrate, now, sizeof(*now));
125 return 0;
126}
127
128static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
129{
130 if (!td->timeout)
131 return 0;
132 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
133 return 1;
134
135 return 0;
136}
137
Jens Axboe53cdc682006-10-18 11:50:58 +0200138static struct fio_file *get_next_file(struct thread_data *td)
139{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200140 unsigned int old_next_file = td->next_file;
Jens Axboeb2a15192006-10-18 14:10:42 +0200141 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200142
Jens Axboeb2a15192006-10-18 14:10:42 +0200143 do {
144 f = &td->files[td->next_file];
145
146 td->next_file++;
147 if (td->next_file >= td->nr_files)
148 td->next_file = 0;
149
150 if (f->fd != -1)
151 break;
152
153 f = NULL;
154 } while (td->next_file != old_next_file);
Jens Axboe53cdc682006-10-18 11:50:58 +0200155
156 return f;
157}
158
Jens Axboe906c8d72006-06-13 09:37:56 +0200159/*
160 * When job exits, we can cancel the in-flight IO if we are using async
161 * io. Attempt to do so.
162 */
Jens Axboeebac4652005-12-08 15:25:21 +0100163static void cleanup_pending_aio(struct thread_data *td)
164{
165 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
166 struct list_head *entry, *n;
167 struct io_completion_data icd;
168 struct io_u *io_u;
169 int r;
170
171 /*
172 * get immediately available events, if any
173 */
Jens Axboe45bee282006-10-18 15:26:44 +0200174 r = td_io_getevents(td, 0, td->cur_depth, &ts);
Jens Axboeebac4652005-12-08 15:25:21 +0100175 if (r > 0) {
176 icd.nr = r;
177 ios_completed(td, &icd);
178 }
179
180 /*
181 * now cancel remaining active events
182 */
Jens Axboe2866c822006-10-09 15:57:48 +0200183 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100184 list_for_each_safe(entry, n, &td->io_u_busylist) {
185 io_u = list_entry(entry, struct io_u, list);
186
Jens Axboe2866c822006-10-09 15:57:48 +0200187 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100188 if (!r)
189 put_io_u(td, io_u);
190 }
191 }
192
193 if (td->cur_depth) {
Jens Axboe45bee282006-10-18 15:26:44 +0200194 r = td_io_getevents(td, td->cur_depth, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100195 if (r > 0) {
196 icd.nr = r;
197 ios_completed(td, &icd);
198 }
199 }
200}
201
Jens Axboe906c8d72006-06-13 09:37:56 +0200202/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200203 * Helper to handle the final sync of a file. Works just like the normal
204 * io path, just does everything sync.
205 */
206static int fio_io_sync(struct thread_data *td, struct fio_file *f)
207{
208 struct io_u *io_u = __get_io_u(td);
209 struct io_completion_data icd;
210 int ret;
211
212 if (!io_u)
213 return 1;
214
215 io_u->ddir = DDIR_SYNC;
216 io_u->file = f;
217
218 if (td_io_prep(td, io_u)) {
219 put_io_u(td, io_u);
220 return 1;
221 }
222
223 ret = td_io_queue(td, io_u);
224 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200225 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200226 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200227 return 1;
228 }
229
230 ret = td_io_getevents(td, 1, td->cur_depth, NULL);
231 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200232 td_verror(td, ret);
Jens Axboe858a3d42006-10-24 14:54:44 +0200233 return 1;
234 }
235
236 icd.nr = ret;
237 ios_completed(td, &icd);
238 if (icd.error) {
239 td_verror(td, icd.error);
240 return 1;
241 }
242
243 return 0;
244}
245
246/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200247 * The main verify engine. Runs over the writes we previusly submitted,
248 * reads the blocks back in, and checks the crc/md5 of the data.
249 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100250static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100251{
Jens Axboeebac4652005-12-08 15:25:21 +0100252 struct io_u *io_u, *v_io_u = NULL;
253 struct io_completion_data icd;
Jens Axboe53cdc682006-10-18 11:50:58 +0200254 struct fio_file *f;
Jens Axboee5b401d2006-10-18 16:03:40 +0200255 int ret, i;
256
257 /*
258 * sync io first and invalidate cache, to make sure we really
259 * read from disk.
260 */
261 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200262 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200263 file_invalidate_cache(td, f);
264 }
Jens Axboeebac4652005-12-08 15:25:21 +0100265
266 td_set_runstate(td, TD_VERIFYING);
267
268 do {
269 if (td->terminate)
270 break;
271
Jens Axboeebac4652005-12-08 15:25:21 +0100272 io_u = __get_io_u(td);
273 if (!io_u)
274 break;
275
Jens Axboe02bcaa82006-11-24 10:42:00 +0100276 if (runtime_exceeded(td, &io_u->start_time)) {
277 put_io_u(td, io_u);
278 break;
279 }
280
Jens Axboeaea47d42006-05-26 19:27:29 +0200281 if (get_next_verify(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100282 put_io_u(td, io_u);
283 break;
284 }
285
Jens Axboe53cdc682006-10-18 11:50:58 +0200286 f = get_next_file(td);
287 if (!f)
288 break;
289
290 io_u->file = f;
291
Jens Axboeaea47d42006-05-26 19:27:29 +0200292 if (td_io_prep(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100293 put_io_u(td, io_u);
294 break;
295 }
296
Jens Axboe45bee282006-10-18 15:26:44 +0200297 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100298 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200299 td_verror(td, io_u->error);
Jens Axboeebac4652005-12-08 15:25:21 +0100300 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100301 break;
302 }
303
304 /*
305 * we have one pending to verify, do that while
306 * we are doing io on the next one
307 */
308 if (do_io_u_verify(td, &v_io_u))
309 break;
310
Jens Axboe45bee282006-10-18 15:26:44 +0200311 ret = td_io_getevents(td, 1, 1, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100312 if (ret != 1) {
313 if (ret < 0)
314 td_verror(td, ret);
315 break;
316 }
317
Jens Axboe2866c822006-10-09 15:57:48 +0200318 v_io_u = td->io_ops->event(td, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100319 icd.nr = 1;
320 icd.error = 0;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100321 fio_gettime(&icd.time, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100322 io_completed(td, v_io_u, &icd);
323
324 if (icd.error) {
325 td_verror(td, icd.error);
326 put_io_u(td, v_io_u);
327 v_io_u = NULL;
328 break;
329 }
330
Jens Axboeebac4652005-12-08 15:25:21 +0100331 /*
332 * if we can't submit more io, we need to verify now
333 */
334 if (queue_full(td) && do_io_u_verify(td, &v_io_u))
335 break;
336
337 } while (1);
338
339 do_io_u_verify(td, &v_io_u);
340
341 if (td->cur_depth)
342 cleanup_pending_aio(td);
343
344 td_set_runstate(td, TD_RUNNING);
345}
346
Jens Axboe32cd46a2006-06-07 13:40:40 +0200347/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200348 * Not really an io thread, all it does is burn CPU cycles in the specified
349 * manner.
350 */
351static void do_cpuio(struct thread_data *td)
352{
353 struct timeval e;
354 int split = 100 / td->cpuload;
355 int i = 0;
356
357 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100358 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200359
360 if (runtime_exceeded(td, &e))
361 break;
362
363 if (!(i % split))
364 __usec_sleep(10000);
365 else
366 usec_sleep(td, 10000);
367
368 i++;
369 }
370}
371
372/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200373 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200374 * and reaps them, checking for rate and errors along the way.
375 */
Jens Axboeebac4652005-12-08 15:25:21 +0100376static void do_io(struct thread_data *td)
377{
378 struct io_completion_data icd;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100379 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100380 unsigned long usec;
Jens Axboe53cdc682006-10-18 11:50:58 +0200381 struct fio_file *f;
Jens Axboe84585002006-10-19 20:26:22 +0200382 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100383
Jens Axboe5853e5a2006-06-08 14:41:05 +0200384 td_set_runstate(td, TD_RUNNING);
385
Jens Axboe39514142007-02-12 18:49:58 +0100386 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboeebac4652005-12-08 15:25:21 +0100387 struct timespec *timeout;
Jens Axboe84585002006-10-19 20:26:22 +0200388 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100389 struct io_u *io_u;
390
391 if (td->terminate)
392 break;
393
Jens Axboe53cdc682006-10-18 11:50:58 +0200394 f = get_next_file(td);
395 if (!f)
396 break;
397
398 io_u = get_io_u(td, f);
Jens Axboeebac4652005-12-08 15:25:21 +0100399 if (!io_u)
400 break;
401
402 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboecec6b552007-02-06 20:15:38 +0100403requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200404 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100405 if (ret) {
Jens Axboecec6b552007-02-06 20:15:38 +0100406 if (ret > 0 && (io_u->xfer_buflen != io_u->resid) &&
407 io_u->resid) {
408 /*
409 * short read/write. requeue.
410 */
411 io_u->xfer_buflen = io_u->resid;
412 io_u->xfer_buf += ret;
413 goto requeue;
414 } else {
Jens Axboecec6b552007-02-06 20:15:38 +0100415 put_io_u(td, io_u);
416 break;
417 }
Jens Axboeebac4652005-12-08 15:25:21 +0100418 }
419
420 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
421
422 if (td->cur_depth < td->iodepth) {
Jens Axboe8d7ad8d2007-01-09 21:22:18 +0100423 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
424
Jens Axboeebac4652005-12-08 15:25:21 +0100425 timeout = &ts;
426 min_evts = 0;
427 } else {
428 timeout = NULL;
429 min_evts = 1;
430 }
431
Jens Axboe45bee282006-10-18 15:26:44 +0200432 ret = td_io_getevents(td, min_evts, td->cur_depth, timeout);
Jens Axboeebac4652005-12-08 15:25:21 +0100433 if (ret < 0) {
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200434 td_verror(td, ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100435 break;
436 } else if (!ret)
437 continue;
438
439 icd.nr = ret;
440 ios_completed(td, &icd);
441 if (icd.error) {
442 td_verror(td, icd.error);
443 break;
444 }
445
446 /*
447 * the rate is batched for now, it should work for batches
448 * of completions except the very first one which may look
449 * a little bursty
450 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100451 usec = utime_since(&s, &icd.time);
Jens Axboeebac4652005-12-08 15:25:21 +0100452
Jens Axboea00735e2006-11-03 08:58:08 +0100453 rate_throttle(td, usec, icd.bytes_done[td->ddir], td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100454
Jens Axboe02bcaa82006-11-24 10:42:00 +0100455 if (check_min_rate(td, &icd.time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100456 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100457 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100458 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100459 break;
460 }
461
Jens Axboe02bcaa82006-11-24 10:42:00 +0100462 if (runtime_exceeded(td, &icd.time))
Jens Axboeebac4652005-12-08 15:25:21 +0100463 break;
464
Jens Axboe9c1f7432007-01-03 20:43:19 +0100465 if (td->thinktime) {
466 unsigned long long b;
467
468 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100469 if (!(b % td->thinktime_blocks)) {
470 int left;
471
472 if (td->thinktime_spin)
473 __usec_sleep(td->thinktime_spin);
474
475 left = td->thinktime - td->thinktime_spin;
476 if (left)
477 usec_sleep(td, left);
478 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100479 }
Jens Axboeebac4652005-12-08 15:25:21 +0100480 }
481
Jens Axboe4d2413c2006-11-23 11:58:59 +0100482 if (!td->error) {
Jens Axboe84585002006-10-19 20:26:22 +0200483 if (td->cur_depth)
484 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100485
Jens Axboe84585002006-10-19 20:26:22 +0200486 if (should_fsync(td) && td->end_fsync) {
487 td_set_runstate(td, TD_FSYNCING);
488 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200489 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200490 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200491 }
Jens Axboeebac4652005-12-08 15:25:21 +0100492}
493
Jens Axboeebac4652005-12-08 15:25:21 +0100494static void cleanup_io_u(struct thread_data *td)
495{
496 struct list_head *entry, *n;
497 struct io_u *io_u;
498
499 list_for_each_safe(entry, n, &td->io_u_freelist) {
500 io_u = list_entry(entry, struct io_u, list);
501
502 list_del(&io_u->list);
503 free(io_u);
504 }
505
Jens Axboe2f9ade32006-10-20 11:25:52 +0200506 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100507}
508
Jens Axboe6b9cea22006-10-30 17:00:24 +0100509/*
510 * "randomly" fill the buffer contents
511 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100512static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100513{
Jens Axboe66eeb292006-11-01 08:35:44 +0100514 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100515
516 while ((void *) ptr - io_u->buf < max_bs) {
517 *ptr = rand() * 0x9e370001;
518 ptr++;
519 }
520}
521
Jens Axboeebac4652005-12-08 15:25:21 +0100522static int init_io_u(struct thread_data *td)
523{
524 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100525 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100526 int i, max_units;
527 char *p;
528
Jens Axboe2866c822006-10-09 15:57:48 +0200529 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200530 return 0;
531
Jens Axboe2866c822006-10-09 15:57:48 +0200532 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100533 max_units = 1;
534 else
535 max_units = td->iodepth;
536
Jens Axboea00735e2006-11-03 08:58:08 +0100537 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100538 td->orig_buffer_size = max_bs * max_units;
539
Jens Axboed0bdaf42006-12-20 14:40:44 +0100540 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100541 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100542 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100543 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100544
Jens Axboe2f9ade32006-10-20 11:25:52 +0200545 if (allocate_io_mem(td))
546 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100547
Jens Axboeebac4652005-12-08 15:25:21 +0100548 p = ALIGN(td->orig_buffer);
549 for (i = 0; i < max_units; i++) {
550 io_u = malloc(sizeof(*io_u));
551 memset(io_u, 0, sizeof(*io_u));
552 INIT_LIST_HEAD(&io_u->list);
553
Jens Axboea00735e2006-11-03 08:58:08 +0100554 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100555 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100556 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100557
Jens Axboeb1ff3402006-02-17 11:35:58 +0100558 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100559 list_add(&io_u->list, &td->io_u_freelist);
560 }
561
562 return 0;
563}
564
Jens Axboeda867742006-06-06 10:39:10 -0700565static int switch_ioscheduler(struct thread_data *td)
566{
567 char tmp[256], tmp2[128];
568 FILE *f;
569 int ret;
570
Jens Axboef48b4672006-10-27 11:30:07 +0200571 if (td->io_ops->flags & FIO_CPUIO)
572 return 0;
573
Jens Axboeda867742006-06-06 10:39:10 -0700574 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
575
576 f = fopen(tmp, "r+");
577 if (!f) {
578 td_verror(td, errno);
579 return 1;
580 }
581
582 /*
583 * Set io scheduler.
584 */
585 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
586 if (ferror(f) || ret != 1) {
587 td_verror(td, errno);
588 fclose(f);
589 return 1;
590 }
591
592 rewind(f);
593
594 /*
595 * Read back and check that the selected scheduler is now the default.
596 */
597 ret = fread(tmp, 1, sizeof(tmp), f);
598 if (ferror(f) || ret < 0) {
599 td_verror(td, errno);
600 fclose(f);
601 return 1;
602 }
603
604 sprintf(tmp2, "[%s]", td->ioscheduler);
605 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200606 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700607 td_verror(td, EINVAL);
608 fclose(f);
609 return 1;
610 }
611
612 fclose(f);
613 return 0;
614}
615
Jens Axboeebac4652005-12-08 15:25:21 +0100616static void clear_io_state(struct thread_data *td)
617{
Jens Axboe53cdc682006-10-18 11:50:58 +0200618 struct fio_file *f;
619 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100620
Jens Axboeebac4652005-12-08 15:25:21 +0100621 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
622 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100623 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100624
Jens Axboe53cdc682006-10-18 11:50:58 +0200625 for_each_file(td, f, i) {
626 f->last_pos = 0;
627 if (td->io_ops->flags & FIO_SYNCIO)
628 lseek(f->fd, SEEK_SET, 0);
629
630 if (f->file_map)
631 memset(f->file_map, 0, f->num_maps * sizeof(long));
632 }
Jens Axboeebac4652005-12-08 15:25:21 +0100633}
634
Jens Axboe906c8d72006-06-13 09:37:56 +0200635/*
636 * Entry point for the thread based jobs. The process based jobs end up
637 * here as well, after a little setup.
638 */
Jens Axboeebac4652005-12-08 15:25:21 +0100639static void *thread_main(void *data)
640{
Jens Axboe69008992006-11-24 13:12:56 +0100641 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100642 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100643
644 if (!td->use_thread)
645 setsid();
646
647 td->pid = getpid();
648
Jens Axboeaea47d42006-05-26 19:27:29 +0200649 INIT_LIST_HEAD(&td->io_u_freelist);
650 INIT_LIST_HEAD(&td->io_u_busylist);
651 INIT_LIST_HEAD(&td->io_hist_list);
652 INIT_LIST_HEAD(&td->io_log_list);
653
Jens Axboeebac4652005-12-08 15:25:21 +0100654 if (init_io_u(td))
655 goto err;
656
657 if (fio_setaffinity(td) == -1) {
658 td_verror(td, errno);
659 goto err;
660 }
661
Jens Axboeaea47d42006-05-26 19:27:29 +0200662 if (init_iolog(td))
663 goto err;
664
Jens Axboeebac4652005-12-08 15:25:21 +0100665 if (td->ioprio) {
666 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
667 td_verror(td, errno);
668 goto err;
669 }
670 }
671
Jens Axboe1056eaa2006-07-13 10:33:45 -0700672 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200673 td_verror(td, errno);
674 goto err;
675 }
676
Jens Axboe75154842006-06-01 13:56:09 +0200677 if (init_random_state(td))
678 goto err;
679
Jens Axboe56f94982006-10-24 09:33:42 +0200680 if (td->ioscheduler && switch_ioscheduler(td))
681 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700682
Jens Axboe75154842006-06-01 13:56:09 +0200683 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200684 fio_sem_up(&startup_sem);
685 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100686
Jens Axboe53cdc682006-10-18 11:50:58 +0200687 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100688 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100689 if (open_files(td))
690 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100691
Jens Axboe7d6c5282007-02-05 10:52:10 +0100692 /*
693 * Do this late, as some IO engines would like to have the
694 * files setup prior to initializing structures.
695 */
696 if (td_io_init(td))
697 goto err;
698
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100699 if (td->exec_prerun) {
700 if (system(td->exec_prerun) < 0)
701 goto err;
702 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200703
Jens Axboe69008992006-11-24 13:12:56 +0100704 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100705 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100706
707 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100708 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100709 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100710 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
711
712 if (td->ratemin)
713 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
714
715 clear_io_state(td);
716 prune_io_piece_log(td);
717
Jens Axboe2866c822006-10-09 15:57:48 +0200718 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200719 do_cpuio(td);
720 else
721 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100722
Jens Axboe69008992006-11-24 13:12:56 +0100723 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200724 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100725 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200726
Jens Axboeebac4652005-12-08 15:25:21 +0100727 if (td->error || td->terminate)
728 break;
729
730 if (td->verify == VERIFY_NONE)
731 continue;
732
733 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100734 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100735
736 do_verify(td);
737
Jens Axboe69008992006-11-24 13:12:56 +0100738 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100739
740 if (td->error || td->terminate)
741 break;
742 }
743
Jens Axboe36dff962006-11-24 13:29:20 +0100744 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100745 fio_gettime(&td->end_time, NULL);
746 td->runtime[0] = runtime[0] / 1000;
747 td->runtime[1] = runtime[1] / 1000;
748
Jens Axboeebac4652005-12-08 15:25:21 +0100749 if (td->bw_log)
750 finish_log(td, td->bw_log, "bw");
751 if (td->slat_log)
752 finish_log(td, td->slat_log, "slat");
753 if (td->clat_log)
754 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200755 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700756 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100757 if (td->exec_postrun) {
758 if (system(td->exec_postrun) < 0)
759 log_err("fio: postrun %s failed\n", td->exec_postrun);
760 }
Jens Axboeebac4652005-12-08 15:25:21 +0100761
762 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100763 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100764
765err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100766 if (td->error)
767 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200768 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200769 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100770 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100771 td_set_runstate(td, TD_EXITED);
Jens Axboea6418142007-02-17 04:47:18 +0100772 return (void *) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100773}
774
Jens Axboe906c8d72006-06-13 09:37:56 +0200775/*
776 * We cannot pass the td data into a forked process, so attach the td and
777 * pass it to the thread worker.
778 */
Jens Axboea6418142007-02-17 04:47:18 +0100779static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100780{
781 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100782 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100783
784 data = shmat(shmid, NULL, 0);
785 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100786 int __err = errno;
787
Jens Axboeebac4652005-12-08 15:25:21 +0100788 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100789 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100790 }
791
792 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100793 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100794 shmdt(data);
Jens Axboea6418142007-02-17 04:47:18 +0100795 return (int) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100796}
797
Jens Axboe906c8d72006-06-13 09:37:56 +0200798/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200799 * Run over the job map and reap the threads that have exited, if any.
800 */
Jens Axboeebac4652005-12-08 15:25:21 +0100801static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
802{
Jens Axboe34572e22006-10-20 09:33:18 +0200803 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100804 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100805
806 /*
807 * reap exited threads (TD_EXITED -> TD_REAPED)
808 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100809 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200810 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200811 /*
812 * ->io_ops is NULL for a thread that has closed its
813 * io engine
814 */
815 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200816 cputhreads++;
817
Jens Axboefab6aa72007-02-17 06:19:24 +0100818 if (td->runstate < TD_EXITED) {
819 /*
820 * check if someone quit or got killed in an unusual way
821 */
822 ret = waitpid(td->pid, &status, WNOHANG);
823 if (ret < 0)
824 perror("waitpid");
825 else if ((ret == td->pid) && WIFSIGNALED(status)) {
826 int sig = WTERMSIG(status);
827
828 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
829 td_set_runstate(td, TD_REAPED);
830 goto reaped;
831 }
832 }
833
Jens Axboe4d2413c2006-11-23 11:58:59 +0100834 if (td->runstate != TD_EXITED) {
835 if (td->runstate < TD_RUNNING)
836 pending++;
837
Jens Axboeebac4652005-12-08 15:25:21 +0100838 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100839 }
Jens Axboeebac4652005-12-08 15:25:21 +0100840
Jens Axboe437c9b72007-02-13 18:20:37 +0100841 if (td->error)
842 exit_value++;
843
Jens Axboeebac4652005-12-08 15:25:21 +0100844 td_set_runstate(td, TD_REAPED);
845
846 if (td->use_thread) {
847 long ret;
848
849 if (pthread_join(td->thread, (void *) &ret))
850 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100851 } else {
852 int status;
853
Jens Axboefab6aa72007-02-17 06:19:24 +0100854 ret = waitpid(td->pid, &status, 0);
855 if (ret < 0)
856 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100857 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100858 if (!exit_value)
859 exit_value++;
860 }
861 }
Jens Axboeebac4652005-12-08 15:25:21 +0100862
Jens Axboefab6aa72007-02-17 06:19:24 +0100863reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100864 (*nr_running)--;
865 (*m_rate) -= td->ratemin;
866 (*t_rate) -= td->rate;
867 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200868
Jens Axboe4d2413c2006-11-23 11:58:59 +0100869 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100870 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100871}
872
Jens Axboe906c8d72006-06-13 09:37:56 +0200873/*
874 * Main function for kicking off and reaping jobs, as needed.
875 */
Jens Axboeebac4652005-12-08 15:25:21 +0100876static void run_threads(void)
877{
Jens Axboeebac4652005-12-08 15:25:21 +0100878 struct thread_data *td;
879 unsigned long spent;
880 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200881
Jens Axboe2f9ade32006-10-20 11:25:52 +0200882 if (fio_pin_memory())
883 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100884
Jens Axboec6ae0a52006-06-12 11:04:44 +0200885 if (!terse_output) {
886 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
887 fflush(stdout);
888 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200889
Jens Axboe4efa9702006-05-31 11:56:49 +0200890 signal(SIGINT, sig_handler);
891 signal(SIGALRM, sig_handler);
892
Jens Axboeebac4652005-12-08 15:25:21 +0100893 todo = thread_number;
894 nr_running = 0;
895 nr_started = 0;
896 m_rate = t_rate = 0;
897
Jens Axboe34572e22006-10-20 09:33:18 +0200898 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200899 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100900
Jens Axboe380cf262007-01-11 14:01:27 +0100901 if (!td->create_serialize) {
902 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100903 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100904 }
Jens Axboeebac4652005-12-08 15:25:21 +0100905
906 /*
907 * do file setup here so it happens sequentially,
908 * we don't want X number of threads getting their
909 * client data interspersed on disk
910 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200911 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100912 exit_value++;
913 if (td->error)
914 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100915 td_set_runstate(td, TD_REAPED);
916 todo--;
917 }
Jens Axboe380cf262007-01-11 14:01:27 +0100918
919 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100920 }
921
Jens Axboeebac4652005-12-08 15:25:21 +0100922 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200923 struct thread_data *map[MAX_JOBS];
924 struct timeval this_start;
925 int this_jobs = 0, left;
926
Jens Axboeebac4652005-12-08 15:25:21 +0100927 /*
928 * create threads (TD_NOT_CREATED -> TD_CREATED)
929 */
Jens Axboe34572e22006-10-20 09:33:18 +0200930 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100931 if (td->runstate != TD_NOT_CREATED)
932 continue;
933
934 /*
935 * never got a chance to start, killed by other
936 * thread for some reason
937 */
938 if (td->terminate) {
939 todo--;
940 continue;
941 }
942
943 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200944 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100945
946 if (td->start_delay * 1000 > spent)
947 continue;
948 }
949
950 if (td->stonewall && (nr_started || nr_running))
951 break;
952
Jens Axboe75154842006-06-01 13:56:09 +0200953 /*
954 * Set state to created. Thread will transition
955 * to TD_INITIALIZED when it's done setting up.
956 */
Jens Axboeebac4652005-12-08 15:25:21 +0100957 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200958 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200959 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100960 nr_started++;
961
962 if (td->use_thread) {
963 if (pthread_create(&td->thread, NULL, thread_main, td)) {
964 perror("thread_create");
965 nr_started--;
966 }
967 } else {
968 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200969 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100970 else {
Jens Axboea6418142007-02-17 04:47:18 +0100971 int ret = fork_main(shm_id, i);
972
973 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100974 }
975 }
976 }
977
978 /*
Jens Axboe75154842006-06-01 13:56:09 +0200979 * Wait for the started threads to transition to
980 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100981 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100982 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200983 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100984 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200985 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
986 break;
987
988 usleep(100000);
989
990 for (i = 0; i < this_jobs; i++) {
991 td = map[i];
992 if (!td)
993 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200994 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200995 map[i] = NULL;
996 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200997 } else if (td->runstate >= TD_EXITED) {
998 map[i] = NULL;
999 left--;
1000 todo--;
1001 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001002 }
1003 }
1004 }
1005
1006 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001007 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001008 for (i = 0; i < this_jobs; i++) {
1009 td = map[i];
1010 if (!td)
1011 continue;
1012 kill(td->pid, SIGTERM);
1013 }
1014 break;
1015 }
1016
1017 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001018 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001019 */
Jens Axboe34572e22006-10-20 09:33:18 +02001020 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001021 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001022 continue;
1023
1024 td_set_runstate(td, TD_RUNNING);
1025 nr_running++;
1026 nr_started--;
1027 m_rate += td->ratemin;
1028 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001029 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001030 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001031 }
1032
1033 reap_threads(&nr_running, &t_rate, &m_rate);
1034
1035 if (todo)
1036 usleep(100000);
1037 }
1038
1039 while (nr_running) {
1040 reap_threads(&nr_running, &t_rate, &m_rate);
1041 usleep(10000);
1042 }
1043
1044 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001045 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001046}
1047
Jens Axboeebac4652005-12-08 15:25:21 +01001048int main(int argc, char *argv[])
1049{
Jens Axboe29d610e2007-02-06 13:25:33 +01001050 long ps;
1051
Jens Axboedbe11252007-02-11 00:19:51 +01001052 /*
1053 * We need locale for number printing, if it isn't set then just
1054 * go with the US format.
1055 */
1056 if (!getenv("LC_NUMERIC"))
1057 setlocale(LC_NUMERIC, "en_US");
1058
Jens Axboeebac4652005-12-08 15:25:21 +01001059 if (parse_options(argc, argv))
1060 return 1;
1061
1062 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001063 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001064 return 1;
1065 }
1066
Jens Axboe29d610e2007-02-06 13:25:33 +01001067 ps = sysconf(_SC_PAGESIZE);
1068 if (ps < 0) {
1069 log_err("Failed to get page size\n");
1070 return 1;
1071 }
1072
1073 page_mask = ps - 1;
1074
Jens Axboebb3884d2007-01-17 17:23:11 +11001075 if (write_bw_log) {
1076 setup_log(&agg_io_log[DDIR_READ]);
1077 setup_log(&agg_io_log[DDIR_WRITE]);
1078 }
1079
Jens Axboeebac4652005-12-08 15:25:21 +01001080 disk_util_timer_arm();
1081
1082 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001083
Jens Axboebb3884d2007-01-17 17:23:11 +11001084 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001085 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001086 if (write_bw_log) {
1087 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1088 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1089 }
1090 }
Jens Axboeebac4652005-12-08 15:25:21 +01001091
Jens Axboe437c9b72007-02-13 18:20:37 +01001092 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001093}