blob: 858d6b81e6c5df199e17ae33f09d802105b1011b [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboeaae22ca2006-09-05 10:46:22 +02005 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027#include <signal.h>
28#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010029#include <locale.h>
Jens Axboe36167d82007-02-18 05:41:31 +010030#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010031#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010035#include <sys/mman.h>
36
37#include "fio.h"
38#include "os.h"
39
Jens Axboe29d610e2007-02-06 13:25:33 +010040static unsigned long page_mask;
41#define ALIGN(buf) \
42 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010043
44int groupid = 0;
45int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010046int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020047int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010048
Jens Axboebbfd6b02006-06-07 19:42:54 +020049static volatile int startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010050static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010051static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboebb3884d2007-01-17 17:23:11 +110053struct io_log *agg_io_log[2];
54
Jens Axboeebac4652005-12-08 15:25:21 +010055#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020056#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboe6ce15a32007-01-12 09:04:41 +010058static inline void td_set_runstate(struct thread_data *td, int runstate)
59{
60 td->runstate = runstate;
61}
62
63static void terminate_threads(int group_id, int forced_kill)
Jens Axboeebac4652005-12-08 15:25:21 +010064{
Jens Axboe34572e22006-10-20 09:33:18 +020065 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010066 int i;
67
Jens Axboe34572e22006-10-20 09:33:18 +020068 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010069 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
70 td->terminate = 1;
71 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010072 if (forced_kill)
73 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010074 }
75 }
76}
77
78static void sig_handler(int sig)
79{
80 switch (sig) {
81 case SIGALRM:
82 update_io_ticks();
83 disk_util_timer_arm();
84 print_thread_status();
85 break;
86 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010088 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010089 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010090 break;
91 }
92}
93
Jens Axboe906c8d72006-06-13 09:37:56 +020094/*
Jens Axboe906c8d72006-06-13 09:37:56 +020095 * Check if we are above the minimum rate given.
96 */
Jens Axboeebac4652005-12-08 15:25:21 +010097static int check_min_rate(struct thread_data *td, struct timeval *now)
98{
99 unsigned long spent;
100 unsigned long rate;
101 int ddir = td->ddir;
102
103 /*
104 * allow a 2 second settle period in the beginning
105 */
106 if (mtime_since(&td->start, now) < 2000)
107 return 0;
108
109 /*
110 * if rate blocks is set, sample is running
111 */
112 if (td->rate_bytes) {
113 spent = mtime_since(&td->lastrate, now);
114 if (spent < td->ratecycle)
115 return 0;
116
117 rate = (td->this_io_bytes[ddir] - td->rate_bytes) / spent;
118 if (rate < td->ratemin) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100119 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
Jens Axboeebac4652005-12-08 15:25:21 +0100120 return 1;
121 }
122 }
123
124 td->rate_bytes = td->this_io_bytes[ddir];
125 memcpy(&td->lastrate, now, sizeof(*now));
126 return 0;
127}
128
129static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
130{
131 if (!td->timeout)
132 return 0;
133 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
134 return 1;
135
136 return 0;
137}
138
Jens Axboe53cdc682006-10-18 11:50:58 +0200139static struct fio_file *get_next_file(struct thread_data *td)
140{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200141 unsigned int old_next_file = td->next_file;
Jens Axboeb2a15192006-10-18 14:10:42 +0200142 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200143
Jens Axboeb2a15192006-10-18 14:10:42 +0200144 do {
145 f = &td->files[td->next_file];
146
147 td->next_file++;
148 if (td->next_file >= td->nr_files)
149 td->next_file = 0;
150
151 if (f->fd != -1)
152 break;
153
154 f = NULL;
155 } while (td->next_file != old_next_file);
Jens Axboe53cdc682006-10-18 11:50:58 +0200156
157 return f;
158}
159
Jens Axboe906c8d72006-06-13 09:37:56 +0200160/*
161 * When job exits, we can cancel the in-flight IO if we are using async
162 * io. Attempt to do so.
163 */
Jens Axboeebac4652005-12-08 15:25:21 +0100164static void cleanup_pending_aio(struct thread_data *td)
165{
Jens Axboeebac4652005-12-08 15:25:21 +0100166 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100167 struct io_u *io_u;
168 int r;
169
170 /*
171 * get immediately available events, if any
172 */
Jens Axboe97601022007-02-18 12:47:29 +0100173 io_u_queued_complete(td, 0, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100174
175 /*
176 * now cancel remaining active events
177 */
Jens Axboe2866c822006-10-09 15:57:48 +0200178 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100179 list_for_each_safe(entry, n, &td->io_u_busylist) {
180 io_u = list_entry(entry, struct io_u, list);
181
Jens Axboe2866c822006-10-09 15:57:48 +0200182 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100183 if (!r)
184 put_io_u(td, io_u);
185 }
186 }
187
Jens Axboe97601022007-02-18 12:47:29 +0100188 if (td->cur_depth)
189 io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100190}
191
Jens Axboe906c8d72006-06-13 09:37:56 +0200192/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200193 * Helper to handle the final sync of a file. Works just like the normal
194 * io path, just does everything sync.
195 */
196static int fio_io_sync(struct thread_data *td, struct fio_file *f)
197{
198 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200199 int ret;
200
201 if (!io_u)
202 return 1;
203
204 io_u->ddir = DDIR_SYNC;
205 io_u->file = f;
206
207 if (td_io_prep(td, io_u)) {
208 put_io_u(td, io_u);
209 return 1;
210 }
211
Jens Axboe755200a2007-02-19 13:08:12 +0100212requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200213 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100214 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200215 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200216 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200217 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100218 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe97601022007-02-18 12:47:29 +0100219 if (io_u_queued_complete(td, 1, NULL))
Jens Axboe36167d82007-02-18 05:41:31 +0100220 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100221 } else if (ret == FIO_Q_COMPLETED) {
222 if (io_u->error) {
223 td_verror(td, io_u->error);
224 return 1;
225 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200226
Jens Axboe97601022007-02-18 12:47:29 +0100227 io_u_sync_complete(td, io_u, NULL);
Jens Axboe755200a2007-02-19 13:08:12 +0100228 } else if (ret == FIO_Q_BUSY) {
229 if (td_io_commit(td))
230 return 1;
231 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200232 }
233
234 return 0;
235}
236
237/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200238 * The main verify engine. Runs over the writes we previusly submitted,
239 * reads the blocks back in, and checks the crc/md5 of the data.
240 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100241static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100242{
Jens Axboe53cdc682006-10-18 11:50:58 +0200243 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100244 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100245 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200246
247 /*
248 * sync io first and invalidate cache, to make sure we really
249 * read from disk.
250 */
251 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200252 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200253 file_invalidate_cache(td, f);
254 }
Jens Axboeebac4652005-12-08 15:25:21 +0100255
256 td_set_runstate(td, TD_VERIFYING);
257
Jens Axboe36167d82007-02-18 05:41:31 +0100258 io_u = NULL;
259 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100260 io_u = __get_io_u(td);
261 if (!io_u)
262 break;
263
Jens Axboe36167d82007-02-18 05:41:31 +0100264 if (runtime_exceeded(td, &io_u->start_time))
Jens Axboe53cdc682006-10-18 11:50:58 +0200265 break;
266
Jens Axboe36167d82007-02-18 05:41:31 +0100267 if (get_next_verify(td, io_u))
Jens Axboeebac4652005-12-08 15:25:21 +0100268 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100269
Jens Axboe36167d82007-02-18 05:41:31 +0100270 if (td_io_prep(td, io_u))
271 break;
272
273requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200274 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100275
276 switch (ret) {
277 case FIO_Q_COMPLETED:
278 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100279 ret = -io_u->error;
Jens Axboe36167d82007-02-18 05:41:31 +0100280 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
281 int bytes = io_u->xfer_buflen - io_u->resid;
282
283 io_u->xfer_buflen = io_u->resid;
284 io_u->xfer_buf += bytes;
285 goto requeue;
286 }
Jens Axboe99784632007-02-19 10:06:17 +0100287 ret = io_u_sync_complete(td, io_u, verify_io_u);
288 if (ret)
Jens Axboe36167d82007-02-18 05:41:31 +0100289 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100290 continue;
291 case FIO_Q_QUEUED:
292 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100293 case FIO_Q_BUSY:
294 requeue_io_u(td, &io_u);
295 ret = td_io_commit(td);
296 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100297 default:
298 assert(ret < 0);
Jens Axboe22819ec2007-02-18 07:47:14 +0100299 td_verror(td, -ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100300 break;
301 }
302
Jens Axboe99784632007-02-19 10:06:17 +0100303 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100304 break;
305
Jens Axboe3af6ef32007-02-18 06:57:43 +0100306 /*
307 * if we can queue more, do so. but check if there are
308 * completed io_u's first.
309 */
Jens Axboe97601022007-02-18 12:47:29 +0100310 min_events = 0;
Jens Axboe755200a2007-02-19 13:08:12 +0100311 if (queue_full(td) || ret == FIO_Q_BUSY)
Jens Axboe3af6ef32007-02-18 06:57:43 +0100312 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100313
314 /*
315 * Reap required number of io units, if any, and do the
316 * verification on them through the callback handler
317 */
Jens Axboe97601022007-02-18 12:47:29 +0100318 if (io_u_queued_complete(td, min_events, verify_io_u))
Jens Axboe36167d82007-02-18 05:41:31 +0100319 break;
320 }
321
322 if (io_u)
323 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100324
325 if (td->cur_depth)
326 cleanup_pending_aio(td);
327
328 td_set_runstate(td, TD_RUNNING);
329}
330
Jens Axboe32cd46a2006-06-07 13:40:40 +0200331/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200332 * Not really an io thread, all it does is burn CPU cycles in the specified
333 * manner.
334 */
335static void do_cpuio(struct thread_data *td)
336{
337 struct timeval e;
338 int split = 100 / td->cpuload;
339 int i = 0;
340
341 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100342 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200343
344 if (runtime_exceeded(td, &e))
345 break;
346
347 if (!(i % split))
348 __usec_sleep(10000);
349 else
350 usec_sleep(td, 10000);
351
352 i++;
353 }
354}
355
356/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200357 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200358 * and reaps them, checking for rate and errors along the way.
359 */
Jens Axboeebac4652005-12-08 15:25:21 +0100360static void do_io(struct thread_data *td)
361{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100362 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100363 unsigned long usec;
Jens Axboe53cdc682006-10-18 11:50:58 +0200364 struct fio_file *f;
Jens Axboe84585002006-10-19 20:26:22 +0200365 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100366
Jens Axboe5853e5a2006-06-08 14:41:05 +0200367 td_set_runstate(td, TD_RUNNING);
368
Jens Axboe39514142007-02-12 18:49:58 +0100369 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100370 struct timeval comp_time;
371 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200372 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100373 struct io_u *io_u;
374
375 if (td->terminate)
376 break;
377
Jens Axboe53cdc682006-10-18 11:50:58 +0200378 f = get_next_file(td);
379 if (!f)
380 break;
381
382 io_u = get_io_u(td, f);
Jens Axboeebac4652005-12-08 15:25:21 +0100383 if (!io_u)
384 break;
385
386 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100387
388 if (runtime_exceeded(td, &s)) {
389 put_io_u(td, io_u);
390 break;
391 }
Jens Axboecec6b552007-02-06 20:15:38 +0100392requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200393 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100394
395 switch (ret) {
396 case FIO_Q_COMPLETED:
397 if (io_u->error) {
398 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100399 break;
400 }
Jens Axboe36167d82007-02-18 05:41:31 +0100401 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
402 int bytes = io_u->xfer_buflen - io_u->resid;
403
404 io_u->xfer_buflen = io_u->resid;
405 io_u->xfer_buf += bytes;
406 goto requeue;
407 }
Jens Axboe97601022007-02-18 12:47:29 +0100408 fio_gettime(&comp_time, NULL);
409 bytes_done = io_u_sync_complete(td, io_u, NULL);
Jens Axboe99784632007-02-19 10:06:17 +0100410 if (bytes_done < 0)
411 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100412 break;
413 case FIO_Q_QUEUED:
414 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100415 case FIO_Q_BUSY:
416 requeue_io_u(td, &io_u);
417 ret = td_io_commit(td);
418 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100419 default:
420 assert(ret < 0);
421 put_io_u(td, io_u);
422 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100423 }
424
Jens Axboe99784632007-02-19 10:06:17 +0100425 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100426 break;
427
Jens Axboe755200a2007-02-19 13:08:12 +0100428 if (io_u)
429 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
Jens Axboeebac4652005-12-08 15:25:21 +0100430
Jens Axboe97601022007-02-18 12:47:29 +0100431 /*
432 * See if we need to complete some commands
433 */
Jens Axboe755200a2007-02-19 13:08:12 +0100434 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100435 min_evts = 0;
Jens Axboe755200a2007-02-19 13:08:12 +0100436 if (queue_full(td) || ret == FIO_Q_BUSY)
Jens Axboe36167d82007-02-18 05:41:31 +0100437 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100438
Jens Axboe97601022007-02-18 12:47:29 +0100439 fio_gettime(&comp_time, NULL);
440 bytes_done = io_u_queued_complete(td, min_evts, NULL);
441 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100442 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100443 }
444
Jens Axboe97601022007-02-18 12:47:29 +0100445 if (!bytes_done)
446 continue;
447
Jens Axboeebac4652005-12-08 15:25:21 +0100448 /*
449 * the rate is batched for now, it should work for batches
450 * of completions except the very first one which may look
451 * a little bursty
452 */
Jens Axboe97601022007-02-18 12:47:29 +0100453 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100454
Jens Axboe97601022007-02-18 12:47:29 +0100455 rate_throttle(td, usec, bytes_done, td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100456
Jens Axboe97601022007-02-18 12:47:29 +0100457 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100458 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100459 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100460 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100461 break;
462 }
463
Jens Axboe9c1f7432007-01-03 20:43:19 +0100464 if (td->thinktime) {
465 unsigned long long b;
466
467 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100468 if (!(b % td->thinktime_blocks)) {
469 int left;
470
471 if (td->thinktime_spin)
472 __usec_sleep(td->thinktime_spin);
473
474 left = td->thinktime - td->thinktime_spin;
475 if (left)
476 usec_sleep(td, left);
477 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100478 }
Jens Axboeebac4652005-12-08 15:25:21 +0100479 }
480
Jens Axboe4d2413c2006-11-23 11:58:59 +0100481 if (!td->error) {
Jens Axboe84585002006-10-19 20:26:22 +0200482 if (td->cur_depth)
483 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100484
Jens Axboe84585002006-10-19 20:26:22 +0200485 if (should_fsync(td) && td->end_fsync) {
486 td_set_runstate(td, TD_FSYNCING);
487 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200488 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200489 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200490 }
Jens Axboeebac4652005-12-08 15:25:21 +0100491}
492
Jens Axboeebac4652005-12-08 15:25:21 +0100493static void cleanup_io_u(struct thread_data *td)
494{
495 struct list_head *entry, *n;
496 struct io_u *io_u;
497
498 list_for_each_safe(entry, n, &td->io_u_freelist) {
499 io_u = list_entry(entry, struct io_u, list);
500
501 list_del(&io_u->list);
502 free(io_u);
503 }
504
Jens Axboe2f9ade32006-10-20 11:25:52 +0200505 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100506}
507
Jens Axboe6b9cea22006-10-30 17:00:24 +0100508/*
509 * "randomly" fill the buffer contents
510 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100511static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100512{
Jens Axboe66eeb292006-11-01 08:35:44 +0100513 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100514
515 while ((void *) ptr - io_u->buf < max_bs) {
516 *ptr = rand() * 0x9e370001;
517 ptr++;
518 }
519}
520
Jens Axboeebac4652005-12-08 15:25:21 +0100521static int init_io_u(struct thread_data *td)
522{
523 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100524 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100525 int i, max_units;
526 char *p;
527
Jens Axboe2866c822006-10-09 15:57:48 +0200528 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200529 return 0;
530
Jens Axboe2866c822006-10-09 15:57:48 +0200531 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100532 max_units = 1;
533 else
534 max_units = td->iodepth;
535
Jens Axboea00735e2006-11-03 08:58:08 +0100536 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100537 td->orig_buffer_size = max_bs * max_units;
538
Jens Axboed0bdaf42006-12-20 14:40:44 +0100539 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100540 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100541 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100542 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100543
Jens Axboe2f9ade32006-10-20 11:25:52 +0200544 if (allocate_io_mem(td))
545 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100546
Jens Axboeebac4652005-12-08 15:25:21 +0100547 p = ALIGN(td->orig_buffer);
548 for (i = 0; i < max_units; i++) {
549 io_u = malloc(sizeof(*io_u));
550 memset(io_u, 0, sizeof(*io_u));
551 INIT_LIST_HEAD(&io_u->list);
552
Jens Axboea00735e2006-11-03 08:58:08 +0100553 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100554 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100555 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100556
Jens Axboeb1ff3402006-02-17 11:35:58 +0100557 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100558 list_add(&io_u->list, &td->io_u_freelist);
559 }
560
561 return 0;
562}
563
Jens Axboeda867742006-06-06 10:39:10 -0700564static int switch_ioscheduler(struct thread_data *td)
565{
566 char tmp[256], tmp2[128];
567 FILE *f;
568 int ret;
569
Jens Axboef48b4672006-10-27 11:30:07 +0200570 if (td->io_ops->flags & FIO_CPUIO)
571 return 0;
572
Jens Axboeda867742006-06-06 10:39:10 -0700573 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
574
575 f = fopen(tmp, "r+");
576 if (!f) {
577 td_verror(td, errno);
578 return 1;
579 }
580
581 /*
582 * Set io scheduler.
583 */
584 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
585 if (ferror(f) || ret != 1) {
586 td_verror(td, errno);
587 fclose(f);
588 return 1;
589 }
590
591 rewind(f);
592
593 /*
594 * Read back and check that the selected scheduler is now the default.
595 */
596 ret = fread(tmp, 1, sizeof(tmp), f);
597 if (ferror(f) || ret < 0) {
598 td_verror(td, errno);
599 fclose(f);
600 return 1;
601 }
602
603 sprintf(tmp2, "[%s]", td->ioscheduler);
604 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200605 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700606 td_verror(td, EINVAL);
607 fclose(f);
608 return 1;
609 }
610
611 fclose(f);
612 return 0;
613}
614
Jens Axboeebac4652005-12-08 15:25:21 +0100615static void clear_io_state(struct thread_data *td)
616{
Jens Axboe53cdc682006-10-18 11:50:58 +0200617 struct fio_file *f;
618 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100619
Jens Axboeebac4652005-12-08 15:25:21 +0100620 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
621 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100622 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100623
Jens Axboe53cdc682006-10-18 11:50:58 +0200624 for_each_file(td, f, i) {
625 f->last_pos = 0;
626 if (td->io_ops->flags & FIO_SYNCIO)
627 lseek(f->fd, SEEK_SET, 0);
628
629 if (f->file_map)
630 memset(f->file_map, 0, f->num_maps * sizeof(long));
631 }
Jens Axboeebac4652005-12-08 15:25:21 +0100632}
633
Jens Axboe906c8d72006-06-13 09:37:56 +0200634/*
635 * Entry point for the thread based jobs. The process based jobs end up
636 * here as well, after a little setup.
637 */
Jens Axboeebac4652005-12-08 15:25:21 +0100638static void *thread_main(void *data)
639{
Jens Axboe69008992006-11-24 13:12:56 +0100640 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100641 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100642
643 if (!td->use_thread)
644 setsid();
645
646 td->pid = getpid();
647
Jens Axboeaea47d42006-05-26 19:27:29 +0200648 INIT_LIST_HEAD(&td->io_u_freelist);
649 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100650 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200651 INIT_LIST_HEAD(&td->io_hist_list);
652 INIT_LIST_HEAD(&td->io_log_list);
653
Jens Axboeebac4652005-12-08 15:25:21 +0100654 if (init_io_u(td))
655 goto err;
656
657 if (fio_setaffinity(td) == -1) {
658 td_verror(td, errno);
659 goto err;
660 }
661
Jens Axboeaea47d42006-05-26 19:27:29 +0200662 if (init_iolog(td))
663 goto err;
664
Jens Axboeebac4652005-12-08 15:25:21 +0100665 if (td->ioprio) {
666 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
667 td_verror(td, errno);
668 goto err;
669 }
670 }
671
Jens Axboe1056eaa2006-07-13 10:33:45 -0700672 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200673 td_verror(td, errno);
674 goto err;
675 }
676
Jens Axboe75154842006-06-01 13:56:09 +0200677 if (init_random_state(td))
678 goto err;
679
Jens Axboe56f94982006-10-24 09:33:42 +0200680 if (td->ioscheduler && switch_ioscheduler(td))
681 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700682
Jens Axboe75154842006-06-01 13:56:09 +0200683 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200684 fio_sem_up(&startup_sem);
685 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100686
Jens Axboe53cdc682006-10-18 11:50:58 +0200687 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100688 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100689 if (open_files(td))
690 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100691
Jens Axboe7d6c5282007-02-05 10:52:10 +0100692 /*
693 * Do this late, as some IO engines would like to have the
694 * files setup prior to initializing structures.
695 */
696 if (td_io_init(td))
697 goto err;
698
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100699 if (td->exec_prerun) {
700 if (system(td->exec_prerun) < 0)
701 goto err;
702 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200703
Jens Axboe69008992006-11-24 13:12:56 +0100704 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100705 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100706
707 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100708 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100709 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100710 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
711
712 if (td->ratemin)
713 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
714
715 clear_io_state(td);
716 prune_io_piece_log(td);
717
Jens Axboe2866c822006-10-09 15:57:48 +0200718 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200719 do_cpuio(td);
720 else
721 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100722
Jens Axboe69008992006-11-24 13:12:56 +0100723 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200724 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100725 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200726
Jens Axboeebac4652005-12-08 15:25:21 +0100727 if (td->error || td->terminate)
728 break;
729
730 if (td->verify == VERIFY_NONE)
731 continue;
732
733 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100734 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100735
736 do_verify(td);
737
Jens Axboe69008992006-11-24 13:12:56 +0100738 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100739
740 if (td->error || td->terminate)
741 break;
742 }
743
Jens Axboe36dff962006-11-24 13:29:20 +0100744 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100745 fio_gettime(&td->end_time, NULL);
746 td->runtime[0] = runtime[0] / 1000;
747 td->runtime[1] = runtime[1] / 1000;
748
Jens Axboeebac4652005-12-08 15:25:21 +0100749 if (td->bw_log)
750 finish_log(td, td->bw_log, "bw");
751 if (td->slat_log)
752 finish_log(td, td->slat_log, "slat");
753 if (td->clat_log)
754 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200755 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700756 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100757 if (td->exec_postrun) {
758 if (system(td->exec_postrun) < 0)
759 log_err("fio: postrun %s failed\n", td->exec_postrun);
760 }
Jens Axboeebac4652005-12-08 15:25:21 +0100761
762 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100763 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100764
765err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100766 if (td->error)
767 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200768 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200769 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100770 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100771 td_set_runstate(td, TD_EXITED);
Jens Axboea6418142007-02-17 04:47:18 +0100772 return (void *) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100773}
774
Jens Axboe906c8d72006-06-13 09:37:56 +0200775/*
776 * We cannot pass the td data into a forked process, so attach the td and
777 * pass it to the thread worker.
778 */
Jens Axboea6418142007-02-17 04:47:18 +0100779static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100780{
781 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100782 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100783
784 data = shmat(shmid, NULL, 0);
785 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100786 int __err = errno;
787
Jens Axboeebac4652005-12-08 15:25:21 +0100788 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100789 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100790 }
791
792 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100793 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100794 shmdt(data);
Jens Axboea6418142007-02-17 04:47:18 +0100795 return (int) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100796}
797
Jens Axboe906c8d72006-06-13 09:37:56 +0200798/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200799 * Run over the job map and reap the threads that have exited, if any.
800 */
Jens Axboeebac4652005-12-08 15:25:21 +0100801static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
802{
Jens Axboe34572e22006-10-20 09:33:18 +0200803 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100804 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100805
806 /*
807 * reap exited threads (TD_EXITED -> TD_REAPED)
808 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100809 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200810 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200811 /*
812 * ->io_ops is NULL for a thread that has closed its
813 * io engine
814 */
815 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200816 cputhreads++;
817
Jens Axboefab6aa72007-02-17 06:19:24 +0100818 if (td->runstate < TD_EXITED) {
819 /*
820 * check if someone quit or got killed in an unusual way
821 */
822 ret = waitpid(td->pid, &status, WNOHANG);
823 if (ret < 0)
824 perror("waitpid");
825 else if ((ret == td->pid) && WIFSIGNALED(status)) {
826 int sig = WTERMSIG(status);
827
828 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
829 td_set_runstate(td, TD_REAPED);
830 goto reaped;
831 }
832 }
833
Jens Axboe4d2413c2006-11-23 11:58:59 +0100834 if (td->runstate != TD_EXITED) {
835 if (td->runstate < TD_RUNNING)
836 pending++;
837
Jens Axboeebac4652005-12-08 15:25:21 +0100838 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100839 }
Jens Axboeebac4652005-12-08 15:25:21 +0100840
Jens Axboe437c9b72007-02-13 18:20:37 +0100841 if (td->error)
842 exit_value++;
843
Jens Axboeebac4652005-12-08 15:25:21 +0100844 td_set_runstate(td, TD_REAPED);
845
846 if (td->use_thread) {
847 long ret;
848
849 if (pthread_join(td->thread, (void *) &ret))
850 perror("thread_join");
Jens Axboea6418142007-02-17 04:47:18 +0100851 } else {
852 int status;
853
Jens Axboefab6aa72007-02-17 06:19:24 +0100854 ret = waitpid(td->pid, &status, 0);
855 if (ret < 0)
856 perror("waitpid");
Jens Axboe73170f12007-02-17 06:20:19 +0100857 else if (WIFEXITED(status) && WEXITSTATUS(status)) {
Jens Axboea6418142007-02-17 04:47:18 +0100858 if (!exit_value)
859 exit_value++;
860 }
861 }
Jens Axboeebac4652005-12-08 15:25:21 +0100862
Jens Axboefab6aa72007-02-17 06:19:24 +0100863reaped:
Jens Axboeebac4652005-12-08 15:25:21 +0100864 (*nr_running)--;
865 (*m_rate) -= td->ratemin;
866 (*t_rate) -= td->rate;
867 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200868
Jens Axboe4d2413c2006-11-23 11:58:59 +0100869 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100870 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100871}
872
Jens Axboe906c8d72006-06-13 09:37:56 +0200873/*
874 * Main function for kicking off and reaping jobs, as needed.
875 */
Jens Axboeebac4652005-12-08 15:25:21 +0100876static void run_threads(void)
877{
Jens Axboeebac4652005-12-08 15:25:21 +0100878 struct thread_data *td;
879 unsigned long spent;
880 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200881
Jens Axboe2f9ade32006-10-20 11:25:52 +0200882 if (fio_pin_memory())
883 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100884
Jens Axboec6ae0a52006-06-12 11:04:44 +0200885 if (!terse_output) {
886 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
887 fflush(stdout);
888 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200889
Jens Axboe4efa9702006-05-31 11:56:49 +0200890 signal(SIGINT, sig_handler);
891 signal(SIGALRM, sig_handler);
892
Jens Axboeebac4652005-12-08 15:25:21 +0100893 todo = thread_number;
894 nr_running = 0;
895 nr_started = 0;
896 m_rate = t_rate = 0;
897
Jens Axboe34572e22006-10-20 09:33:18 +0200898 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200899 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100900
Jens Axboe380cf262007-01-11 14:01:27 +0100901 if (!td->create_serialize) {
902 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100903 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100904 }
Jens Axboeebac4652005-12-08 15:25:21 +0100905
906 /*
907 * do file setup here so it happens sequentially,
908 * we don't want X number of threads getting their
909 * client data interspersed on disk
910 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200911 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100912 exit_value++;
913 if (td->error)
914 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100915 td_set_runstate(td, TD_REAPED);
916 todo--;
917 }
Jens Axboe380cf262007-01-11 14:01:27 +0100918
919 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100920 }
921
Jens Axboeebac4652005-12-08 15:25:21 +0100922 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200923 struct thread_data *map[MAX_JOBS];
924 struct timeval this_start;
925 int this_jobs = 0, left;
926
Jens Axboeebac4652005-12-08 15:25:21 +0100927 /*
928 * create threads (TD_NOT_CREATED -> TD_CREATED)
929 */
Jens Axboe34572e22006-10-20 09:33:18 +0200930 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100931 if (td->runstate != TD_NOT_CREATED)
932 continue;
933
934 /*
935 * never got a chance to start, killed by other
936 * thread for some reason
937 */
938 if (td->terminate) {
939 todo--;
940 continue;
941 }
942
943 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200944 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100945
946 if (td->start_delay * 1000 > spent)
947 continue;
948 }
949
950 if (td->stonewall && (nr_started || nr_running))
951 break;
952
Jens Axboe75154842006-06-01 13:56:09 +0200953 /*
954 * Set state to created. Thread will transition
955 * to TD_INITIALIZED when it's done setting up.
956 */
Jens Axboeebac4652005-12-08 15:25:21 +0100957 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200958 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200959 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100960 nr_started++;
961
962 if (td->use_thread) {
963 if (pthread_create(&td->thread, NULL, thread_main, td)) {
964 perror("thread_create");
965 nr_started--;
966 }
967 } else {
968 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200969 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100970 else {
Jens Axboea6418142007-02-17 04:47:18 +0100971 int ret = fork_main(shm_id, i);
972
973 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100974 }
975 }
976 }
977
978 /*
Jens Axboe75154842006-06-01 13:56:09 +0200979 * Wait for the started threads to transition to
980 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100981 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100982 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200983 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100984 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200985 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
986 break;
987
988 usleep(100000);
989
990 for (i = 0; i < this_jobs; i++) {
991 td = map[i];
992 if (!td)
993 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200994 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200995 map[i] = NULL;
996 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200997 } else if (td->runstate >= TD_EXITED) {
998 map[i] = NULL;
999 left--;
1000 todo--;
1001 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001002 }
1003 }
1004 }
1005
1006 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001007 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001008 for (i = 0; i < this_jobs; i++) {
1009 td = map[i];
1010 if (!td)
1011 continue;
1012 kill(td->pid, SIGTERM);
1013 }
1014 break;
1015 }
1016
1017 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001018 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001019 */
Jens Axboe34572e22006-10-20 09:33:18 +02001020 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001021 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001022 continue;
1023
1024 td_set_runstate(td, TD_RUNNING);
1025 nr_running++;
1026 nr_started--;
1027 m_rate += td->ratemin;
1028 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001029 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001030 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001031 }
1032
1033 reap_threads(&nr_running, &t_rate, &m_rate);
1034
1035 if (todo)
1036 usleep(100000);
1037 }
1038
1039 while (nr_running) {
1040 reap_threads(&nr_running, &t_rate, &m_rate);
1041 usleep(10000);
1042 }
1043
1044 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001045 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001046}
1047
Jens Axboeebac4652005-12-08 15:25:21 +01001048int main(int argc, char *argv[])
1049{
Jens Axboe29d610e2007-02-06 13:25:33 +01001050 long ps;
1051
Jens Axboedbe11252007-02-11 00:19:51 +01001052 /*
1053 * We need locale for number printing, if it isn't set then just
1054 * go with the US format.
1055 */
1056 if (!getenv("LC_NUMERIC"))
1057 setlocale(LC_NUMERIC, "en_US");
1058
Jens Axboeebac4652005-12-08 15:25:21 +01001059 if (parse_options(argc, argv))
1060 return 1;
1061
1062 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001063 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001064 return 1;
1065 }
1066
Jens Axboe29d610e2007-02-06 13:25:33 +01001067 ps = sysconf(_SC_PAGESIZE);
1068 if (ps < 0) {
1069 log_err("Failed to get page size\n");
1070 return 1;
1071 }
1072
1073 page_mask = ps - 1;
1074
Jens Axboebb3884d2007-01-17 17:23:11 +11001075 if (write_bw_log) {
1076 setup_log(&agg_io_log[DDIR_READ]);
1077 setup_log(&agg_io_log[DDIR_WRITE]);
1078 }
1079
Jens Axboeebac4652005-12-08 15:25:21 +01001080 disk_util_timer_arm();
1081
1082 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001083
Jens Axboebb3884d2007-01-17 17:23:11 +11001084 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001085 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001086 if (write_bw_log) {
1087 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1088 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1089 }
1090 }
Jens Axboeebac4652005-12-08 15:25:21 +01001091
Jens Axboe437c9b72007-02-13 18:20:37 +01001092 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001093}