blob: 9594f80582266ce8a8a5794ea9c52fb02a6adb1d [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 Axboe906c8d72006-06-13 09:37:56 +0200139/*
140 * When job exits, we can cancel the in-flight IO if we are using async
141 * io. Attempt to do so.
142 */
Jens Axboeebac4652005-12-08 15:25:21 +0100143static void cleanup_pending_aio(struct thread_data *td)
144{
Jens Axboeebac4652005-12-08 15:25:21 +0100145 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100146 struct io_u *io_u;
147 int r;
148
149 /*
150 * get immediately available events, if any
151 */
Jens Axboeb2fdda42007-02-20 20:52:51 +0100152 r = io_u_queued_complete(td, 0, NULL);
153 if (r < 0)
154 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100155
156 /*
157 * now cancel remaining active events
158 */
Jens Axboe2866c822006-10-09 15:57:48 +0200159 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100160 list_for_each_safe(entry, n, &td->io_u_busylist) {
161 io_u = list_entry(entry, struct io_u, list);
162
Jens Axboe2866c822006-10-09 15:57:48 +0200163 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100164 if (!r)
165 put_io_u(td, io_u);
166 }
167 }
168
Jens Axboe97601022007-02-18 12:47:29 +0100169 if (td->cur_depth)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100170 r = io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100171}
172
Jens Axboe906c8d72006-06-13 09:37:56 +0200173/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200174 * Helper to handle the final sync of a file. Works just like the normal
175 * io path, just does everything sync.
176 */
177static int fio_io_sync(struct thread_data *td, struct fio_file *f)
178{
179 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200180 int ret;
181
182 if (!io_u)
183 return 1;
184
185 io_u->ddir = DDIR_SYNC;
186 io_u->file = f;
187
188 if (td_io_prep(td, io_u)) {
189 put_io_u(td, io_u);
190 return 1;
191 }
192
Jens Axboe755200a2007-02-19 13:08:12 +0100193requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200194 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100195 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200196 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200197 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200198 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100199 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe49db69a2007-02-21 20:28:14 +0100200 if (io_u_queued_complete(td, 1, NULL) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100201 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100202 } else if (ret == FIO_Q_COMPLETED) {
203 if (io_u->error) {
204 td_verror(td, io_u->error);
205 return 1;
206 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200207
Jens Axboeb2fdda42007-02-20 20:52:51 +0100208 if (io_u_sync_complete(td, io_u, NULL) < 0)
209 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100210 } else if (ret == FIO_Q_BUSY) {
211 if (td_io_commit(td))
212 return 1;
213 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200214 }
215
216 return 0;
217}
218
219/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200220 * The main verify engine. Runs over the writes we previusly submitted,
221 * reads the blocks back in, and checks the crc/md5 of the data.
222 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100223static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100224{
Jens Axboe53cdc682006-10-18 11:50:58 +0200225 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100226 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100227 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200228
229 /*
230 * sync io first and invalidate cache, to make sure we really
231 * read from disk.
232 */
233 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100234 if (fio_io_sync(td, f))
235 break;
236 if (file_invalidate_cache(td, f))
237 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200238 }
Jens Axboeebac4652005-12-08 15:25:21 +0100239
Jens Axboeb2fdda42007-02-20 20:52:51 +0100240 if (td->error)
241 return;
242
Jens Axboeebac4652005-12-08 15:25:21 +0100243 td_set_runstate(td, TD_VERIFYING);
244
Jens Axboe36167d82007-02-18 05:41:31 +0100245 io_u = NULL;
246 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100247 io_u = __get_io_u(td);
248 if (!io_u)
249 break;
250
Jens Axboe069c2912007-02-21 23:02:39 +0100251 if (runtime_exceeded(td, &io_u->start_time)) {
252 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200253 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100254 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200255
Jens Axboe069c2912007-02-21 23:02:39 +0100256 if (get_next_verify(td, io_u)) {
257 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100258 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100259 }
Jens Axboeebac4652005-12-08 15:25:21 +0100260
Jens Axboe069c2912007-02-21 23:02:39 +0100261 if (td_io_prep(td, io_u)) {
262 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100263 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100264 }
Jens Axboe36167d82007-02-18 05:41:31 +0100265requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200266 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100267
268 switch (ret) {
269 case FIO_Q_COMPLETED:
270 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100271 ret = -io_u->error;
Jens Axboe36167d82007-02-18 05:41:31 +0100272 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
273 int bytes = io_u->xfer_buflen - io_u->resid;
274
275 io_u->xfer_buflen = io_u->resid;
276 io_u->xfer_buf += bytes;
277 goto requeue;
278 }
Jens Axboe99784632007-02-19 10:06:17 +0100279 ret = io_u_sync_complete(td, io_u, verify_io_u);
Jens Axboe49db69a2007-02-21 20:28:14 +0100280 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100281 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100282 continue;
283 case FIO_Q_QUEUED:
284 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100285 case FIO_Q_BUSY:
286 requeue_io_u(td, &io_u);
287 ret = td_io_commit(td);
288 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100289 default:
290 assert(ret < 0);
Jens Axboe22819ec2007-02-18 07:47:14 +0100291 td_verror(td, -ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100292 break;
293 }
294
Jens Axboe99784632007-02-19 10:06:17 +0100295 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100296 break;
297
Jens Axboe3af6ef32007-02-18 06:57:43 +0100298 /*
299 * if we can queue more, do so. but check if there are
300 * completed io_u's first.
301 */
Jens Axboe97601022007-02-18 12:47:29 +0100302 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100303 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100304 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100305
Jens Axboee916b392007-02-20 14:37:26 +0100306 if (td->cur_depth > td->iodepth_low)
307 min_events = td->cur_depth - td->iodepth_low;
308 }
309
Jens Axboe3af6ef32007-02-18 06:57:43 +0100310 /*
311 * Reap required number of io units, if any, and do the
312 * verification on them through the callback handler
313 */
Jens Axboe49db69a2007-02-21 20:28:14 +0100314 if (io_u_queued_complete(td, min_events, verify_io_u) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100315 break;
316 }
317
Jens Axboeebac4652005-12-08 15:25:21 +0100318 if (td->cur_depth)
319 cleanup_pending_aio(td);
320
321 td_set_runstate(td, TD_RUNNING);
322}
323
Jens Axboe32cd46a2006-06-07 13:40:40 +0200324/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200325 * Not really an io thread, all it does is burn CPU cycles in the specified
326 * manner.
327 */
328static void do_cpuio(struct thread_data *td)
329{
330 struct timeval e;
331 int split = 100 / td->cpuload;
332 int i = 0;
333
334 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100335 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200336
337 if (runtime_exceeded(td, &e))
338 break;
339
340 if (!(i % split))
341 __usec_sleep(10000);
342 else
343 usec_sleep(td, 10000);
344
345 i++;
346 }
347}
348
349/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200350 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200351 * and reaps them, checking for rate and errors along the way.
352 */
Jens Axboeebac4652005-12-08 15:25:21 +0100353static void do_io(struct thread_data *td)
354{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100355 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100356 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200357 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100358
Jens Axboe5853e5a2006-06-08 14:41:05 +0200359 td_set_runstate(td, TD_RUNNING);
360
Jens Axboe39514142007-02-12 18:49:58 +0100361 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100362 struct timeval comp_time;
363 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200364 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100365 struct io_u *io_u;
366
367 if (td->terminate)
368 break;
369
Jens Axboe3d7c3912007-02-19 13:16:12 +0100370 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100371 if (!io_u)
372 break;
373
374 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100375
376 if (runtime_exceeded(td, &s)) {
377 put_io_u(td, io_u);
378 break;
379 }
Jens Axboecec6b552007-02-06 20:15:38 +0100380requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200381 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100382
383 switch (ret) {
384 case FIO_Q_COMPLETED:
385 if (io_u->error) {
386 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100387 break;
388 }
Jens Axboe36167d82007-02-18 05:41:31 +0100389 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
390 int bytes = io_u->xfer_buflen - io_u->resid;
391
392 io_u->xfer_buflen = io_u->resid;
393 io_u->xfer_buf += bytes;
394 goto requeue;
395 }
Jens Axboe97601022007-02-18 12:47:29 +0100396 fio_gettime(&comp_time, NULL);
397 bytes_done = io_u_sync_complete(td, io_u, NULL);
Jens Axboe99784632007-02-19 10:06:17 +0100398 if (bytes_done < 0)
399 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100400 break;
401 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100402 /*
403 * if the engine doesn't have a commit hook,
404 * the io_u is really queued. if it does have such
405 * a hook, it has to call io_u_queued() itself.
406 */
407 if (td->io_ops->commit == NULL)
408 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100409 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100410 case FIO_Q_BUSY:
411 requeue_io_u(td, &io_u);
412 ret = td_io_commit(td);
413 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100414 default:
415 assert(ret < 0);
416 put_io_u(td, io_u);
417 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100418 }
419
Jens Axboe99784632007-02-19 10:06:17 +0100420 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100421 break;
422
Jens Axboe97601022007-02-18 12:47:29 +0100423 /*
424 * See if we need to complete some commands
425 */
Jens Axboe755200a2007-02-19 13:08:12 +0100426 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100427 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100428 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100429 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100430
Jens Axboee916b392007-02-20 14:37:26 +0100431 if (td->cur_depth > td->iodepth_low)
432 min_evts = td->cur_depth - td->iodepth_low;
433 }
434
Jens Axboe97601022007-02-18 12:47:29 +0100435 fio_gettime(&comp_time, NULL);
436 bytes_done = io_u_queued_complete(td, min_evts, NULL);
437 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100438 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100439 }
440
Jens Axboe97601022007-02-18 12:47:29 +0100441 if (!bytes_done)
442 continue;
443
Jens Axboeebac4652005-12-08 15:25:21 +0100444 /*
445 * the rate is batched for now, it should work for batches
446 * of completions except the very first one which may look
447 * a little bursty
448 */
Jens Axboe97601022007-02-18 12:47:29 +0100449 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100450
Jens Axboe97601022007-02-18 12:47:29 +0100451 rate_throttle(td, usec, bytes_done, td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100452
Jens Axboe97601022007-02-18 12:47:29 +0100453 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100454 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100455 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100456 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100457 break;
458 }
459
Jens Axboe9c1f7432007-01-03 20:43:19 +0100460 if (td->thinktime) {
461 unsigned long long b;
462
463 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100464 if (!(b % td->thinktime_blocks)) {
465 int left;
466
467 if (td->thinktime_spin)
468 __usec_sleep(td->thinktime_spin);
469
470 left = td->thinktime - td->thinktime_spin;
471 if (left)
472 usec_sleep(td, left);
473 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100474 }
Jens Axboeebac4652005-12-08 15:25:21 +0100475 }
476
Jens Axboe4d2413c2006-11-23 11:58:59 +0100477 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100478 struct fio_file *f;
479
Jens Axboe84585002006-10-19 20:26:22 +0200480 if (td->cur_depth)
481 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100482
Jens Axboe84585002006-10-19 20:26:22 +0200483 if (should_fsync(td) && td->end_fsync) {
484 td_set_runstate(td, TD_FSYNCING);
485 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200486 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200487 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200488 }
Jens Axboeebac4652005-12-08 15:25:21 +0100489}
490
Jens Axboeebac4652005-12-08 15:25:21 +0100491static void cleanup_io_u(struct thread_data *td)
492{
493 struct list_head *entry, *n;
494 struct io_u *io_u;
495
496 list_for_each_safe(entry, n, &td->io_u_freelist) {
497 io_u = list_entry(entry, struct io_u, list);
498
499 list_del(&io_u->list);
500 free(io_u);
501 }
502
Jens Axboe2f9ade32006-10-20 11:25:52 +0200503 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100504}
505
Jens Axboe6b9cea22006-10-30 17:00:24 +0100506/*
507 * "randomly" fill the buffer contents
508 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100509static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100510{
Jens Axboe66eeb292006-11-01 08:35:44 +0100511 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100512
513 while ((void *) ptr - io_u->buf < max_bs) {
514 *ptr = rand() * 0x9e370001;
515 ptr++;
516 }
517}
518
Jens Axboeebac4652005-12-08 15:25:21 +0100519static int init_io_u(struct thread_data *td)
520{
521 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100522 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100523 int i, max_units;
524 char *p;
525
Jens Axboe2866c822006-10-09 15:57:48 +0200526 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200527 return 0;
528
Jens Axboe2866c822006-10-09 15:57:48 +0200529 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100530 max_units = 1;
531 else
532 max_units = td->iodepth;
533
Jens Axboea00735e2006-11-03 08:58:08 +0100534 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100535 td->orig_buffer_size = max_bs * max_units;
536
Jens Axboed0bdaf42006-12-20 14:40:44 +0100537 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100538 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100539 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100540 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100541
Jens Axboe2f9ade32006-10-20 11:25:52 +0200542 if (allocate_io_mem(td))
543 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100544
Jens Axboeebac4652005-12-08 15:25:21 +0100545 p = ALIGN(td->orig_buffer);
546 for (i = 0; i < max_units; i++) {
547 io_u = malloc(sizeof(*io_u));
548 memset(io_u, 0, sizeof(*io_u));
549 INIT_LIST_HEAD(&io_u->list);
550
Jens Axboea00735e2006-11-03 08:58:08 +0100551 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100552 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100553 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100554
Jens Axboeb1ff3402006-02-17 11:35:58 +0100555 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100556 list_add(&io_u->list, &td->io_u_freelist);
557 }
558
559 return 0;
560}
561
Jens Axboeda867742006-06-06 10:39:10 -0700562static int switch_ioscheduler(struct thread_data *td)
563{
564 char tmp[256], tmp2[128];
565 FILE *f;
566 int ret;
567
Jens Axboef48b4672006-10-27 11:30:07 +0200568 if (td->io_ops->flags & FIO_CPUIO)
569 return 0;
570
Jens Axboeda867742006-06-06 10:39:10 -0700571 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
572
573 f = fopen(tmp, "r+");
574 if (!f) {
575 td_verror(td, errno);
576 return 1;
577 }
578
579 /*
580 * Set io scheduler.
581 */
582 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
583 if (ferror(f) || ret != 1) {
584 td_verror(td, errno);
585 fclose(f);
586 return 1;
587 }
588
589 rewind(f);
590
591 /*
592 * Read back and check that the selected scheduler is now the default.
593 */
594 ret = fread(tmp, 1, sizeof(tmp), f);
595 if (ferror(f) || ret < 0) {
596 td_verror(td, errno);
597 fclose(f);
598 return 1;
599 }
600
601 sprintf(tmp2, "[%s]", td->ioscheduler);
602 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200603 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700604 td_verror(td, EINVAL);
605 fclose(f);
606 return 1;
607 }
608
609 fclose(f);
610 return 0;
611}
612
Jens Axboeebac4652005-12-08 15:25:21 +0100613static void clear_io_state(struct thread_data *td)
614{
Jens Axboe53cdc682006-10-18 11:50:58 +0200615 struct fio_file *f;
616 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100617
Jens Axboe079ad092007-02-20 13:58:20 +0100618 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100619 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100620 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100621
Jens Axboec1324df2007-02-19 19:06:41 +0100622 td->last_was_sync = 0;
623
Jens Axboe53cdc682006-10-18 11:50:58 +0200624 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100625 f->last_completed_pos = 0;
626
Jens Axboe53cdc682006-10-18 11:50:58 +0200627 f->last_pos = 0;
628 if (td->io_ops->flags & FIO_SYNCIO)
629 lseek(f->fd, SEEK_SET, 0);
630
631 if (f->file_map)
632 memset(f->file_map, 0, f->num_maps * sizeof(long));
633 }
Jens Axboeebac4652005-12-08 15:25:21 +0100634}
635
Jens Axboe906c8d72006-06-13 09:37:56 +0200636/*
637 * Entry point for the thread based jobs. The process based jobs end up
638 * here as well, after a little setup.
639 */
Jens Axboeebac4652005-12-08 15:25:21 +0100640static void *thread_main(void *data)
641{
Jens Axboe69008992006-11-24 13:12:56 +0100642 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100643 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100644
645 if (!td->use_thread)
646 setsid();
647
648 td->pid = getpid();
649
Jens Axboeaea47d42006-05-26 19:27:29 +0200650 INIT_LIST_HEAD(&td->io_u_freelist);
651 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100652 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200653 INIT_LIST_HEAD(&td->io_hist_list);
654 INIT_LIST_HEAD(&td->io_log_list);
655
Jens Axboeebac4652005-12-08 15:25:21 +0100656 if (init_io_u(td))
657 goto err;
658
659 if (fio_setaffinity(td) == -1) {
660 td_verror(td, errno);
661 goto err;
662 }
663
Jens Axboeaea47d42006-05-26 19:27:29 +0200664 if (init_iolog(td))
665 goto err;
666
Jens Axboeebac4652005-12-08 15:25:21 +0100667 if (td->ioprio) {
668 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
669 td_verror(td, errno);
670 goto err;
671 }
672 }
673
Jens Axboe1056eaa2006-07-13 10:33:45 -0700674 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200675 td_verror(td, errno);
676 goto err;
677 }
678
Jens Axboe75154842006-06-01 13:56:09 +0200679 if (init_random_state(td))
680 goto err;
681
Jens Axboe56f94982006-10-24 09:33:42 +0200682 if (td->ioscheduler && switch_ioscheduler(td))
683 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700684
Jens Axboe75154842006-06-01 13:56:09 +0200685 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200686 fio_sem_up(&startup_sem);
687 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100688
Jens Axboe53cdc682006-10-18 11:50:58 +0200689 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100690 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100691 if (open_files(td))
692 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100693
Jens Axboe7d6c5282007-02-05 10:52:10 +0100694 /*
695 * Do this late, as some IO engines would like to have the
696 * files setup prior to initializing structures.
697 */
698 if (td_io_init(td))
699 goto err;
700
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100701 if (td->exec_prerun) {
702 if (system(td->exec_prerun) < 0)
703 goto err;
704 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200705
Jens Axboe69008992006-11-24 13:12:56 +0100706 fio_gettime(&td->epoch, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100707 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100708
709 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100710 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100711 fio_gettime(&td->start, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100712 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100713
714 if (td->ratemin)
Jens Axboe079ad092007-02-20 13:58:20 +0100715 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100716
717 clear_io_state(td);
718 prune_io_piece_log(td);
719
Jens Axboe2866c822006-10-09 15:57:48 +0200720 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200721 do_cpuio(td);
722 else
723 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100724
Jens Axboe69008992006-11-24 13:12:56 +0100725 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200726 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100727 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200728
Jens Axboeebac4652005-12-08 15:25:21 +0100729 if (td->error || td->terminate)
730 break;
731
732 if (td->verify == VERIFY_NONE)
733 continue;
734
735 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100736 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100737
738 do_verify(td);
739
Jens Axboe69008992006-11-24 13:12:56 +0100740 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100741
742 if (td->error || td->terminate)
743 break;
744 }
745
Jens Axboe36dff962006-11-24 13:29:20 +0100746 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100747 fio_gettime(&td->end_time, NULL);
748 td->runtime[0] = runtime[0] / 1000;
749 td->runtime[1] = runtime[1] / 1000;
750
Jens Axboe079ad092007-02-20 13:58:20 +0100751 if (td->ts.bw_log)
752 finish_log(td, td->ts.bw_log, "bw");
753 if (td->ts.slat_log)
754 finish_log(td, td->ts.slat_log, "slat");
755 if (td->ts.clat_log)
756 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200757 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700758 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100759 if (td->exec_postrun) {
760 if (system(td->exec_postrun) < 0)
761 log_err("fio: postrun %s failed\n", td->exec_postrun);
762 }
Jens Axboeebac4652005-12-08 15:25:21 +0100763
764 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100765 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100766
767err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100768 if (td->error)
769 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200770 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200771 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100772 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100773 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100774 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100775}
776
Jens Axboe906c8d72006-06-13 09:37:56 +0200777/*
778 * We cannot pass the td data into a forked process, so attach the td and
779 * pass it to the thread worker.
780 */
Jens Axboea6418142007-02-17 04:47:18 +0100781static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100782{
783 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100784 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100785
786 data = shmat(shmid, NULL, 0);
787 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100788 int __err = errno;
789
Jens Axboeebac4652005-12-08 15:25:21 +0100790 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100791 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100792 }
793
794 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100795 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100796 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100797 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100798}
799
Jens Axboe906c8d72006-06-13 09:37:56 +0200800/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200801 * Run over the job map and reap the threads that have exited, if any.
802 */
Jens Axboeebac4652005-12-08 15:25:21 +0100803static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
804{
Jens Axboe34572e22006-10-20 09:33:18 +0200805 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100806 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100807
808 /*
809 * reap exited threads (TD_EXITED -> TD_REAPED)
810 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100811 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200812 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200813 /*
814 * ->io_ops is NULL for a thread that has closed its
815 * io engine
816 */
817 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200818 cputhreads++;
819
Jens Axboefab6aa72007-02-17 06:19:24 +0100820 if (td->runstate < TD_EXITED) {
821 /*
822 * check if someone quit or got killed in an unusual way
823 */
824 ret = waitpid(td->pid, &status, WNOHANG);
825 if (ret < 0)
826 perror("waitpid");
827 else if ((ret == td->pid) && WIFSIGNALED(status)) {
828 int sig = WTERMSIG(status);
829
830 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
831 td_set_runstate(td, TD_REAPED);
832 goto reaped;
833 }
834 }
835
Jens Axboe4d2413c2006-11-23 11:58:59 +0100836 if (td->runstate != TD_EXITED) {
837 if (td->runstate < TD_RUNNING)
838 pending++;
839
Jens Axboeebac4652005-12-08 15:25:21 +0100840 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100841 }
Jens Axboeebac4652005-12-08 15:25:21 +0100842
Jens Axboe437c9b72007-02-13 18:20:37 +0100843 if (td->error)
844 exit_value++;
845
Jens Axboeebac4652005-12-08 15:25:21 +0100846 td_set_runstate(td, TD_REAPED);
847
848 if (td->use_thread) {
849 long ret;
850
851 if (pthread_join(td->thread, (void *) &ret))
852 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100853 } else {
854 int status;
855
Jens Axboefab6aa72007-02-17 06:19:24 +0100856 ret = waitpid(td->pid, &status, 0);
857 if (ret < 0)
858 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100859 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100860 if (!exit_value)
861 exit_value++;
862 }
863 }
Jens Axboeebac4652005-12-08 15:25:21 +0100864
Jens Axboefab6aa72007-02-17 06:19:24 +0100865reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100866 (*nr_running)--;
867 (*m_rate) -= td->ratemin;
868 (*t_rate) -= td->rate;
869 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200870
Jens Axboe4d2413c2006-11-23 11:58:59 +0100871 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100872 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100873}
874
Jens Axboe906c8d72006-06-13 09:37:56 +0200875/*
876 * Main function for kicking off and reaping jobs, as needed.
877 */
Jens Axboeebac4652005-12-08 15:25:21 +0100878static void run_threads(void)
879{
Jens Axboeebac4652005-12-08 15:25:21 +0100880 struct thread_data *td;
881 unsigned long spent;
882 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200883
Jens Axboe2f9ade32006-10-20 11:25:52 +0200884 if (fio_pin_memory())
885 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100886
Jens Axboec6ae0a52006-06-12 11:04:44 +0200887 if (!terse_output) {
888 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
889 fflush(stdout);
890 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200891
Jens Axboe4efa9702006-05-31 11:56:49 +0200892 signal(SIGINT, sig_handler);
893 signal(SIGALRM, sig_handler);
894
Jens Axboeebac4652005-12-08 15:25:21 +0100895 todo = thread_number;
896 nr_running = 0;
897 nr_started = 0;
898 m_rate = t_rate = 0;
899
Jens Axboe34572e22006-10-20 09:33:18 +0200900 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200901 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100902
Jens Axboe380cf262007-01-11 14:01:27 +0100903 if (!td->create_serialize) {
904 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100905 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100906 }
Jens Axboeebac4652005-12-08 15:25:21 +0100907
908 /*
909 * do file setup here so it happens sequentially,
910 * we don't want X number of threads getting their
911 * client data interspersed on disk
912 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200913 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100914 exit_value++;
915 if (td->error)
916 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100917 td_set_runstate(td, TD_REAPED);
918 todo--;
919 }
Jens Axboe380cf262007-01-11 14:01:27 +0100920
921 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100922 }
923
Jens Axboeebac4652005-12-08 15:25:21 +0100924 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200925 struct thread_data *map[MAX_JOBS];
926 struct timeval this_start;
927 int this_jobs = 0, left;
928
Jens Axboeebac4652005-12-08 15:25:21 +0100929 /*
930 * create threads (TD_NOT_CREATED -> TD_CREATED)
931 */
Jens Axboe34572e22006-10-20 09:33:18 +0200932 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100933 if (td->runstate != TD_NOT_CREATED)
934 continue;
935
936 /*
937 * never got a chance to start, killed by other
938 * thread for some reason
939 */
940 if (td->terminate) {
941 todo--;
942 continue;
943 }
944
945 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200946 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100947
948 if (td->start_delay * 1000 > spent)
949 continue;
950 }
951
952 if (td->stonewall && (nr_started || nr_running))
953 break;
954
Jens Axboe75154842006-06-01 13:56:09 +0200955 /*
956 * Set state to created. Thread will transition
957 * to TD_INITIALIZED when it's done setting up.
958 */
Jens Axboeebac4652005-12-08 15:25:21 +0100959 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200960 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200961 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100962 nr_started++;
963
964 if (td->use_thread) {
965 if (pthread_create(&td->thread, NULL, thread_main, td)) {
966 perror("thread_create");
967 nr_started--;
968 }
969 } else {
970 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200971 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100972 else {
Jens Axboea6418142007-02-17 04:47:18 +0100973 int ret = fork_main(shm_id, i);
974
975 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100976 }
977 }
978 }
979
980 /*
Jens Axboe75154842006-06-01 13:56:09 +0200981 * Wait for the started threads to transition to
982 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100983 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100984 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200985 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100986 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200987 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
988 break;
989
990 usleep(100000);
991
992 for (i = 0; i < this_jobs; i++) {
993 td = map[i];
994 if (!td)
995 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200996 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200997 map[i] = NULL;
998 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200999 } else if (td->runstate >= TD_EXITED) {
1000 map[i] = NULL;
1001 left--;
1002 todo--;
1003 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001004 }
1005 }
1006 }
1007
1008 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001009 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001010 for (i = 0; i < this_jobs; i++) {
1011 td = map[i];
1012 if (!td)
1013 continue;
1014 kill(td->pid, SIGTERM);
1015 }
1016 break;
1017 }
1018
1019 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001020 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001021 */
Jens Axboe34572e22006-10-20 09:33:18 +02001022 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001023 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001024 continue;
1025
1026 td_set_runstate(td, TD_RUNNING);
1027 nr_running++;
1028 nr_started--;
1029 m_rate += td->ratemin;
1030 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001031 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001032 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001033 }
1034
1035 reap_threads(&nr_running, &t_rate, &m_rate);
1036
1037 if (todo)
1038 usleep(100000);
1039 }
1040
1041 while (nr_running) {
1042 reap_threads(&nr_running, &t_rate, &m_rate);
1043 usleep(10000);
1044 }
1045
1046 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001047 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001048}
1049
Jens Axboeebac4652005-12-08 15:25:21 +01001050int main(int argc, char *argv[])
1051{
Jens Axboe29d610e2007-02-06 13:25:33 +01001052 long ps;
1053
Jens Axboedbe11252007-02-11 00:19:51 +01001054 /*
1055 * We need locale for number printing, if it isn't set then just
1056 * go with the US format.
1057 */
1058 if (!getenv("LC_NUMERIC"))
1059 setlocale(LC_NUMERIC, "en_US");
1060
Jens Axboeebac4652005-12-08 15:25:21 +01001061 if (parse_options(argc, argv))
1062 return 1;
1063
1064 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001065 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001066 return 1;
1067 }
1068
Jens Axboe29d610e2007-02-06 13:25:33 +01001069 ps = sysconf(_SC_PAGESIZE);
1070 if (ps < 0) {
1071 log_err("Failed to get page size\n");
1072 return 1;
1073 }
1074
1075 page_mask = ps - 1;
1076
Jens Axboebb3884d2007-01-17 17:23:11 +11001077 if (write_bw_log) {
1078 setup_log(&agg_io_log[DDIR_READ]);
1079 setup_log(&agg_io_log[DDIR_WRITE]);
1080 }
1081
Jens Axboeebac4652005-12-08 15:25:21 +01001082 disk_util_timer_arm();
1083
1084 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001085
Jens Axboebb3884d2007-01-17 17:23:11 +11001086 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001087 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001088 if (write_bw_log) {
1089 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1090 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1091 }
1092 }
Jens Axboeebac4652005-12-08 15:25:21 +01001093
Jens Axboe437c9b72007-02-13 18:20:37 +01001094 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001095}