blob: 4596544429c9212e6cabc60b15ff9f09f7ef6291 [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 Axboe97601022007-02-18 12:47:29 +0100152 io_u_queued_complete(td, 0, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100153
154 /*
155 * now cancel remaining active events
156 */
Jens Axboe2866c822006-10-09 15:57:48 +0200157 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100158 list_for_each_safe(entry, n, &td->io_u_busylist) {
159 io_u = list_entry(entry, struct io_u, list);
160
Jens Axboe2866c822006-10-09 15:57:48 +0200161 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100162 if (!r)
163 put_io_u(td, io_u);
164 }
165 }
166
Jens Axboe97601022007-02-18 12:47:29 +0100167 if (td->cur_depth)
168 io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100169}
170
Jens Axboe906c8d72006-06-13 09:37:56 +0200171/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200172 * Helper to handle the final sync of a file. Works just like the normal
173 * io path, just does everything sync.
174 */
175static int fio_io_sync(struct thread_data *td, struct fio_file *f)
176{
177 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200178 int ret;
179
180 if (!io_u)
181 return 1;
182
183 io_u->ddir = DDIR_SYNC;
184 io_u->file = f;
185
186 if (td_io_prep(td, io_u)) {
187 put_io_u(td, io_u);
188 return 1;
189 }
190
Jens Axboe755200a2007-02-19 13:08:12 +0100191requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200192 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100193 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200194 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200195 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200196 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100197 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe97601022007-02-18 12:47:29 +0100198 if (io_u_queued_complete(td, 1, NULL))
Jens Axboe36167d82007-02-18 05:41:31 +0100199 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100200 } else if (ret == FIO_Q_COMPLETED) {
201 if (io_u->error) {
202 td_verror(td, io_u->error);
203 return 1;
204 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200205
Jens Axboe97601022007-02-18 12:47:29 +0100206 io_u_sync_complete(td, io_u, NULL);
Jens Axboe755200a2007-02-19 13:08:12 +0100207 } else if (ret == FIO_Q_BUSY) {
208 if (td_io_commit(td))
209 return 1;
210 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200211 }
212
213 return 0;
214}
215
216/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200217 * The main verify engine. Runs over the writes we previusly submitted,
218 * reads the blocks back in, and checks the crc/md5 of the data.
219 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100220static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100221{
Jens Axboe53cdc682006-10-18 11:50:58 +0200222 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100223 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100224 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200225
226 /*
227 * sync io first and invalidate cache, to make sure we really
228 * read from disk.
229 */
230 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200231 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200232 file_invalidate_cache(td, f);
233 }
Jens Axboeebac4652005-12-08 15:25:21 +0100234
235 td_set_runstate(td, TD_VERIFYING);
236
Jens Axboe36167d82007-02-18 05:41:31 +0100237 io_u = NULL;
238 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100239 io_u = __get_io_u(td);
240 if (!io_u)
241 break;
242
Jens Axboe36167d82007-02-18 05:41:31 +0100243 if (runtime_exceeded(td, &io_u->start_time))
Jens Axboe53cdc682006-10-18 11:50:58 +0200244 break;
245
Jens Axboe36167d82007-02-18 05:41:31 +0100246 if (get_next_verify(td, io_u))
Jens Axboeebac4652005-12-08 15:25:21 +0100247 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100248
Jens Axboe36167d82007-02-18 05:41:31 +0100249 if (td_io_prep(td, io_u))
250 break;
251
252requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200253 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100254
255 switch (ret) {
256 case FIO_Q_COMPLETED:
257 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100258 ret = -io_u->error;
Jens Axboe36167d82007-02-18 05:41:31 +0100259 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
260 int bytes = io_u->xfer_buflen - io_u->resid;
261
262 io_u->xfer_buflen = io_u->resid;
263 io_u->xfer_buf += bytes;
264 goto requeue;
265 }
Jens Axboe99784632007-02-19 10:06:17 +0100266 ret = io_u_sync_complete(td, io_u, verify_io_u);
267 if (ret)
Jens Axboe36167d82007-02-18 05:41:31 +0100268 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100269 continue;
270 case FIO_Q_QUEUED:
271 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100272 case FIO_Q_BUSY:
273 requeue_io_u(td, &io_u);
274 ret = td_io_commit(td);
275 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100276 default:
277 assert(ret < 0);
Jens Axboe22819ec2007-02-18 07:47:14 +0100278 td_verror(td, -ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100279 break;
280 }
281
Jens Axboe99784632007-02-19 10:06:17 +0100282 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100283 break;
284
Jens Axboe3af6ef32007-02-18 06:57:43 +0100285 /*
286 * if we can queue more, do so. but check if there are
287 * completed io_u's first.
288 */
Jens Axboe97601022007-02-18 12:47:29 +0100289 min_events = 0;
Jens Axboe755200a2007-02-19 13:08:12 +0100290 if (queue_full(td) || ret == FIO_Q_BUSY)
Jens Axboe3af6ef32007-02-18 06:57:43 +0100291 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100292
293 /*
294 * Reap required number of io units, if any, and do the
295 * verification on them through the callback handler
296 */
Jens Axboe97601022007-02-18 12:47:29 +0100297 if (io_u_queued_complete(td, min_events, verify_io_u))
Jens Axboe36167d82007-02-18 05:41:31 +0100298 break;
299 }
300
301 if (io_u)
302 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100303
304 if (td->cur_depth)
305 cleanup_pending_aio(td);
306
307 td_set_runstate(td, TD_RUNNING);
308}
309
Jens Axboe32cd46a2006-06-07 13:40:40 +0200310/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200311 * Not really an io thread, all it does is burn CPU cycles in the specified
312 * manner.
313 */
314static void do_cpuio(struct thread_data *td)
315{
316 struct timeval e;
317 int split = 100 / td->cpuload;
318 int i = 0;
319
320 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100321 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200322
323 if (runtime_exceeded(td, &e))
324 break;
325
326 if (!(i % split))
327 __usec_sleep(10000);
328 else
329 usec_sleep(td, 10000);
330
331 i++;
332 }
333}
334
335/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200336 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200337 * and reaps them, checking for rate and errors along the way.
338 */
Jens Axboeebac4652005-12-08 15:25:21 +0100339static void do_io(struct thread_data *td)
340{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100341 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100342 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200343 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100344
Jens Axboe5853e5a2006-06-08 14:41:05 +0200345 td_set_runstate(td, TD_RUNNING);
346
Jens Axboe39514142007-02-12 18:49:58 +0100347 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100348 struct timeval comp_time;
349 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200350 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100351 struct io_u *io_u;
352
353 if (td->terminate)
354 break;
355
Jens Axboe3d7c3912007-02-19 13:16:12 +0100356 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100357 if (!io_u)
358 break;
359
360 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100361
362 if (runtime_exceeded(td, &s)) {
363 put_io_u(td, io_u);
364 break;
365 }
Jens Axboecec6b552007-02-06 20:15:38 +0100366requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200367 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100368
369 switch (ret) {
370 case FIO_Q_COMPLETED:
371 if (io_u->error) {
372 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100373 break;
374 }
Jens Axboe36167d82007-02-18 05:41:31 +0100375 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
376 int bytes = io_u->xfer_buflen - io_u->resid;
377
378 io_u->xfer_buflen = io_u->resid;
379 io_u->xfer_buf += bytes;
380 goto requeue;
381 }
Jens Axboe97601022007-02-18 12:47:29 +0100382 fio_gettime(&comp_time, NULL);
383 bytes_done = io_u_sync_complete(td, io_u, NULL);
Jens Axboe99784632007-02-19 10:06:17 +0100384 if (bytes_done < 0)
385 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100386 break;
387 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100388 /*
389 * if the engine doesn't have a commit hook,
390 * the io_u is really queued. if it does have such
391 * a hook, it has to call io_u_queued() itself.
392 */
393 if (td->io_ops->commit == NULL)
394 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100395 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100396 case FIO_Q_BUSY:
397 requeue_io_u(td, &io_u);
398 ret = td_io_commit(td);
399 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100400 default:
401 assert(ret < 0);
402 put_io_u(td, io_u);
403 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100404 }
405
Jens Axboe99784632007-02-19 10:06:17 +0100406 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100407 break;
408
Jens Axboe97601022007-02-18 12:47:29 +0100409 /*
410 * See if we need to complete some commands
411 */
Jens Axboe755200a2007-02-19 13:08:12 +0100412 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100413 min_evts = 0;
Jens Axboe755200a2007-02-19 13:08:12 +0100414 if (queue_full(td) || ret == FIO_Q_BUSY)
Jens Axboe36167d82007-02-18 05:41:31 +0100415 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100416
Jens Axboe97601022007-02-18 12:47:29 +0100417 fio_gettime(&comp_time, NULL);
418 bytes_done = io_u_queued_complete(td, min_evts, NULL);
419 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100420 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100421 }
422
Jens Axboe97601022007-02-18 12:47:29 +0100423 if (!bytes_done)
424 continue;
425
Jens Axboeebac4652005-12-08 15:25:21 +0100426 /*
427 * the rate is batched for now, it should work for batches
428 * of completions except the very first one which may look
429 * a little bursty
430 */
Jens Axboe97601022007-02-18 12:47:29 +0100431 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100432
Jens Axboe97601022007-02-18 12:47:29 +0100433 rate_throttle(td, usec, bytes_done, td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100434
Jens Axboe97601022007-02-18 12:47:29 +0100435 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100436 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100437 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100438 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100439 break;
440 }
441
Jens Axboe9c1f7432007-01-03 20:43:19 +0100442 if (td->thinktime) {
443 unsigned long long b;
444
445 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100446 if (!(b % td->thinktime_blocks)) {
447 int left;
448
449 if (td->thinktime_spin)
450 __usec_sleep(td->thinktime_spin);
451
452 left = td->thinktime - td->thinktime_spin;
453 if (left)
454 usec_sleep(td, left);
455 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100456 }
Jens Axboeebac4652005-12-08 15:25:21 +0100457 }
458
Jens Axboe4d2413c2006-11-23 11:58:59 +0100459 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100460 struct fio_file *f;
461
Jens Axboe84585002006-10-19 20:26:22 +0200462 if (td->cur_depth)
463 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100464
Jens Axboe84585002006-10-19 20:26:22 +0200465 if (should_fsync(td) && td->end_fsync) {
466 td_set_runstate(td, TD_FSYNCING);
467 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200468 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200469 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200470 }
Jens Axboeebac4652005-12-08 15:25:21 +0100471}
472
Jens Axboeebac4652005-12-08 15:25:21 +0100473static void cleanup_io_u(struct thread_data *td)
474{
475 struct list_head *entry, *n;
476 struct io_u *io_u;
477
478 list_for_each_safe(entry, n, &td->io_u_freelist) {
479 io_u = list_entry(entry, struct io_u, list);
480
481 list_del(&io_u->list);
482 free(io_u);
483 }
484
Jens Axboe2f9ade32006-10-20 11:25:52 +0200485 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100486}
487
Jens Axboe6b9cea22006-10-30 17:00:24 +0100488/*
489 * "randomly" fill the buffer contents
490 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100491static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100492{
Jens Axboe66eeb292006-11-01 08:35:44 +0100493 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100494
495 while ((void *) ptr - io_u->buf < max_bs) {
496 *ptr = rand() * 0x9e370001;
497 ptr++;
498 }
499}
500
Jens Axboeebac4652005-12-08 15:25:21 +0100501static int init_io_u(struct thread_data *td)
502{
503 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100504 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100505 int i, max_units;
506 char *p;
507
Jens Axboe2866c822006-10-09 15:57:48 +0200508 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200509 return 0;
510
Jens Axboe2866c822006-10-09 15:57:48 +0200511 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100512 max_units = 1;
513 else
514 max_units = td->iodepth;
515
Jens Axboea00735e2006-11-03 08:58:08 +0100516 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100517 td->orig_buffer_size = max_bs * max_units;
518
Jens Axboed0bdaf42006-12-20 14:40:44 +0100519 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100520 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100521 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100522 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100523
Jens Axboe2f9ade32006-10-20 11:25:52 +0200524 if (allocate_io_mem(td))
525 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100526
Jens Axboeebac4652005-12-08 15:25:21 +0100527 p = ALIGN(td->orig_buffer);
528 for (i = 0; i < max_units; i++) {
529 io_u = malloc(sizeof(*io_u));
530 memset(io_u, 0, sizeof(*io_u));
531 INIT_LIST_HEAD(&io_u->list);
532
Jens Axboea00735e2006-11-03 08:58:08 +0100533 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100534 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100535 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100536
Jens Axboeb1ff3402006-02-17 11:35:58 +0100537 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100538 list_add(&io_u->list, &td->io_u_freelist);
539 }
540
541 return 0;
542}
543
Jens Axboeda867742006-06-06 10:39:10 -0700544static int switch_ioscheduler(struct thread_data *td)
545{
546 char tmp[256], tmp2[128];
547 FILE *f;
548 int ret;
549
Jens Axboef48b4672006-10-27 11:30:07 +0200550 if (td->io_ops->flags & FIO_CPUIO)
551 return 0;
552
Jens Axboeda867742006-06-06 10:39:10 -0700553 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
554
555 f = fopen(tmp, "r+");
556 if (!f) {
557 td_verror(td, errno);
558 return 1;
559 }
560
561 /*
562 * Set io scheduler.
563 */
564 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
565 if (ferror(f) || ret != 1) {
566 td_verror(td, errno);
567 fclose(f);
568 return 1;
569 }
570
571 rewind(f);
572
573 /*
574 * Read back and check that the selected scheduler is now the default.
575 */
576 ret = fread(tmp, 1, sizeof(tmp), f);
577 if (ferror(f) || ret < 0) {
578 td_verror(td, errno);
579 fclose(f);
580 return 1;
581 }
582
583 sprintf(tmp2, "[%s]", td->ioscheduler);
584 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200585 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700586 td_verror(td, EINVAL);
587 fclose(f);
588 return 1;
589 }
590
591 fclose(f);
592 return 0;
593}
594
Jens Axboeebac4652005-12-08 15:25:21 +0100595static void clear_io_state(struct thread_data *td)
596{
Jens Axboe53cdc682006-10-18 11:50:58 +0200597 struct fio_file *f;
598 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100599
Jens Axboeebac4652005-12-08 15:25:21 +0100600 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
601 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100602 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100603
Jens Axboec1324df2007-02-19 19:06:41 +0100604 td->last_was_sync = 0;
605
Jens Axboe53cdc682006-10-18 11:50:58 +0200606 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100607 f->last_completed_pos = 0;
608
Jens Axboe53cdc682006-10-18 11:50:58 +0200609 f->last_pos = 0;
610 if (td->io_ops->flags & FIO_SYNCIO)
611 lseek(f->fd, SEEK_SET, 0);
612
613 if (f->file_map)
614 memset(f->file_map, 0, f->num_maps * sizeof(long));
615 }
Jens Axboeebac4652005-12-08 15:25:21 +0100616}
617
Jens Axboe906c8d72006-06-13 09:37:56 +0200618/*
619 * Entry point for the thread based jobs. The process based jobs end up
620 * here as well, after a little setup.
621 */
Jens Axboeebac4652005-12-08 15:25:21 +0100622static void *thread_main(void *data)
623{
Jens Axboe69008992006-11-24 13:12:56 +0100624 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100625 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100626
627 if (!td->use_thread)
628 setsid();
629
630 td->pid = getpid();
631
Jens Axboeaea47d42006-05-26 19:27:29 +0200632 INIT_LIST_HEAD(&td->io_u_freelist);
633 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100634 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200635 INIT_LIST_HEAD(&td->io_hist_list);
636 INIT_LIST_HEAD(&td->io_log_list);
637
Jens Axboeebac4652005-12-08 15:25:21 +0100638 if (init_io_u(td))
639 goto err;
640
641 if (fio_setaffinity(td) == -1) {
642 td_verror(td, errno);
643 goto err;
644 }
645
Jens Axboeaea47d42006-05-26 19:27:29 +0200646 if (init_iolog(td))
647 goto err;
648
Jens Axboeebac4652005-12-08 15:25:21 +0100649 if (td->ioprio) {
650 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
651 td_verror(td, errno);
652 goto err;
653 }
654 }
655
Jens Axboe1056eaa2006-07-13 10:33:45 -0700656 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200657 td_verror(td, errno);
658 goto err;
659 }
660
Jens Axboe75154842006-06-01 13:56:09 +0200661 if (init_random_state(td))
662 goto err;
663
Jens Axboe56f94982006-10-24 09:33:42 +0200664 if (td->ioscheduler && switch_ioscheduler(td))
665 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700666
Jens Axboe75154842006-06-01 13:56:09 +0200667 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200668 fio_sem_up(&startup_sem);
669 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100670
Jens Axboe53cdc682006-10-18 11:50:58 +0200671 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100672 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100673 if (open_files(td))
674 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100675
Jens Axboe7d6c5282007-02-05 10:52:10 +0100676 /*
677 * Do this late, as some IO engines would like to have the
678 * files setup prior to initializing structures.
679 */
680 if (td_io_init(td))
681 goto err;
682
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100683 if (td->exec_prerun) {
684 if (system(td->exec_prerun) < 0)
685 goto err;
686 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200687
Jens Axboe69008992006-11-24 13:12:56 +0100688 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100689 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100690
691 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100692 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100693 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100694 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
695
696 if (td->ratemin)
697 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
698
699 clear_io_state(td);
700 prune_io_piece_log(td);
701
Jens Axboe2866c822006-10-09 15:57:48 +0200702 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200703 do_cpuio(td);
704 else
705 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100706
Jens Axboe69008992006-11-24 13:12:56 +0100707 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200708 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100709 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200710
Jens Axboeebac4652005-12-08 15:25:21 +0100711 if (td->error || td->terminate)
712 break;
713
714 if (td->verify == VERIFY_NONE)
715 continue;
716
717 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100718 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100719
720 do_verify(td);
721
Jens Axboe69008992006-11-24 13:12:56 +0100722 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100723
724 if (td->error || td->terminate)
725 break;
726 }
727
Jens Axboe36dff962006-11-24 13:29:20 +0100728 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100729 fio_gettime(&td->end_time, NULL);
730 td->runtime[0] = runtime[0] / 1000;
731 td->runtime[1] = runtime[1] / 1000;
732
Jens Axboeebac4652005-12-08 15:25:21 +0100733 if (td->bw_log)
734 finish_log(td, td->bw_log, "bw");
735 if (td->slat_log)
736 finish_log(td, td->slat_log, "slat");
737 if (td->clat_log)
738 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200739 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700740 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100741 if (td->exec_postrun) {
742 if (system(td->exec_postrun) < 0)
743 log_err("fio: postrun %s failed\n", td->exec_postrun);
744 }
Jens Axboeebac4652005-12-08 15:25:21 +0100745
746 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100747 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100748
749err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100750 if (td->error)
751 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200752 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200753 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100754 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100755 td_set_runstate(td, TD_EXITED);
Jens Axboea6418142007-02-17 04:47:18 +0100756 return (void *) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100757}
758
Jens Axboe906c8d72006-06-13 09:37:56 +0200759/*
760 * We cannot pass the td data into a forked process, so attach the td and
761 * pass it to the thread worker.
762 */
Jens Axboea6418142007-02-17 04:47:18 +0100763static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100764{
765 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100766 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100767
768 data = shmat(shmid, NULL, 0);
769 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100770 int __err = errno;
771
Jens Axboeebac4652005-12-08 15:25:21 +0100772 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100773 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100774 }
775
776 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100777 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100778 shmdt(data);
Jens Axboea6418142007-02-17 04:47:18 +0100779 return (int) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100780}
781
Jens Axboe906c8d72006-06-13 09:37:56 +0200782/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200783 * Run over the job map and reap the threads that have exited, if any.
784 */
Jens Axboeebac4652005-12-08 15:25:21 +0100785static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
786{
Jens Axboe34572e22006-10-20 09:33:18 +0200787 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100788 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100789
790 /*
791 * reap exited threads (TD_EXITED -> TD_REAPED)
792 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100793 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200794 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200795 /*
796 * ->io_ops is NULL for a thread that has closed its
797 * io engine
798 */
799 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200800 cputhreads++;
801
Jens Axboefab6aa72007-02-17 06:19:24 +0100802 if (td->runstate < TD_EXITED) {
803 /*
804 * check if someone quit or got killed in an unusual way
805 */
806 ret = waitpid(td->pid, &status, WNOHANG);
807 if (ret < 0)
808 perror("waitpid");
809 else if ((ret == td->pid) && WIFSIGNALED(status)) {
810 int sig = WTERMSIG(status);
811
812 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
813 td_set_runstate(td, TD_REAPED);
814 goto reaped;
815 }
816 }
817
Jens Axboe4d2413c2006-11-23 11:58:59 +0100818 if (td->runstate != TD_EXITED) {
819 if (td->runstate < TD_RUNNING)
820 pending++;
821
Jens Axboeebac4652005-12-08 15:25:21 +0100822 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100823 }
Jens Axboeebac4652005-12-08 15:25:21 +0100824
Jens Axboe437c9b72007-02-13 18:20:37 +0100825 if (td->error)
826 exit_value++;
827
Jens Axboeebac4652005-12-08 15:25:21 +0100828 td_set_runstate(td, TD_REAPED);
829
830 if (td->use_thread) {
831 long ret;
832
833 if (pthread_join(td->thread, (void *) &ret))
834 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100835 } else {
836 int status;
837
Jens Axboefab6aa72007-02-17 06:19:24 +0100838 ret = waitpid(td->pid, &status, 0);
839 if (ret < 0)
840 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100841 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100842 if (!exit_value)
843 exit_value++;
844 }
845 }
Jens Axboeebac4652005-12-08 15:25:21 +0100846
Jens Axboefab6aa72007-02-17 06:19:24 +0100847reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100848 (*nr_running)--;
849 (*m_rate) -= td->ratemin;
850 (*t_rate) -= td->rate;
851 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200852
Jens Axboe4d2413c2006-11-23 11:58:59 +0100853 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100854 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100855}
856
Jens Axboe906c8d72006-06-13 09:37:56 +0200857/*
858 * Main function for kicking off and reaping jobs, as needed.
859 */
Jens Axboeebac4652005-12-08 15:25:21 +0100860static void run_threads(void)
861{
Jens Axboeebac4652005-12-08 15:25:21 +0100862 struct thread_data *td;
863 unsigned long spent;
864 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200865
Jens Axboe2f9ade32006-10-20 11:25:52 +0200866 if (fio_pin_memory())
867 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100868
Jens Axboec6ae0a52006-06-12 11:04:44 +0200869 if (!terse_output) {
870 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
871 fflush(stdout);
872 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200873
Jens Axboe4efa9702006-05-31 11:56:49 +0200874 signal(SIGINT, sig_handler);
875 signal(SIGALRM, sig_handler);
876
Jens Axboeebac4652005-12-08 15:25:21 +0100877 todo = thread_number;
878 nr_running = 0;
879 nr_started = 0;
880 m_rate = t_rate = 0;
881
Jens Axboe34572e22006-10-20 09:33:18 +0200882 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200883 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100884
Jens Axboe380cf262007-01-11 14:01:27 +0100885 if (!td->create_serialize) {
886 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100887 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100888 }
Jens Axboeebac4652005-12-08 15:25:21 +0100889
890 /*
891 * do file setup here so it happens sequentially,
892 * we don't want X number of threads getting their
893 * client data interspersed on disk
894 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200895 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100896 exit_value++;
897 if (td->error)
898 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100899 td_set_runstate(td, TD_REAPED);
900 todo--;
901 }
Jens Axboe380cf262007-01-11 14:01:27 +0100902
903 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100904 }
905
Jens Axboeebac4652005-12-08 15:25:21 +0100906 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200907 struct thread_data *map[MAX_JOBS];
908 struct timeval this_start;
909 int this_jobs = 0, left;
910
Jens Axboeebac4652005-12-08 15:25:21 +0100911 /*
912 * create threads (TD_NOT_CREATED -> TD_CREATED)
913 */
Jens Axboe34572e22006-10-20 09:33:18 +0200914 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100915 if (td->runstate != TD_NOT_CREATED)
916 continue;
917
918 /*
919 * never got a chance to start, killed by other
920 * thread for some reason
921 */
922 if (td->terminate) {
923 todo--;
924 continue;
925 }
926
927 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200928 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100929
930 if (td->start_delay * 1000 > spent)
931 continue;
932 }
933
934 if (td->stonewall && (nr_started || nr_running))
935 break;
936
Jens Axboe75154842006-06-01 13:56:09 +0200937 /*
938 * Set state to created. Thread will transition
939 * to TD_INITIALIZED when it's done setting up.
940 */
Jens Axboeebac4652005-12-08 15:25:21 +0100941 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200942 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200943 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100944 nr_started++;
945
946 if (td->use_thread) {
947 if (pthread_create(&td->thread, NULL, thread_main, td)) {
948 perror("thread_create");
949 nr_started--;
950 }
951 } else {
952 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200953 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100954 else {
Jens Axboea6418142007-02-17 04:47:18 +0100955 int ret = fork_main(shm_id, i);
956
957 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100958 }
959 }
960 }
961
962 /*
Jens Axboe75154842006-06-01 13:56:09 +0200963 * Wait for the started threads to transition to
964 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100965 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100966 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200967 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100968 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200969 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
970 break;
971
972 usleep(100000);
973
974 for (i = 0; i < this_jobs; i++) {
975 td = map[i];
976 if (!td)
977 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200978 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200979 map[i] = NULL;
980 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200981 } else if (td->runstate >= TD_EXITED) {
982 map[i] = NULL;
983 left--;
984 todo--;
985 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +0200986 }
987 }
988 }
989
990 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200991 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +0200992 for (i = 0; i < this_jobs; i++) {
993 td = map[i];
994 if (!td)
995 continue;
996 kill(td->pid, SIGTERM);
997 }
998 break;
999 }
1000
1001 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001002 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001003 */
Jens Axboe34572e22006-10-20 09:33:18 +02001004 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001005 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001006 continue;
1007
1008 td_set_runstate(td, TD_RUNNING);
1009 nr_running++;
1010 nr_started--;
1011 m_rate += td->ratemin;
1012 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001013 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001014 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001015 }
1016
1017 reap_threads(&nr_running, &t_rate, &m_rate);
1018
1019 if (todo)
1020 usleep(100000);
1021 }
1022
1023 while (nr_running) {
1024 reap_threads(&nr_running, &t_rate, &m_rate);
1025 usleep(10000);
1026 }
1027
1028 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001029 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001030}
1031
Jens Axboeebac4652005-12-08 15:25:21 +01001032int main(int argc, char *argv[])
1033{
Jens Axboe29d610e2007-02-06 13:25:33 +01001034 long ps;
1035
Jens Axboedbe11252007-02-11 00:19:51 +01001036 /*
1037 * We need locale for number printing, if it isn't set then just
1038 * go with the US format.
1039 */
1040 if (!getenv("LC_NUMERIC"))
1041 setlocale(LC_NUMERIC, "en_US");
1042
Jens Axboeebac4652005-12-08 15:25:21 +01001043 if (parse_options(argc, argv))
1044 return 1;
1045
1046 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001047 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001048 return 1;
1049 }
1050
Jens Axboe29d610e2007-02-06 13:25:33 +01001051 ps = sysconf(_SC_PAGESIZE);
1052 if (ps < 0) {
1053 log_err("Failed to get page size\n");
1054 return 1;
1055 }
1056
1057 page_mask = ps - 1;
1058
Jens Axboebb3884d2007-01-17 17:23:11 +11001059 if (write_bw_log) {
1060 setup_log(&agg_io_log[DDIR_READ]);
1061 setup_log(&agg_io_log[DDIR_WRITE]);
1062 }
1063
Jens Axboeebac4652005-12-08 15:25:21 +01001064 disk_util_timer_arm();
1065
1066 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001067
Jens Axboebb3884d2007-01-17 17:23:11 +11001068 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001069 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001070 if (write_bw_log) {
1071 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1072 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1073 }
1074 }
Jens Axboeebac4652005-12-08 15:25:21 +01001075
Jens Axboe437c9b72007-02-13 18:20:37 +01001076 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001077}