blob: 3c64b7b7cab87a1eb0a40d342bb410244a3b360f [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:
388 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100389 case FIO_Q_BUSY:
390 requeue_io_u(td, &io_u);
391 ret = td_io_commit(td);
392 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100393 default:
394 assert(ret < 0);
395 put_io_u(td, io_u);
396 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100397 }
398
Jens Axboe99784632007-02-19 10:06:17 +0100399 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100400 break;
401
Jens Axboe755200a2007-02-19 13:08:12 +0100402 if (io_u)
403 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
Jens Axboeebac4652005-12-08 15:25:21 +0100404
Jens Axboe97601022007-02-18 12:47:29 +0100405 /*
406 * See if we need to complete some commands
407 */
Jens Axboe755200a2007-02-19 13:08:12 +0100408 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100409 min_evts = 0;
Jens Axboe755200a2007-02-19 13:08:12 +0100410 if (queue_full(td) || ret == FIO_Q_BUSY)
Jens Axboe36167d82007-02-18 05:41:31 +0100411 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100412
Jens Axboe97601022007-02-18 12:47:29 +0100413 fio_gettime(&comp_time, NULL);
414 bytes_done = io_u_queued_complete(td, min_evts, NULL);
415 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100416 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100417 }
418
Jens Axboe97601022007-02-18 12:47:29 +0100419 if (!bytes_done)
420 continue;
421
Jens Axboeebac4652005-12-08 15:25:21 +0100422 /*
423 * the rate is batched for now, it should work for batches
424 * of completions except the very first one which may look
425 * a little bursty
426 */
Jens Axboe97601022007-02-18 12:47:29 +0100427 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100428
Jens Axboe97601022007-02-18 12:47:29 +0100429 rate_throttle(td, usec, bytes_done, td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100430
Jens Axboe97601022007-02-18 12:47:29 +0100431 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100432 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100433 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100434 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100435 break;
436 }
437
Jens Axboe9c1f7432007-01-03 20:43:19 +0100438 if (td->thinktime) {
439 unsigned long long b;
440
441 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100442 if (!(b % td->thinktime_blocks)) {
443 int left;
444
445 if (td->thinktime_spin)
446 __usec_sleep(td->thinktime_spin);
447
448 left = td->thinktime - td->thinktime_spin;
449 if (left)
450 usec_sleep(td, left);
451 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100452 }
Jens Axboeebac4652005-12-08 15:25:21 +0100453 }
454
Jens Axboe4d2413c2006-11-23 11:58:59 +0100455 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100456 struct fio_file *f;
457
Jens Axboe84585002006-10-19 20:26:22 +0200458 if (td->cur_depth)
459 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100460
Jens Axboe84585002006-10-19 20:26:22 +0200461 if (should_fsync(td) && td->end_fsync) {
462 td_set_runstate(td, TD_FSYNCING);
463 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200464 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200465 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200466 }
Jens Axboeebac4652005-12-08 15:25:21 +0100467}
468
Jens Axboeebac4652005-12-08 15:25:21 +0100469static void cleanup_io_u(struct thread_data *td)
470{
471 struct list_head *entry, *n;
472 struct io_u *io_u;
473
474 list_for_each_safe(entry, n, &td->io_u_freelist) {
475 io_u = list_entry(entry, struct io_u, list);
476
477 list_del(&io_u->list);
478 free(io_u);
479 }
480
Jens Axboe2f9ade32006-10-20 11:25:52 +0200481 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100482}
483
Jens Axboe6b9cea22006-10-30 17:00:24 +0100484/*
485 * "randomly" fill the buffer contents
486 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100487static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100488{
Jens Axboe66eeb292006-11-01 08:35:44 +0100489 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100490
491 while ((void *) ptr - io_u->buf < max_bs) {
492 *ptr = rand() * 0x9e370001;
493 ptr++;
494 }
495}
496
Jens Axboeebac4652005-12-08 15:25:21 +0100497static int init_io_u(struct thread_data *td)
498{
499 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100500 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100501 int i, max_units;
502 char *p;
503
Jens Axboe2866c822006-10-09 15:57:48 +0200504 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200505 return 0;
506
Jens Axboe2866c822006-10-09 15:57:48 +0200507 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100508 max_units = 1;
509 else
510 max_units = td->iodepth;
511
Jens Axboea00735e2006-11-03 08:58:08 +0100512 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100513 td->orig_buffer_size = max_bs * max_units;
514
Jens Axboed0bdaf42006-12-20 14:40:44 +0100515 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100516 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100517 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100518 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100519
Jens Axboe2f9ade32006-10-20 11:25:52 +0200520 if (allocate_io_mem(td))
521 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100522
Jens Axboeebac4652005-12-08 15:25:21 +0100523 p = ALIGN(td->orig_buffer);
524 for (i = 0; i < max_units; i++) {
525 io_u = malloc(sizeof(*io_u));
526 memset(io_u, 0, sizeof(*io_u));
527 INIT_LIST_HEAD(&io_u->list);
528
Jens Axboea00735e2006-11-03 08:58:08 +0100529 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100530 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100531 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100532
Jens Axboeb1ff3402006-02-17 11:35:58 +0100533 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100534 list_add(&io_u->list, &td->io_u_freelist);
535 }
536
537 return 0;
538}
539
Jens Axboeda867742006-06-06 10:39:10 -0700540static int switch_ioscheduler(struct thread_data *td)
541{
542 char tmp[256], tmp2[128];
543 FILE *f;
544 int ret;
545
Jens Axboef48b4672006-10-27 11:30:07 +0200546 if (td->io_ops->flags & FIO_CPUIO)
547 return 0;
548
Jens Axboeda867742006-06-06 10:39:10 -0700549 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
550
551 f = fopen(tmp, "r+");
552 if (!f) {
553 td_verror(td, errno);
554 return 1;
555 }
556
557 /*
558 * Set io scheduler.
559 */
560 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
561 if (ferror(f) || ret != 1) {
562 td_verror(td, errno);
563 fclose(f);
564 return 1;
565 }
566
567 rewind(f);
568
569 /*
570 * Read back and check that the selected scheduler is now the default.
571 */
572 ret = fread(tmp, 1, sizeof(tmp), f);
573 if (ferror(f) || ret < 0) {
574 td_verror(td, errno);
575 fclose(f);
576 return 1;
577 }
578
579 sprintf(tmp2, "[%s]", td->ioscheduler);
580 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200581 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700582 td_verror(td, EINVAL);
583 fclose(f);
584 return 1;
585 }
586
587 fclose(f);
588 return 0;
589}
590
Jens Axboeebac4652005-12-08 15:25:21 +0100591static void clear_io_state(struct thread_data *td)
592{
Jens Axboe53cdc682006-10-18 11:50:58 +0200593 struct fio_file *f;
594 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100595
Jens Axboeebac4652005-12-08 15:25:21 +0100596 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
597 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100598 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100599
Jens Axboe53cdc682006-10-18 11:50:58 +0200600 for_each_file(td, f, i) {
601 f->last_pos = 0;
602 if (td->io_ops->flags & FIO_SYNCIO)
603 lseek(f->fd, SEEK_SET, 0);
604
605 if (f->file_map)
606 memset(f->file_map, 0, f->num_maps * sizeof(long));
607 }
Jens Axboeebac4652005-12-08 15:25:21 +0100608}
609
Jens Axboe906c8d72006-06-13 09:37:56 +0200610/*
611 * Entry point for the thread based jobs. The process based jobs end up
612 * here as well, after a little setup.
613 */
Jens Axboeebac4652005-12-08 15:25:21 +0100614static void *thread_main(void *data)
615{
Jens Axboe69008992006-11-24 13:12:56 +0100616 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100617 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100618
619 if (!td->use_thread)
620 setsid();
621
622 td->pid = getpid();
623
Jens Axboeaea47d42006-05-26 19:27:29 +0200624 INIT_LIST_HEAD(&td->io_u_freelist);
625 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100626 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200627 INIT_LIST_HEAD(&td->io_hist_list);
628 INIT_LIST_HEAD(&td->io_log_list);
629
Jens Axboeebac4652005-12-08 15:25:21 +0100630 if (init_io_u(td))
631 goto err;
632
633 if (fio_setaffinity(td) == -1) {
634 td_verror(td, errno);
635 goto err;
636 }
637
Jens Axboeaea47d42006-05-26 19:27:29 +0200638 if (init_iolog(td))
639 goto err;
640
Jens Axboeebac4652005-12-08 15:25:21 +0100641 if (td->ioprio) {
642 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
643 td_verror(td, errno);
644 goto err;
645 }
646 }
647
Jens Axboe1056eaa2006-07-13 10:33:45 -0700648 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200649 td_verror(td, errno);
650 goto err;
651 }
652
Jens Axboe75154842006-06-01 13:56:09 +0200653 if (init_random_state(td))
654 goto err;
655
Jens Axboe56f94982006-10-24 09:33:42 +0200656 if (td->ioscheduler && switch_ioscheduler(td))
657 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700658
Jens Axboe75154842006-06-01 13:56:09 +0200659 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200660 fio_sem_up(&startup_sem);
661 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100662
Jens Axboe53cdc682006-10-18 11:50:58 +0200663 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100664 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100665 if (open_files(td))
666 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100667
Jens Axboe7d6c5282007-02-05 10:52:10 +0100668 /*
669 * Do this late, as some IO engines would like to have the
670 * files setup prior to initializing structures.
671 */
672 if (td_io_init(td))
673 goto err;
674
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100675 if (td->exec_prerun) {
676 if (system(td->exec_prerun) < 0)
677 goto err;
678 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200679
Jens Axboe69008992006-11-24 13:12:56 +0100680 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100681 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100682
683 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100684 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100685 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100686 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
687
688 if (td->ratemin)
689 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
690
691 clear_io_state(td);
692 prune_io_piece_log(td);
693
Jens Axboe2866c822006-10-09 15:57:48 +0200694 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200695 do_cpuio(td);
696 else
697 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100698
Jens Axboe69008992006-11-24 13:12:56 +0100699 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200700 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100701 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200702
Jens Axboeebac4652005-12-08 15:25:21 +0100703 if (td->error || td->terminate)
704 break;
705
706 if (td->verify == VERIFY_NONE)
707 continue;
708
709 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100710 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100711
712 do_verify(td);
713
Jens Axboe69008992006-11-24 13:12:56 +0100714 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100715
716 if (td->error || td->terminate)
717 break;
718 }
719
Jens Axboe36dff962006-11-24 13:29:20 +0100720 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100721 fio_gettime(&td->end_time, NULL);
722 td->runtime[0] = runtime[0] / 1000;
723 td->runtime[1] = runtime[1] / 1000;
724
Jens Axboeebac4652005-12-08 15:25:21 +0100725 if (td->bw_log)
726 finish_log(td, td->bw_log, "bw");
727 if (td->slat_log)
728 finish_log(td, td->slat_log, "slat");
729 if (td->clat_log)
730 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200731 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700732 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100733 if (td->exec_postrun) {
734 if (system(td->exec_postrun) < 0)
735 log_err("fio: postrun %s failed\n", td->exec_postrun);
736 }
Jens Axboeebac4652005-12-08 15:25:21 +0100737
738 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100739 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100740
741err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100742 if (td->error)
743 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200744 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200745 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100746 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100747 td_set_runstate(td, TD_EXITED);
Jens Axboea6418142007-02-17 04:47:18 +0100748 return (void *) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100749}
750
Jens Axboe906c8d72006-06-13 09:37:56 +0200751/*
752 * We cannot pass the td data into a forked process, so attach the td and
753 * pass it to the thread worker.
754 */
Jens Axboea6418142007-02-17 04:47:18 +0100755static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100756{
757 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100758 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100759
760 data = shmat(shmid, NULL, 0);
761 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100762 int __err = errno;
763
Jens Axboeebac4652005-12-08 15:25:21 +0100764 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100765 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100766 }
767
768 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100769 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100770 shmdt(data);
Jens Axboea6418142007-02-17 04:47:18 +0100771 return (int) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100772}
773
Jens Axboe906c8d72006-06-13 09:37:56 +0200774/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200775 * Run over the job map and reap the threads that have exited, if any.
776 */
Jens Axboeebac4652005-12-08 15:25:21 +0100777static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
778{
Jens Axboe34572e22006-10-20 09:33:18 +0200779 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100780 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100781
782 /*
783 * reap exited threads (TD_EXITED -> TD_REAPED)
784 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100785 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200786 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200787 /*
788 * ->io_ops is NULL for a thread that has closed its
789 * io engine
790 */
791 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200792 cputhreads++;
793
Jens Axboefab6aa72007-02-17 06:19:24 +0100794 if (td->runstate < TD_EXITED) {
795 /*
796 * check if someone quit or got killed in an unusual way
797 */
798 ret = waitpid(td->pid, &status, WNOHANG);
799 if (ret < 0)
800 perror("waitpid");
801 else if ((ret == td->pid) && WIFSIGNALED(status)) {
802 int sig = WTERMSIG(status);
803
804 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
805 td_set_runstate(td, TD_REAPED);
806 goto reaped;
807 }
808 }
809
Jens Axboe4d2413c2006-11-23 11:58:59 +0100810 if (td->runstate != TD_EXITED) {
811 if (td->runstate < TD_RUNNING)
812 pending++;
813
Jens Axboeebac4652005-12-08 15:25:21 +0100814 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100815 }
Jens Axboeebac4652005-12-08 15:25:21 +0100816
Jens Axboe437c9b72007-02-13 18:20:37 +0100817 if (td->error)
818 exit_value++;
819
Jens Axboeebac4652005-12-08 15:25:21 +0100820 td_set_runstate(td, TD_REAPED);
821
822 if (td->use_thread) {
823 long ret;
824
825 if (pthread_join(td->thread, (void *) &ret))
826 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100827 } else {
828 int status;
829
Jens Axboefab6aa72007-02-17 06:19:24 +0100830 ret = waitpid(td->pid, &status, 0);
831 if (ret < 0)
832 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100833 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100834 if (!exit_value)
835 exit_value++;
836 }
837 }
Jens Axboeebac4652005-12-08 15:25:21 +0100838
Jens Axboefab6aa72007-02-17 06:19:24 +0100839reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100840 (*nr_running)--;
841 (*m_rate) -= td->ratemin;
842 (*t_rate) -= td->rate;
843 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200844
Jens Axboe4d2413c2006-11-23 11:58:59 +0100845 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100846 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100847}
848
Jens Axboe906c8d72006-06-13 09:37:56 +0200849/*
850 * Main function for kicking off and reaping jobs, as needed.
851 */
Jens Axboeebac4652005-12-08 15:25:21 +0100852static void run_threads(void)
853{
Jens Axboeebac4652005-12-08 15:25:21 +0100854 struct thread_data *td;
855 unsigned long spent;
856 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200857
Jens Axboe2f9ade32006-10-20 11:25:52 +0200858 if (fio_pin_memory())
859 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100860
Jens Axboec6ae0a52006-06-12 11:04:44 +0200861 if (!terse_output) {
862 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
863 fflush(stdout);
864 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200865
Jens Axboe4efa9702006-05-31 11:56:49 +0200866 signal(SIGINT, sig_handler);
867 signal(SIGALRM, sig_handler);
868
Jens Axboeebac4652005-12-08 15:25:21 +0100869 todo = thread_number;
870 nr_running = 0;
871 nr_started = 0;
872 m_rate = t_rate = 0;
873
Jens Axboe34572e22006-10-20 09:33:18 +0200874 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200875 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100876
Jens Axboe380cf262007-01-11 14:01:27 +0100877 if (!td->create_serialize) {
878 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100879 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100880 }
Jens Axboeebac4652005-12-08 15:25:21 +0100881
882 /*
883 * do file setup here so it happens sequentially,
884 * we don't want X number of threads getting their
885 * client data interspersed on disk
886 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200887 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100888 exit_value++;
889 if (td->error)
890 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100891 td_set_runstate(td, TD_REAPED);
892 todo--;
893 }
Jens Axboe380cf262007-01-11 14:01:27 +0100894
895 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100896 }
897
Jens Axboeebac4652005-12-08 15:25:21 +0100898 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200899 struct thread_data *map[MAX_JOBS];
900 struct timeval this_start;
901 int this_jobs = 0, left;
902
Jens Axboeebac4652005-12-08 15:25:21 +0100903 /*
904 * create threads (TD_NOT_CREATED -> TD_CREATED)
905 */
Jens Axboe34572e22006-10-20 09:33:18 +0200906 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100907 if (td->runstate != TD_NOT_CREATED)
908 continue;
909
910 /*
911 * never got a chance to start, killed by other
912 * thread for some reason
913 */
914 if (td->terminate) {
915 todo--;
916 continue;
917 }
918
919 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200920 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100921
922 if (td->start_delay * 1000 > spent)
923 continue;
924 }
925
926 if (td->stonewall && (nr_started || nr_running))
927 break;
928
Jens Axboe75154842006-06-01 13:56:09 +0200929 /*
930 * Set state to created. Thread will transition
931 * to TD_INITIALIZED when it's done setting up.
932 */
Jens Axboeebac4652005-12-08 15:25:21 +0100933 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200934 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200935 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100936 nr_started++;
937
938 if (td->use_thread) {
939 if (pthread_create(&td->thread, NULL, thread_main, td)) {
940 perror("thread_create");
941 nr_started--;
942 }
943 } else {
944 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200945 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100946 else {
Jens Axboea6418142007-02-17 04:47:18 +0100947 int ret = fork_main(shm_id, i);
948
949 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100950 }
951 }
952 }
953
954 /*
Jens Axboe75154842006-06-01 13:56:09 +0200955 * Wait for the started threads to transition to
956 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100957 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100958 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200959 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100960 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200961 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
962 break;
963
964 usleep(100000);
965
966 for (i = 0; i < this_jobs; i++) {
967 td = map[i];
968 if (!td)
969 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200970 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200971 map[i] = NULL;
972 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200973 } else if (td->runstate >= TD_EXITED) {
974 map[i] = NULL;
975 left--;
976 todo--;
977 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +0200978 }
979 }
980 }
981
982 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200983 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +0200984 for (i = 0; i < this_jobs; i++) {
985 td = map[i];
986 if (!td)
987 continue;
988 kill(td->pid, SIGTERM);
989 }
990 break;
991 }
992
993 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +0200994 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +0200995 */
Jens Axboe34572e22006-10-20 09:33:18 +0200996 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +0200997 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +0100998 continue;
999
1000 td_set_runstate(td, TD_RUNNING);
1001 nr_running++;
1002 nr_started--;
1003 m_rate += td->ratemin;
1004 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001005 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001006 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001007 }
1008
1009 reap_threads(&nr_running, &t_rate, &m_rate);
1010
1011 if (todo)
1012 usleep(100000);
1013 }
1014
1015 while (nr_running) {
1016 reap_threads(&nr_running, &t_rate, &m_rate);
1017 usleep(10000);
1018 }
1019
1020 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001021 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001022}
1023
Jens Axboeebac4652005-12-08 15:25:21 +01001024int main(int argc, char *argv[])
1025{
Jens Axboe29d610e2007-02-06 13:25:33 +01001026 long ps;
1027
Jens Axboedbe11252007-02-11 00:19:51 +01001028 /*
1029 * We need locale for number printing, if it isn't set then just
1030 * go with the US format.
1031 */
1032 if (!getenv("LC_NUMERIC"))
1033 setlocale(LC_NUMERIC, "en_US");
1034
Jens Axboeebac4652005-12-08 15:25:21 +01001035 if (parse_options(argc, argv))
1036 return 1;
1037
1038 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001039 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001040 return 1;
1041 }
1042
Jens Axboe29d610e2007-02-06 13:25:33 +01001043 ps = sysconf(_SC_PAGESIZE);
1044 if (ps < 0) {
1045 log_err("Failed to get page size\n");
1046 return 1;
1047 }
1048
1049 page_mask = ps - 1;
1050
Jens Axboebb3884d2007-01-17 17:23:11 +11001051 if (write_bw_log) {
1052 setup_log(&agg_io_log[DDIR_READ]);
1053 setup_log(&agg_io_log[DDIR_WRITE]);
1054 }
1055
Jens Axboeebac4652005-12-08 15:25:21 +01001056 disk_util_timer_arm();
1057
1058 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001059
Jens Axboebb3884d2007-01-17 17:23:11 +11001060 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001061 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001062 if (write_bw_log) {
1063 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1064 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1065 }
1066 }
Jens Axboeebac4652005-12-08 15:25:21 +01001067
Jens Axboe437c9b72007-02-13 18:20:37 +01001068 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001069}