blob: 45ed354b0f85f4bf2033d07bac1dc279cca618e7 [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
Jens Axboe390c40e2007-03-05 12:35:29 +010063static void terminate_threads(int group_id)
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) {
Jens Axboed9244942007-03-05 12:32:32 +010070 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010071 td->terminate = 1;
72 td->start_delay = 0;
73 }
74 }
75}
76
77static void sig_handler(int sig)
78{
79 switch (sig) {
80 case SIGALRM:
81 update_io_ticks();
82 disk_util_timer_arm();
83 print_thread_status();
84 break;
85 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010086 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010087 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010088 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010089 break;
90 }
91}
92
Jens Axboe906c8d72006-06-13 09:37:56 +020093/*
Jens Axboe906c8d72006-06-13 09:37:56 +020094 * Check if we are above the minimum rate given.
95 */
Jens Axboeebac4652005-12-08 15:25:21 +010096static int check_min_rate(struct thread_data *td, struct timeval *now)
97{
Jens Axboe09042002007-02-23 10:56:22 +010098 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010099 unsigned long spent;
100 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100101
102 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100103 * No minimum rate set, always ok
104 */
105 if (!td->ratemin)
106 return 0;
107
108 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100109 * allow a 2 second settle period in the beginning
110 */
111 if (mtime_since(&td->start, now) < 2000)
112 return 0;
113
Jens Axboe09042002007-02-23 10:56:22 +0100114 if (td_read(td))
115 bytes += td->this_io_bytes[DDIR_READ];
116 if (td_write(td))
117 bytes += td->this_io_bytes[DDIR_WRITE];
118
Jens Axboeebac4652005-12-08 15:25:21 +0100119 /*
120 * if rate blocks is set, sample is running
121 */
122 if (td->rate_bytes) {
123 spent = mtime_since(&td->lastrate, now);
124 if (spent < td->ratecycle)
125 return 0;
126
Jens Axboe413dd452007-02-23 09:26:09 +0100127 if (bytes < td->rate_bytes) {
128 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100129 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100130 } else {
131 rate = (bytes - td->rate_bytes) / spent;
132 if (rate < td->ratemin || bytes < td->rate_bytes) {
133 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
134 return 1;
135 }
Jens Axboeebac4652005-12-08 15:25:21 +0100136 }
137 }
138
Jens Axboe09042002007-02-23 10:56:22 +0100139 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100140 memcpy(&td->lastrate, now, sizeof(*now));
141 return 0;
142}
143
144static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
145{
146 if (!td->timeout)
147 return 0;
148 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
149 return 1;
150
151 return 0;
152}
153
Jens Axboe906c8d72006-06-13 09:37:56 +0200154/*
155 * When job exits, we can cancel the in-flight IO if we are using async
156 * io. Attempt to do so.
157 */
Jens Axboeebac4652005-12-08 15:25:21 +0100158static void cleanup_pending_aio(struct thread_data *td)
159{
Jens Axboeebac4652005-12-08 15:25:21 +0100160 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100161 struct io_u *io_u;
162 int r;
163
164 /*
165 * get immediately available events, if any
166 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100167 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100168 if (r < 0)
169 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100170
171 /*
172 * now cancel remaining active events
173 */
Jens Axboe2866c822006-10-09 15:57:48 +0200174 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100175 list_for_each_safe(entry, n, &td->io_u_busylist) {
176 io_u = list_entry(entry, struct io_u, list);
177
Jens Axboe0c6e7512007-02-22 11:19:39 +0100178 /*
179 * if the io_u isn't in flight, then that generally
180 * means someone leaked an io_u. complain but fix
181 * it up, so we don't stall here.
182 */
183 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
184 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100185 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100186 } else {
187 r = td->io_ops->cancel(td, io_u);
188 if (!r)
189 put_io_u(td, io_u);
190 }
Jens Axboeebac4652005-12-08 15:25:21 +0100191 }
192 }
193
Jens Axboe97601022007-02-18 12:47:29 +0100194 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100195 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100196}
197
Jens Axboe906c8d72006-06-13 09:37:56 +0200198/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200199 * Helper to handle the final sync of a file. Works just like the normal
200 * io path, just does everything sync.
201 */
202static int fio_io_sync(struct thread_data *td, struct fio_file *f)
203{
204 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200205 int ret;
206
207 if (!io_u)
208 return 1;
209
210 io_u->ddir = DDIR_SYNC;
211 io_u->file = f;
212
213 if (td_io_prep(td, io_u)) {
214 put_io_u(td, io_u);
215 return 1;
216 }
217
Jens Axboe755200a2007-02-19 13:08:12 +0100218requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200219 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100220 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100221 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200222 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200223 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100224 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100225 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100226 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100227 } else if (ret == FIO_Q_COMPLETED) {
228 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100229 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100230 return 1;
231 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200232
Jens Axboed7762cf2007-02-23 12:34:57 +0100233 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100234 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100235 } else if (ret == FIO_Q_BUSY) {
236 if (td_io_commit(td))
237 return 1;
238 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200239 }
240
241 return 0;
242}
243
244/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100245 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200246 * reads the blocks back in, and checks the crc/md5 of the data.
247 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100248static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100249{
Jens Axboe53cdc682006-10-18 11:50:58 +0200250 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100251 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100252 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200253
254 /*
255 * sync io first and invalidate cache, to make sure we really
256 * read from disk.
257 */
258 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100259 if (fio_io_sync(td, f))
260 break;
261 if (file_invalidate_cache(td, f))
262 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200263 }
Jens Axboeebac4652005-12-08 15:25:21 +0100264
Jens Axboeb2fdda42007-02-20 20:52:51 +0100265 if (td->error)
266 return;
267
Jens Axboeebac4652005-12-08 15:25:21 +0100268 td_set_runstate(td, TD_VERIFYING);
269
Jens Axboe36167d82007-02-18 05:41:31 +0100270 io_u = NULL;
271 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100272 int ret2;
273
Jens Axboeebac4652005-12-08 15:25:21 +0100274 io_u = __get_io_u(td);
275 if (!io_u)
276 break;
277
Jens Axboe069c2912007-02-21 23:02:39 +0100278 if (runtime_exceeded(td, &io_u->start_time)) {
279 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200280 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100281 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200282
Jens Axboe069c2912007-02-21 23:02:39 +0100283 if (get_next_verify(td, io_u)) {
284 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100285 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100286 }
Jens Axboeebac4652005-12-08 15:25:21 +0100287
Jens Axboe069c2912007-02-21 23:02:39 +0100288 if (td_io_prep(td, io_u)) {
289 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100290 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100291 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100292
293 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100294
Jens Axboe11786802007-03-05 18:33:22 +0100295 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100296 switch (ret) {
297 case FIO_Q_COMPLETED:
298 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100299 ret = -io_u->error;
Jens Axboe54517922007-03-05 10:06:06 +0100300 else if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100301 int bytes = io_u->xfer_buflen - io_u->resid;
302
303 io_u->xfer_buflen = io_u->resid;
304 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100305 requeue_io_u(td, &io_u);
306 } else {
307 ret = io_u_sync_complete(td, io_u);
308 if (ret < 0)
309 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100310 }
Jens Axboe36167d82007-02-18 05:41:31 +0100311 continue;
312 case FIO_Q_QUEUED:
313 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100314 case FIO_Q_BUSY:
315 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100316 ret2 = td_io_commit(td);
317 if (ret2 < 0)
318 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100319 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100320 default:
321 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100322 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100323 break;
324 }
325
Jens Axboe99784632007-02-19 10:06:17 +0100326 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100327 break;
328
Jens Axboe3af6ef32007-02-18 06:57:43 +0100329 /*
330 * if we can queue more, do so. but check if there are
331 * completed io_u's first.
332 */
Jens Axboe97601022007-02-18 12:47:29 +0100333 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100334 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100335 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100336
Jens Axboee916b392007-02-20 14:37:26 +0100337 if (td->cur_depth > td->iodepth_low)
338 min_events = td->cur_depth - td->iodepth_low;
339 }
340
Jens Axboe3af6ef32007-02-18 06:57:43 +0100341 /*
342 * Reap required number of io units, if any, and do the
343 * verification on them through the callback handler
344 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100345 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100346 break;
347 }
348
Jens Axboec01c0392007-02-26 12:43:42 +0100349 if (!td->error) {
350 min_events = td->cur_depth;
351
352 if (min_events)
353 ret = io_u_queued_complete(td, min_events);
354 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100355 cleanup_pending_aio(td);
356
357 td_set_runstate(td, TD_RUNNING);
358}
359
Jens Axboe32cd46a2006-06-07 13:40:40 +0200360/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200361 * Not really an io thread, all it does is burn CPU cycles in the specified
362 * manner.
363 */
364static void do_cpuio(struct thread_data *td)
365{
366 struct timeval e;
367 int split = 100 / td->cpuload;
368 int i = 0;
369
370 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100371 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200372
373 if (runtime_exceeded(td, &e))
374 break;
375
376 if (!(i % split))
377 __usec_sleep(10000);
378 else
379 usec_sleep(td, 10000);
380
381 i++;
382 }
383}
384
385/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200386 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200387 * and reaps them, checking for rate and errors along the way.
388 */
Jens Axboeebac4652005-12-08 15:25:21 +0100389static void do_io(struct thread_data *td)
390{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100391 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100392 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200393 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100394
Jens Axboe5853e5a2006-06-08 14:41:05 +0200395 td_set_runstate(td, TD_RUNNING);
396
Jens Axboe39514142007-02-12 18:49:58 +0100397 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100398 struct timeval comp_time;
399 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200400 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100401 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100402 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100403
404 if (td->terminate)
405 break;
406
Jens Axboe3d7c3912007-02-19 13:16:12 +0100407 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100408 if (!io_u)
409 break;
410
411 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100412
413 if (runtime_exceeded(td, &s)) {
414 put_io_u(td, io_u);
415 break;
416 }
Jens Axboe36167d82007-02-18 05:41:31 +0100417
Jens Axboe11786802007-03-05 18:33:22 +0100418 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100419 switch (ret) {
420 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100421 if (io_u->error)
422 ret = -io_u->error;
423 else if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100424 int bytes = io_u->xfer_buflen - io_u->resid;
425
426 io_u->xfer_buflen = io_u->resid;
427 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100428 requeue_io_u(td, &io_u);
429 } else {
430 fio_gettime(&comp_time, NULL);
431 bytes_done = io_u_sync_complete(td, io_u);
432 if (bytes_done < 0)
433 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100434 }
Jens Axboe36167d82007-02-18 05:41:31 +0100435 break;
436 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100437 /*
438 * if the engine doesn't have a commit hook,
439 * the io_u is really queued. if it does have such
440 * a hook, it has to call io_u_queued() itself.
441 */
442 if (td->io_ops->commit == NULL)
443 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100444 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100445 case FIO_Q_BUSY:
446 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100447 ret2 = td_io_commit(td);
448 if (ret2 < 0)
449 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100450 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100451 default:
452 assert(ret < 0);
453 put_io_u(td, io_u);
454 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100455 }
456
Jens Axboe99784632007-02-19 10:06:17 +0100457 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100458 break;
459
Jens Axboe97601022007-02-18 12:47:29 +0100460 /*
461 * See if we need to complete some commands
462 */
Jens Axboe755200a2007-02-19 13:08:12 +0100463 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100464 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100465 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100466 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100467
Jens Axboee916b392007-02-20 14:37:26 +0100468 if (td->cur_depth > td->iodepth_low)
469 min_evts = td->cur_depth - td->iodepth_low;
470 }
471
Jens Axboe97601022007-02-18 12:47:29 +0100472 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100473 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100474 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100475 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100476 }
477
Jens Axboe97601022007-02-18 12:47:29 +0100478 if (!bytes_done)
479 continue;
480
Jens Axboeebac4652005-12-08 15:25:21 +0100481 /*
482 * the rate is batched for now, it should work for batches
483 * of completions except the very first one which may look
484 * a little bursty
485 */
Jens Axboe97601022007-02-18 12:47:29 +0100486 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100487
Jens Axboe413dd452007-02-23 09:26:09 +0100488 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100489
Jens Axboe97601022007-02-18 12:47:29 +0100490 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100491 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100492 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100493 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100494 break;
495 }
496
Jens Axboe9c1f7432007-01-03 20:43:19 +0100497 if (td->thinktime) {
498 unsigned long long b;
499
500 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100501 if (!(b % td->thinktime_blocks)) {
502 int left;
503
504 if (td->thinktime_spin)
505 __usec_sleep(td->thinktime_spin);
506
507 left = td->thinktime - td->thinktime_spin;
508 if (left)
509 usec_sleep(td, left);
510 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100511 }
Jens Axboeebac4652005-12-08 15:25:21 +0100512 }
513
Jens Axboe4d2413c2006-11-23 11:58:59 +0100514 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100515 struct fio_file *f;
516
Jens Axboec01c0392007-02-26 12:43:42 +0100517 i = td->cur_depth;
518 if (i)
519 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100520
Jens Axboe84585002006-10-19 20:26:22 +0200521 if (should_fsync(td) && td->end_fsync) {
522 td_set_runstate(td, TD_FSYNCING);
523 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200524 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200525 }
Jens Axboec01c0392007-02-26 12:43:42 +0100526 } else
527 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100528}
529
Jens Axboeebac4652005-12-08 15:25:21 +0100530static void cleanup_io_u(struct thread_data *td)
531{
532 struct list_head *entry, *n;
533 struct io_u *io_u;
534
535 list_for_each_safe(entry, n, &td->io_u_freelist) {
536 io_u = list_entry(entry, struct io_u, list);
537
538 list_del(&io_u->list);
539 free(io_u);
540 }
541
Jens Axboe2f9ade32006-10-20 11:25:52 +0200542 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100543}
544
Jens Axboe6b9cea22006-10-30 17:00:24 +0100545/*
546 * "randomly" fill the buffer contents
547 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100548static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100549{
Jens Axboe66eeb292006-11-01 08:35:44 +0100550 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100551
552 while ((void *) ptr - io_u->buf < max_bs) {
553 *ptr = rand() * 0x9e370001;
554 ptr++;
555 }
556}
557
Jens Axboeebac4652005-12-08 15:25:21 +0100558static int init_io_u(struct thread_data *td)
559{
560 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100561 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100562 int i, max_units;
563 char *p;
564
Jens Axboe2866c822006-10-09 15:57:48 +0200565 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200566 return 0;
567
Jens Axboe2866c822006-10-09 15:57:48 +0200568 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100569 max_units = 1;
570 else
571 max_units = td->iodepth;
572
Jens Axboea00735e2006-11-03 08:58:08 +0100573 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100574 td->orig_buffer_size = max_bs * max_units;
575
Jens Axboed0bdaf42006-12-20 14:40:44 +0100576 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100577 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100578 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100579 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100580
Jens Axboe2f9ade32006-10-20 11:25:52 +0200581 if (allocate_io_mem(td))
582 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100583
Jens Axboeebac4652005-12-08 15:25:21 +0100584 p = ALIGN(td->orig_buffer);
585 for (i = 0; i < max_units; i++) {
586 io_u = malloc(sizeof(*io_u));
587 memset(io_u, 0, sizeof(*io_u));
588 INIT_LIST_HEAD(&io_u->list);
589
Jens Axboea00735e2006-11-03 08:58:08 +0100590 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100591 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100592 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100593
Jens Axboeb1ff3402006-02-17 11:35:58 +0100594 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100595 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100596 list_add(&io_u->list, &td->io_u_freelist);
597 }
598
Jens Axboe433afcb2007-02-22 10:39:01 +0100599 io_u_init_timeout();
600
Jens Axboeebac4652005-12-08 15:25:21 +0100601 return 0;
602}
603
Jens Axboeda867742006-06-06 10:39:10 -0700604static int switch_ioscheduler(struct thread_data *td)
605{
606 char tmp[256], tmp2[128];
607 FILE *f;
608 int ret;
609
Jens Axboef48b4672006-10-27 11:30:07 +0200610 if (td->io_ops->flags & FIO_CPUIO)
611 return 0;
612
Jens Axboeda867742006-06-06 10:39:10 -0700613 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
614
615 f = fopen(tmp, "r+");
616 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100617 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700618 return 1;
619 }
620
621 /*
622 * Set io scheduler.
623 */
624 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
625 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100626 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700627 fclose(f);
628 return 1;
629 }
630
631 rewind(f);
632
633 /*
634 * Read back and check that the selected scheduler is now the default.
635 */
636 ret = fread(tmp, 1, sizeof(tmp), f);
637 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100638 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700639 fclose(f);
640 return 1;
641 }
642
643 sprintf(tmp2, "[%s]", td->ioscheduler);
644 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200645 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100646 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700647 fclose(f);
648 return 1;
649 }
650
651 fclose(f);
652 return 0;
653}
654
Jens Axboeebac4652005-12-08 15:25:21 +0100655static void clear_io_state(struct thread_data *td)
656{
Jens Axboe53cdc682006-10-18 11:50:58 +0200657 struct fio_file *f;
658 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100659
Jens Axboe079ad092007-02-20 13:58:20 +0100660 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100661 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100662 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100663
Jens Axboec1324df2007-02-19 19:06:41 +0100664 td->last_was_sync = 0;
665
Jens Axboe53cdc682006-10-18 11:50:58 +0200666 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100667 f->last_completed_pos = 0;
668
Jens Axboe53cdc682006-10-18 11:50:58 +0200669 f->last_pos = 0;
670 if (td->io_ops->flags & FIO_SYNCIO)
671 lseek(f->fd, SEEK_SET, 0);
672
673 if (f->file_map)
674 memset(f->file_map, 0, f->num_maps * sizeof(long));
675 }
Jens Axboeebac4652005-12-08 15:25:21 +0100676}
677
Jens Axboe906c8d72006-06-13 09:37:56 +0200678/*
679 * Entry point for the thread based jobs. The process based jobs end up
680 * here as well, after a little setup.
681 */
Jens Axboeebac4652005-12-08 15:25:21 +0100682static void *thread_main(void *data)
683{
Jens Axboe69008992006-11-24 13:12:56 +0100684 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100685 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100686
687 if (!td->use_thread)
688 setsid();
689
690 td->pid = getpid();
691
Jens Axboeaea47d42006-05-26 19:27:29 +0200692 INIT_LIST_HEAD(&td->io_u_freelist);
693 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100694 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200695 INIT_LIST_HEAD(&td->io_hist_list);
696 INIT_LIST_HEAD(&td->io_log_list);
697
Jens Axboeebac4652005-12-08 15:25:21 +0100698 if (init_io_u(td))
699 goto err;
700
701 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100702 td_verror(td, errno, "cpu_set_affinity");
Jens Axboeebac4652005-12-08 15:25:21 +0100703 goto err;
704 }
705
Jens Axboeaea47d42006-05-26 19:27:29 +0200706 if (init_iolog(td))
707 goto err;
708
Jens Axboeebac4652005-12-08 15:25:21 +0100709 if (td->ioprio) {
710 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100711 td_verror(td, errno, "ioprio_set");
Jens Axboeebac4652005-12-08 15:25:21 +0100712 goto err;
713 }
714 }
715
Jens Axboe1056eaa2006-07-13 10:33:45 -0700716 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100717 td_verror(td, errno, "nice");
Jens Axboeb6f4d882006-06-02 10:32:51 +0200718 goto err;
719 }
720
Jens Axboe75154842006-06-01 13:56:09 +0200721 if (init_random_state(td))
722 goto err;
723
Jens Axboe56f94982006-10-24 09:33:42 +0200724 if (td->ioscheduler && switch_ioscheduler(td))
725 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700726
Jens Axboe75154842006-06-01 13:56:09 +0200727 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200728 fio_sem_up(&startup_sem);
729 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100730
Jens Axboe53cdc682006-10-18 11:50:58 +0200731 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100732 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100733 if (open_files(td))
734 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100735
Jens Axboe7d6c5282007-02-05 10:52:10 +0100736 /*
737 * Do this late, as some IO engines would like to have the
738 * files setup prior to initializing structures.
739 */
740 if (td_io_init(td))
741 goto err;
742
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100743 if (td->exec_prerun) {
744 if (system(td->exec_prerun) < 0)
745 goto err;
746 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200747
Jens Axboe69008992006-11-24 13:12:56 +0100748 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100749 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe079ad092007-02-20 13:58:20 +0100750 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100751
752 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100753 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100754 fio_gettime(&td->start, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100755 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100756
757 if (td->ratemin)
Jens Axboe079ad092007-02-20 13:58:20 +0100758 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100759
760 clear_io_state(td);
761 prune_io_piece_log(td);
762
Jens Axboe2866c822006-10-09 15:57:48 +0200763 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200764 do_cpuio(td);
765 else
766 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100767
Jens Axboe413dd452007-02-23 09:26:09 +0100768 if (td_read(td) && td->io_bytes[DDIR_READ])
769 runtime[DDIR_READ] += utime_since_now(&td->start);
770 if (td_write(td) && td->io_bytes[DDIR_WRITE])
771 runtime[DDIR_WRITE] += utime_since_now(&td->start);
772
Jens Axboeebac4652005-12-08 15:25:21 +0100773 if (td->error || td->terminate)
774 break;
775
776 if (td->verify == VERIFY_NONE)
777 continue;
778
779 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100780 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100781
782 do_verify(td);
783
Jens Axboe69008992006-11-24 13:12:56 +0100784 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100785
786 if (td->error || td->terminate)
787 break;
788 }
789
Jens Axboe36dff962006-11-24 13:29:20 +0100790 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100791 fio_gettime(&td->end_time, NULL);
792 td->runtime[0] = runtime[0] / 1000;
793 td->runtime[1] = runtime[1] / 1000;
794
Jens Axboe079ad092007-02-20 13:58:20 +0100795 if (td->ts.bw_log)
796 finish_log(td, td->ts.bw_log, "bw");
797 if (td->ts.slat_log)
798 finish_log(td, td->ts.slat_log, "slat");
799 if (td->ts.clat_log)
800 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200801 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700802 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100803 if (td->exec_postrun) {
804 if (system(td->exec_postrun) < 0)
805 log_err("fio: postrun %s failed\n", td->exec_postrun);
806 }
Jens Axboeebac4652005-12-08 15:25:21 +0100807
808 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100809 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100810
811err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100812 if (td->error)
813 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200814 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200815 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100816 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100817 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100818 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100819}
820
Jens Axboe906c8d72006-06-13 09:37:56 +0200821/*
822 * We cannot pass the td data into a forked process, so attach the td and
823 * pass it to the thread worker.
824 */
Jens Axboea6418142007-02-17 04:47:18 +0100825static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100826{
827 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100828 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100829
830 data = shmat(shmid, NULL, 0);
831 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100832 int __err = errno;
833
Jens Axboeebac4652005-12-08 15:25:21 +0100834 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100835 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100836 }
837
838 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100839 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100840 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100841 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100842}
843
Jens Axboe906c8d72006-06-13 09:37:56 +0200844/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200845 * Run over the job map and reap the threads that have exited, if any.
846 */
Jens Axboeebac4652005-12-08 15:25:21 +0100847static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
848{
Jens Axboe34572e22006-10-20 09:33:18 +0200849 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100850 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100851
852 /*
853 * reap exited threads (TD_EXITED -> TD_REAPED)
854 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100855 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200856 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100857 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100858
Jens Axboe84585002006-10-19 20:26:22 +0200859 /*
860 * ->io_ops is NULL for a thread that has closed its
861 * io engine
862 */
863 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200864 cputhreads++;
865
Jens Axboea2f77c92007-02-22 11:53:00 +0100866 if (!td->pid || td->runstate == TD_REAPED)
867 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100868 if (td->use_thread) {
869 if (td->runstate == TD_EXITED) {
870 td_set_runstate(td, TD_REAPED);
871 goto reaped;
872 }
873 continue;
874 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100875
876 flags = WNOHANG;
877 if (td->runstate == TD_EXITED)
878 flags = 0;
879
880 /*
881 * check if someone quit or got killed in an unusual way
882 */
883 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100884 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100885 if (errno == ECHILD) {
886 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
887 td_set_runstate(td, TD_REAPED);
888 goto reaped;
889 }
890 perror("waitpid");
891 } else if (ret == td->pid) {
892 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100893 int sig = WTERMSIG(status);
894
Jens Axboed9244942007-03-05 12:32:32 +0100895 if (sig != SIGQUIT)
896 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100897 td_set_runstate(td, TD_REAPED);
898 goto reaped;
899 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100900 if (WIFEXITED(status)) {
901 if (WEXITSTATUS(status) && !td->error)
902 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100903
Jens Axboea2f77c92007-02-22 11:53:00 +0100904 td_set_runstate(td, TD_REAPED);
905 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100906 }
907 }
Jens Axboeebac4652005-12-08 15:25:21 +0100908
Jens Axboea2f77c92007-02-22 11:53:00 +0100909 /*
910 * thread is not dead, continue
911 */
912 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100913reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100914 if (td->use_thread) {
915 long ret;
916
917 if (pthread_join(td->thread, (void *) &ret))
918 perror("pthread_join");
919 }
920
Jens Axboeebac4652005-12-08 15:25:21 +0100921 (*nr_running)--;
922 (*m_rate) -= td->ratemin;
923 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100924
925 if (td->error)
926 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100927 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200928
Jens Axboe4d2413c2006-11-23 11:58:59 +0100929 if (*nr_running == cputhreads && !pending)
Jens Axboe390c40e2007-03-05 12:35:29 +0100930 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100931}
932
Jens Axboe906c8d72006-06-13 09:37:56 +0200933/*
934 * Main function for kicking off and reaping jobs, as needed.
935 */
Jens Axboeebac4652005-12-08 15:25:21 +0100936static void run_threads(void)
937{
Jens Axboeebac4652005-12-08 15:25:21 +0100938 struct thread_data *td;
939 unsigned long spent;
940 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200941
Jens Axboe2f9ade32006-10-20 11:25:52 +0200942 if (fio_pin_memory())
943 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100944
Jens Axboec6ae0a52006-06-12 11:04:44 +0200945 if (!terse_output) {
946 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
947 fflush(stdout);
948 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200949
Jens Axboe4efa9702006-05-31 11:56:49 +0200950 signal(SIGINT, sig_handler);
951 signal(SIGALRM, sig_handler);
952
Jens Axboeebac4652005-12-08 15:25:21 +0100953 todo = thread_number;
954 nr_running = 0;
955 nr_started = 0;
956 m_rate = t_rate = 0;
957
Jens Axboe34572e22006-10-20 09:33:18 +0200958 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200959 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100960
Jens Axboe380cf262007-01-11 14:01:27 +0100961 if (!td->create_serialize) {
962 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100963 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100964 }
Jens Axboeebac4652005-12-08 15:25:21 +0100965
966 /*
967 * do file setup here so it happens sequentially,
968 * we don't want X number of threads getting their
969 * client data interspersed on disk
970 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200971 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100972 exit_value++;
973 if (td->error)
974 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100975 td_set_runstate(td, TD_REAPED);
976 todo--;
977 }
Jens Axboe380cf262007-01-11 14:01:27 +0100978
979 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100980 }
981
Jens Axboea2f77c92007-02-22 11:53:00 +0100982 set_genesis_time();
983
Jens Axboeebac4652005-12-08 15:25:21 +0100984 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200985 struct thread_data *map[MAX_JOBS];
986 struct timeval this_start;
987 int this_jobs = 0, left;
988
Jens Axboeebac4652005-12-08 15:25:21 +0100989 /*
990 * create threads (TD_NOT_CREATED -> TD_CREATED)
991 */
Jens Axboe34572e22006-10-20 09:33:18 +0200992 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100993 if (td->runstate != TD_NOT_CREATED)
994 continue;
995
996 /*
997 * never got a chance to start, killed by other
998 * thread for some reason
999 */
1000 if (td->terminate) {
1001 todo--;
1002 continue;
1003 }
1004
1005 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001006 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001007
1008 if (td->start_delay * 1000 > spent)
1009 continue;
1010 }
1011
1012 if (td->stonewall && (nr_started || nr_running))
1013 break;
1014
Jens Axboe75154842006-06-01 13:56:09 +02001015 /*
1016 * Set state to created. Thread will transition
1017 * to TD_INITIALIZED when it's done setting up.
1018 */
Jens Axboeebac4652005-12-08 15:25:21 +01001019 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001020 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001021 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001022 nr_started++;
1023
1024 if (td->use_thread) {
1025 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1026 perror("thread_create");
1027 nr_started--;
1028 }
1029 } else {
1030 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +02001031 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001032 else {
Jens Axboea6418142007-02-17 04:47:18 +01001033 int ret = fork_main(shm_id, i);
1034
1035 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001036 }
1037 }
1038 }
1039
1040 /*
Jens Axboe75154842006-06-01 13:56:09 +02001041 * Wait for the started threads to transition to
1042 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001043 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001044 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001045 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001046 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001047 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1048 break;
1049
1050 usleep(100000);
1051
1052 for (i = 0; i < this_jobs; i++) {
1053 td = map[i];
1054 if (!td)
1055 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001056 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001057 map[i] = NULL;
1058 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001059 } else if (td->runstate >= TD_EXITED) {
1060 map[i] = NULL;
1061 left--;
1062 todo--;
1063 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001064 }
1065 }
1066 }
1067
1068 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001069 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001070 for (i = 0; i < this_jobs; i++) {
1071 td = map[i];
1072 if (!td)
1073 continue;
1074 kill(td->pid, SIGTERM);
1075 }
1076 break;
1077 }
1078
1079 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001080 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001081 */
Jens Axboe34572e22006-10-20 09:33:18 +02001082 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001083 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001084 continue;
1085
1086 td_set_runstate(td, TD_RUNNING);
1087 nr_running++;
1088 nr_started--;
1089 m_rate += td->ratemin;
1090 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001091 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001092 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001093 }
1094
1095 reap_threads(&nr_running, &t_rate, &m_rate);
1096
1097 if (todo)
1098 usleep(100000);
1099 }
1100
1101 while (nr_running) {
1102 reap_threads(&nr_running, &t_rate, &m_rate);
1103 usleep(10000);
1104 }
1105
1106 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001107 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001108}
1109
Jens Axboeebac4652005-12-08 15:25:21 +01001110int main(int argc, char *argv[])
1111{
Jens Axboe29d610e2007-02-06 13:25:33 +01001112 long ps;
1113
Jens Axboedbe11252007-02-11 00:19:51 +01001114 /*
1115 * We need locale for number printing, if it isn't set then just
1116 * go with the US format.
1117 */
1118 if (!getenv("LC_NUMERIC"))
1119 setlocale(LC_NUMERIC, "en_US");
1120
Jens Axboeebac4652005-12-08 15:25:21 +01001121 if (parse_options(argc, argv))
1122 return 1;
1123
1124 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001125 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001126 return 1;
1127 }
1128
Jens Axboe29d610e2007-02-06 13:25:33 +01001129 ps = sysconf(_SC_PAGESIZE);
1130 if (ps < 0) {
1131 log_err("Failed to get page size\n");
1132 return 1;
1133 }
1134
1135 page_mask = ps - 1;
1136
Jens Axboebb3884d2007-01-17 17:23:11 +11001137 if (write_bw_log) {
1138 setup_log(&agg_io_log[DDIR_READ]);
1139 setup_log(&agg_io_log[DDIR_WRITE]);
1140 }
1141
Jens Axboea2f77c92007-02-22 11:53:00 +01001142 set_genesis_time();
1143
Jens Axboeebac4652005-12-08 15:25:21 +01001144 disk_util_timer_arm();
1145
1146 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001147
Jens Axboebb3884d2007-01-17 17:23:11 +11001148 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001149 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001150 if (write_bw_log) {
1151 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1152 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1153 }
1154 }
Jens Axboeebac4652005-12-08 15:25:21 +01001155
Jens Axboe437c9b72007-02-13 18:20:37 +01001156 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001157}