blob: e6bd18a0c037390f1ec91764007a61a07dc7159e [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 Axboecfc99db2007-03-14 10:34:47 +010040unsigned long page_mask;
41unsigned long page_size;
Jens Axboe29d610e2007-02-06 13:25:33 +010042#define ALIGN(buf) \
43 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010044
45int groupid = 0;
46int thread_number = 0;
Jens Axboe9cedf162007-03-12 11:29:30 +010047int nr_process = 0;
48int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010049int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020050int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010051
Jens Axboe07739b52007-03-08 20:25:46 +010052static struct fio_sem *startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010053static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010054static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010055
Jens Axboebb3884d2007-01-17 17:23:11 +110056struct io_log *agg_io_log[2];
57
Jens Axboeebac4652005-12-08 15:25:21 +010058#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020059#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010060
Jens Axboe6ce15a32007-01-12 09:04:41 +010061static inline void td_set_runstate(struct thread_data *td, int runstate)
62{
63 td->runstate = runstate;
64}
65
Jens Axboe390c40e2007-03-05 12:35:29 +010066static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010067{
Jens Axboe34572e22006-10-20 09:33:18 +020068 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010069 int i;
70
Jens Axboe34572e22006-10-20 09:33:18 +020071 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010072 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboec1302d42007-03-05 20:18:31 +010073 /*
74 * if the thread is running, just let it exit
75 */
76 if (td->runstate < TD_RUNNING)
77 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010078 td->terminate = 1;
79 td->start_delay = 0;
80 }
81 }
82}
83
84static void sig_handler(int sig)
85{
86 switch (sig) {
87 case SIGALRM:
88 update_io_ticks();
89 disk_util_timer_arm();
90 print_thread_status();
91 break;
92 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010093 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010094 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010095 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010096 break;
97 }
98}
99
Jens Axboe906c8d72006-06-13 09:37:56 +0200100/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200101 * Check if we are above the minimum rate given.
102 */
Jens Axboeebac4652005-12-08 15:25:21 +0100103static int check_min_rate(struct thread_data *td, struct timeval *now)
104{
Jens Axboe09042002007-02-23 10:56:22 +0100105 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100106 unsigned long spent;
107 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100108
109 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100110 * No minimum rate set, always ok
111 */
112 if (!td->ratemin)
113 return 0;
114
115 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100116 * allow a 2 second settle period in the beginning
117 */
118 if (mtime_since(&td->start, now) < 2000)
119 return 0;
120
Jens Axboe09042002007-02-23 10:56:22 +0100121 if (td_read(td))
122 bytes += td->this_io_bytes[DDIR_READ];
123 if (td_write(td))
124 bytes += td->this_io_bytes[DDIR_WRITE];
125
Jens Axboeebac4652005-12-08 15:25:21 +0100126 /*
127 * if rate blocks is set, sample is running
128 */
129 if (td->rate_bytes) {
130 spent = mtime_since(&td->lastrate, now);
131 if (spent < td->ratecycle)
132 return 0;
133
Jens Axboe413dd452007-02-23 09:26:09 +0100134 if (bytes < td->rate_bytes) {
135 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100136 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100137 } else {
138 rate = (bytes - td->rate_bytes) / spent;
139 if (rate < td->ratemin || bytes < td->rate_bytes) {
140 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
141 return 1;
142 }
Jens Axboeebac4652005-12-08 15:25:21 +0100143 }
144 }
145
Jens Axboe09042002007-02-23 10:56:22 +0100146 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100147 memcpy(&td->lastrate, now, sizeof(*now));
148 return 0;
149}
150
151static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
152{
153 if (!td->timeout)
154 return 0;
155 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
156 return 1;
157
158 return 0;
159}
160
Jens Axboe906c8d72006-06-13 09:37:56 +0200161/*
162 * When job exits, we can cancel the in-flight IO if we are using async
163 * io. Attempt to do so.
164 */
Jens Axboeebac4652005-12-08 15:25:21 +0100165static void cleanup_pending_aio(struct thread_data *td)
166{
Jens Axboeebac4652005-12-08 15:25:21 +0100167 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100168 struct io_u *io_u;
169 int r;
170
171 /*
172 * get immediately available events, if any
173 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100174 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100175 if (r < 0)
176 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100177
178 /*
179 * now cancel remaining active events
180 */
Jens Axboe2866c822006-10-09 15:57:48 +0200181 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100182 list_for_each_safe(entry, n, &td->io_u_busylist) {
183 io_u = list_entry(entry, struct io_u, list);
184
Jens Axboe0c6e7512007-02-22 11:19:39 +0100185 /*
186 * if the io_u isn't in flight, then that generally
187 * means someone leaked an io_u. complain but fix
188 * it up, so we don't stall here.
189 */
190 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
191 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100192 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100193 } else {
194 r = td->io_ops->cancel(td, io_u);
195 if (!r)
196 put_io_u(td, io_u);
197 }
Jens Axboeebac4652005-12-08 15:25:21 +0100198 }
199 }
200
Jens Axboe97601022007-02-18 12:47:29 +0100201 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100202 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100203}
204
Jens Axboe906c8d72006-06-13 09:37:56 +0200205/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200206 * Helper to handle the final sync of a file. Works just like the normal
207 * io path, just does everything sync.
208 */
209static int fio_io_sync(struct thread_data *td, struct fio_file *f)
210{
211 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200212 int ret;
213
214 if (!io_u)
215 return 1;
216
217 io_u->ddir = DDIR_SYNC;
218 io_u->file = f;
219
220 if (td_io_prep(td, io_u)) {
221 put_io_u(td, io_u);
222 return 1;
223 }
224
Jens Axboe755200a2007-02-19 13:08:12 +0100225requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200226 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100227 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100228 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200229 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200230 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100231 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100232 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100233 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100234 } else if (ret == FIO_Q_COMPLETED) {
235 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100236 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100237 return 1;
238 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200239
Jens Axboed7762cf2007-02-23 12:34:57 +0100240 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100241 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100242 } else if (ret == FIO_Q_BUSY) {
243 if (td_io_commit(td))
244 return 1;
245 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200246 }
247
248 return 0;
249}
250
251/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100252 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200253 * reads the blocks back in, and checks the crc/md5 of the data.
254 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100255static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100256{
Jens Axboe53cdc682006-10-18 11:50:58 +0200257 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100258 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100259 int ret, min_events;
260 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200261
262 /*
263 * sync io first and invalidate cache, to make sure we really
264 * read from disk.
265 */
266 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100267 if (!(f->flags & FIO_FILE_OPEN))
268 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100269 if (fio_io_sync(td, f))
270 break;
271 if (file_invalidate_cache(td, f))
272 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200273 }
Jens Axboeebac4652005-12-08 15:25:21 +0100274
Jens Axboeb2fdda42007-02-20 20:52:51 +0100275 if (td->error)
276 return;
277
Jens Axboeebac4652005-12-08 15:25:21 +0100278 td_set_runstate(td, TD_VERIFYING);
279
Jens Axboe36167d82007-02-18 05:41:31 +0100280 io_u = NULL;
281 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100282 int ret2;
283
Jens Axboeebac4652005-12-08 15:25:21 +0100284 io_u = __get_io_u(td);
285 if (!io_u)
286 break;
287
Jens Axboe069c2912007-02-21 23:02:39 +0100288 if (runtime_exceeded(td, &io_u->start_time)) {
289 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200290 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100291 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200292
Jens Axboe069c2912007-02-21 23:02:39 +0100293 if (get_next_verify(td, io_u)) {
294 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100295 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100296 }
Jens Axboeebac4652005-12-08 15:25:21 +0100297
Jens Axboe069c2912007-02-21 23:02:39 +0100298 if (td_io_prep(td, io_u)) {
299 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100300 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100301 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100302
303 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100304
Jens Axboe11786802007-03-05 18:33:22 +0100305 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100306 switch (ret) {
307 case FIO_Q_COMPLETED:
308 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100309 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100310 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100311 int bytes = io_u->xfer_buflen - io_u->resid;
312
Jens Axboe9e9d1642007-03-12 09:37:46 +0100313 /*
314 * zero read, fail
315 */
316 if (!bytes) {
317 td_verror(td, ENODATA, "full resid");
318 put_io_u(td, io_u);
319 break;
320 }
Jens Axboe36167d82007-02-18 05:41:31 +0100321 io_u->xfer_buflen = io_u->resid;
322 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100323 requeue_io_u(td, &io_u);
324 } else {
325 ret = io_u_sync_complete(td, io_u);
326 if (ret < 0)
327 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100328 }
Jens Axboe36167d82007-02-18 05:41:31 +0100329 continue;
330 case FIO_Q_QUEUED:
331 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100332 case FIO_Q_BUSY:
333 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100334 ret2 = td_io_commit(td);
335 if (ret2 < 0)
336 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100337 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100338 default:
339 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100340 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100341 break;
342 }
343
Jens Axboe99784632007-02-19 10:06:17 +0100344 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100345 break;
346
Jens Axboe3af6ef32007-02-18 06:57:43 +0100347 /*
348 * if we can queue more, do so. but check if there are
349 * completed io_u's first.
350 */
Jens Axboe97601022007-02-18 12:47:29 +0100351 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100352 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100353 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100354
Jens Axboee916b392007-02-20 14:37:26 +0100355 if (td->cur_depth > td->iodepth_low)
356 min_events = td->cur_depth - td->iodepth_low;
357 }
358
Jens Axboe3af6ef32007-02-18 06:57:43 +0100359 /*
360 * Reap required number of io units, if any, and do the
361 * verification on them through the callback handler
362 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100363 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100364 break;
365 }
366
Jens Axboec01c0392007-02-26 12:43:42 +0100367 if (!td->error) {
368 min_events = td->cur_depth;
369
370 if (min_events)
371 ret = io_u_queued_complete(td, min_events);
372 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100373 cleanup_pending_aio(td);
374
375 td_set_runstate(td, TD_RUNNING);
376}
377
Jens Axboe32cd46a2006-06-07 13:40:40 +0200378/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200379 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200380 * and reaps them, checking for rate and errors along the way.
381 */
Jens Axboeebac4652005-12-08 15:25:21 +0100382static void do_io(struct thread_data *td)
383{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100384 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100385 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100386 unsigned int i;
387 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100388
Jens Axboe5853e5a2006-06-08 14:41:05 +0200389 td_set_runstate(td, TD_RUNNING);
390
Jens Axboe39514142007-02-12 18:49:58 +0100391 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100392 struct timeval comp_time;
393 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200394 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100395 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100396 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100397
398 if (td->terminate)
399 break;
400
Jens Axboe3d7c3912007-02-19 13:16:12 +0100401 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100402 if (!io_u)
403 break;
404
405 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100406
407 if (runtime_exceeded(td, &s)) {
408 put_io_u(td, io_u);
409 break;
410 }
Jens Axboe36167d82007-02-18 05:41:31 +0100411
Jens Axboe11786802007-03-05 18:33:22 +0100412 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100413 switch (ret) {
414 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100415 if (io_u->error)
416 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100417 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100418 int bytes = io_u->xfer_buflen - io_u->resid;
419
Jens Axboe9e9d1642007-03-12 09:37:46 +0100420 /*
421 * zero read, fail
422 */
423 if (!bytes) {
424 td_verror(td, ENODATA, "full resid");
425 put_io_u(td, io_u);
426 break;
427 }
428
Jens Axboe36167d82007-02-18 05:41:31 +0100429 io_u->xfer_buflen = io_u->resid;
430 io_u->xfer_buf += bytes;
Jens Axboe11786802007-03-05 18:33:22 +0100431 requeue_io_u(td, &io_u);
432 } else {
433 fio_gettime(&comp_time, NULL);
434 bytes_done = io_u_sync_complete(td, io_u);
435 if (bytes_done < 0)
436 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100437 }
Jens Axboe36167d82007-02-18 05:41:31 +0100438 break;
439 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100440 /*
441 * if the engine doesn't have a commit hook,
442 * the io_u is really queued. if it does have such
443 * a hook, it has to call io_u_queued() itself.
444 */
445 if (td->io_ops->commit == NULL)
446 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100447 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100448 case FIO_Q_BUSY:
449 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100450 ret2 = td_io_commit(td);
451 if (ret2 < 0)
452 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100453 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100454 default:
455 assert(ret < 0);
456 put_io_u(td, io_u);
457 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100458 }
459
Jens Axboe99784632007-02-19 10:06:17 +0100460 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100461 break;
462
Jens Axboe97601022007-02-18 12:47:29 +0100463 /*
464 * See if we need to complete some commands
465 */
Jens Axboe755200a2007-02-19 13:08:12 +0100466 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100467 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100468 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100469 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100470
Jens Axboee916b392007-02-20 14:37:26 +0100471 if (td->cur_depth > td->iodepth_low)
472 min_evts = td->cur_depth - td->iodepth_low;
473 }
474
Jens Axboe97601022007-02-18 12:47:29 +0100475 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100476 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100477 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100478 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100479 }
480
Jens Axboe97601022007-02-18 12:47:29 +0100481 if (!bytes_done)
482 continue;
483
Jens Axboeebac4652005-12-08 15:25:21 +0100484 /*
485 * the rate is batched for now, it should work for batches
486 * of completions except the very first one which may look
487 * a little bursty
488 */
Jens Axboe97601022007-02-18 12:47:29 +0100489 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100490
Jens Axboe413dd452007-02-23 09:26:09 +0100491 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100492
Jens Axboe97601022007-02-18 12:47:29 +0100493 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100494 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100495 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100496 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100497 break;
498 }
499
Jens Axboe9c1f7432007-01-03 20:43:19 +0100500 if (td->thinktime) {
501 unsigned long long b;
502
503 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100504 if (!(b % td->thinktime_blocks)) {
505 int left;
506
507 if (td->thinktime_spin)
508 __usec_sleep(td->thinktime_spin);
509
510 left = td->thinktime - td->thinktime_spin;
511 if (left)
512 usec_sleep(td, left);
513 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100514 }
Jens Axboeebac4652005-12-08 15:25:21 +0100515 }
516
Jens Axboe4d2413c2006-11-23 11:58:59 +0100517 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100518 struct fio_file *f;
519
Jens Axboec01c0392007-02-26 12:43:42 +0100520 i = td->cur_depth;
521 if (i)
522 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100523
Jens Axboe84585002006-10-19 20:26:22 +0200524 if (should_fsync(td) && td->end_fsync) {
525 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100526
527 for_each_file(td, f, i) {
528 if (!(f->flags & FIO_FILE_OPEN))
529 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200530 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100531 }
Jens Axboe84585002006-10-19 20:26:22 +0200532 }
Jens Axboec01c0392007-02-26 12:43:42 +0100533 } else
534 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100535}
536
Jens Axboeebac4652005-12-08 15:25:21 +0100537static void cleanup_io_u(struct thread_data *td)
538{
539 struct list_head *entry, *n;
540 struct io_u *io_u;
541
542 list_for_each_safe(entry, n, &td->io_u_freelist) {
543 io_u = list_entry(entry, struct io_u, list);
544
545 list_del(&io_u->list);
546 free(io_u);
547 }
548
Jens Axboe2f9ade32006-10-20 11:25:52 +0200549 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100550}
551
Jens Axboe6b9cea22006-10-30 17:00:24 +0100552/*
553 * "randomly" fill the buffer contents
554 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100555static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100556{
Jens Axboe66eeb292006-11-01 08:35:44 +0100557 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100558
559 while ((void *) ptr - io_u->buf < max_bs) {
560 *ptr = rand() * 0x9e370001;
561 ptr++;
562 }
563}
564
Jens Axboeebac4652005-12-08 15:25:21 +0100565static int init_io_u(struct thread_data *td)
566{
567 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100568 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100569 int i, max_units;
570 char *p;
571
Jens Axboe2866c822006-10-09 15:57:48 +0200572 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100573 max_units = 1;
574 else
575 max_units = td->iodepth;
576
Jens Axboea00735e2006-11-03 08:58:08 +0100577 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100578 td->orig_buffer_size = max_bs * max_units;
579
Jens Axboed0bdaf42006-12-20 14:40:44 +0100580 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100581 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100582 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100583 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100584
Jens Axboe2f9ade32006-10-20 11:25:52 +0200585 if (allocate_io_mem(td))
586 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100587
Jens Axboeebac4652005-12-08 15:25:21 +0100588 p = ALIGN(td->orig_buffer);
589 for (i = 0; i < max_units; i++) {
590 io_u = malloc(sizeof(*io_u));
591 memset(io_u, 0, sizeof(*io_u));
592 INIT_LIST_HEAD(&io_u->list);
593
Jens Axboea00735e2006-11-03 08:58:08 +0100594 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100595 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100596 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100597
Jens Axboeb1ff3402006-02-17 11:35:58 +0100598 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100599 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100600 list_add(&io_u->list, &td->io_u_freelist);
601 }
602
Jens Axboe433afcb2007-02-22 10:39:01 +0100603 io_u_init_timeout();
604
Jens Axboeebac4652005-12-08 15:25:21 +0100605 return 0;
606}
607
Jens Axboeda867742006-06-06 10:39:10 -0700608static int switch_ioscheduler(struct thread_data *td)
609{
610 char tmp[256], tmp2[128];
611 FILE *f;
612 int ret;
613
Jens Axboeba0fbe12007-03-09 14:34:23 +0100614 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200615 return 0;
616
Jens Axboeda867742006-06-06 10:39:10 -0700617 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
618
619 f = fopen(tmp, "r+");
620 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100621 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700622 return 1;
623 }
624
625 /*
626 * Set io scheduler.
627 */
628 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
629 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100630 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700631 fclose(f);
632 return 1;
633 }
634
635 rewind(f);
636
637 /*
638 * Read back and check that the selected scheduler is now the default.
639 */
640 ret = fread(tmp, 1, sizeof(tmp), f);
641 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100642 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700643 fclose(f);
644 return 1;
645 }
646
647 sprintf(tmp2, "[%s]", td->ioscheduler);
648 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200649 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100650 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700651 fclose(f);
652 return 1;
653 }
654
655 fclose(f);
656 return 0;
657}
658
Jens Axboea978ba62007-03-08 14:29:03 +0100659static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100660{
Jens Axboe53cdc682006-10-18 11:50:58 +0200661 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100662 unsigned int i;
663 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100664
Jens Axboe756867b2007-03-06 15:19:24 +0100665 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100666 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100667 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100668 td->rate_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100669
Jens Axboec1324df2007-02-19 19:06:41 +0100670 td->last_was_sync = 0;
671
Jens Axboea978ba62007-03-08 14:29:03 +0100672 for_each_file(td, f, i)
673 td_io_close_file(td, f);
674
675 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200676 for_each_file(td, f, i) {
Jens Axboea978ba62007-03-08 14:29:03 +0100677 ret = td_io_open_file(td, f);
678 if (ret)
679 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200680 }
Jens Axboea978ba62007-03-08 14:29:03 +0100681
682 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100683}
684
Jens Axboe906c8d72006-06-13 09:37:56 +0200685/*
686 * Entry point for the thread based jobs. The process based jobs end up
687 * here as well, after a little setup.
688 */
Jens Axboeebac4652005-12-08 15:25:21 +0100689static void *thread_main(void *data)
690{
Jens Axboe69008992006-11-24 13:12:56 +0100691 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100692 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100693 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100694
695 if (!td->use_thread)
696 setsid();
697
698 td->pid = getpid();
699
Jens Axboeaea47d42006-05-26 19:27:29 +0200700 INIT_LIST_HEAD(&td->io_u_freelist);
701 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100702 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200703 INIT_LIST_HEAD(&td->io_hist_list);
704 INIT_LIST_HEAD(&td->io_log_list);
705
Jens Axboeebac4652005-12-08 15:25:21 +0100706 if (init_io_u(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100707 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100708
709 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100710 td_verror(td, errno, "cpu_set_affinity");
Jens Axboebda4fd92007-03-12 11:21:48 +0100711 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100712 }
713
Jens Axboeaea47d42006-05-26 19:27:29 +0200714 if (init_iolog(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100715 goto err_sem;
Jens Axboeaea47d42006-05-26 19:27:29 +0200716
Jens Axboeebac4652005-12-08 15:25:21 +0100717 if (td->ioprio) {
718 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100719 td_verror(td, errno, "ioprio_set");
Jens Axboebda4fd92007-03-12 11:21:48 +0100720 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100721 }
722 }
723
Jens Axboe1056eaa2006-07-13 10:33:45 -0700724 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100725 td_verror(td, errno, "nice");
Jens Axboebda4fd92007-03-12 11:21:48 +0100726 goto err_sem;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200727 }
728
Jens Axboe75154842006-06-01 13:56:09 +0200729 if (init_random_state(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100730 goto err_sem;
Jens Axboe75154842006-06-01 13:56:09 +0200731
Jens Axboe56f94982006-10-24 09:33:42 +0200732 if (td->ioscheduler && switch_ioscheduler(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100733 goto err_sem;
Jens Axboeda867742006-06-06 10:39:10 -0700734
Jens Axboe75154842006-06-01 13:56:09 +0200735 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100736 fio_sem_up(startup_sem);
737 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100738
Jens Axboe37f56872007-03-09 12:42:35 +0100739 /*
740 * the ->mutex semaphore is now no longer used, close it to avoid
741 * eating a file descriptor
742 */
743 fio_sem_remove(td->mutex);
744
Jens Axboe53cdc682006-10-18 11:50:58 +0200745 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100746 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100747
748 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100749 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100750
Jens Axboeb5af8292007-03-08 12:43:13 +0100751 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100752 goto err;
753
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100754 if (td->exec_prerun) {
755 if (system(td->exec_prerun) < 0)
756 goto err;
757 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200758
Jens Axboe69008992006-11-24 13:12:56 +0100759 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100760 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100761 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100762
763 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100764 clear_state = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100765 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100766 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100767 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100768
769 if (td->ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100770 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100771
Jens Axboea978ba62007-03-08 14:29:03 +0100772 if (clear_state && clear_io_state(td))
773 break;
774
Jens Axboeebac4652005-12-08 15:25:21 +0100775 prune_io_piece_log(td);
776
Jens Axboeba0fbe12007-03-09 14:34:23 +0100777 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100778
Jens Axboea978ba62007-03-08 14:29:03 +0100779 clear_state = 1;
780
Jens Axboe413dd452007-02-23 09:26:09 +0100781 if (td_read(td) && td->io_bytes[DDIR_READ])
782 runtime[DDIR_READ] += utime_since_now(&td->start);
783 if (td_write(td) && td->io_bytes[DDIR_WRITE])
784 runtime[DDIR_WRITE] += utime_since_now(&td->start);
785
Jens Axboeebac4652005-12-08 15:25:21 +0100786 if (td->error || td->terminate)
787 break;
788
789 if (td->verify == VERIFY_NONE)
790 continue;
791
Jens Axboea978ba62007-03-08 14:29:03 +0100792 if (clear_io_state(td))
793 break;
794
Jens Axboe02bcaa82006-11-24 10:42:00 +0100795 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100796
797 do_verify(td);
798
Jens Axboe69008992006-11-24 13:12:56 +0100799 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100800
801 if (td->error || td->terminate)
802 break;
803 }
804
Jens Axboe36dff962006-11-24 13:29:20 +0100805 update_rusage_stat(td);
Jens Axboe756867b2007-03-06 15:19:24 +0100806 td->ts.runtime[0] = runtime[0] / 1000;
807 td->ts.runtime[1] = runtime[1] / 1000;
808 td->ts.total_run_time = mtime_since_now(&td->epoch);
809 td->ts.io_bytes[0] = td->io_bytes[0];
810 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100811
Jens Axboe756867b2007-03-06 15:19:24 +0100812 if (td->ts.bw_log)
813 finish_log(td, td->ts.bw_log, "bw");
814 if (td->ts.slat_log)
815 finish_log(td, td->ts.slat_log, "slat");
816 if (td->ts.clat_log)
817 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200818 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700819 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100820 if (td->exec_postrun) {
821 if (system(td->exec_postrun) < 0)
822 log_err("fio: postrun %s failed\n", td->exec_postrun);
823 }
Jens Axboeebac4652005-12-08 15:25:21 +0100824
825 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100826 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100827
828err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100829 if (td->error)
830 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200831 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200832 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100833 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100834 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100835 return (void *) (unsigned long) td->error;
Jens Axboebda4fd92007-03-12 11:21:48 +0100836err_sem:
837 fio_sem_up(startup_sem);
838 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100839}
840
Jens Axboe906c8d72006-06-13 09:37:56 +0200841/*
842 * We cannot pass the td data into a forked process, so attach the td and
843 * pass it to the thread worker.
844 */
Jens Axboea6418142007-02-17 04:47:18 +0100845static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100846{
847 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100848 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100849
850 data = shmat(shmid, NULL, 0);
851 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100852 int __err = errno;
853
Jens Axboeebac4652005-12-08 15:25:21 +0100854 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100855 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100856 }
857
858 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100859 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100860 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100861 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100862}
863
Jens Axboe906c8d72006-06-13 09:37:56 +0200864/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200865 * Run over the job map and reap the threads that have exited, if any.
866 */
Jens Axboeebac4652005-12-08 15:25:21 +0100867static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
868{
Jens Axboe34572e22006-10-20 09:33:18 +0200869 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100870 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100871
872 /*
873 * reap exited threads (TD_EXITED -> TD_REAPED)
874 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100875 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200876 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100877 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100878
Jens Axboe84585002006-10-19 20:26:22 +0200879 /*
880 * ->io_ops is NULL for a thread that has closed its
881 * io engine
882 */
Jens Axboeba0fbe12007-03-09 14:34:23 +0100883 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200884 cputhreads++;
885
Jens Axboea2f77c92007-02-22 11:53:00 +0100886 if (!td->pid || td->runstate == TD_REAPED)
887 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100888 if (td->use_thread) {
889 if (td->runstate == TD_EXITED) {
890 td_set_runstate(td, TD_REAPED);
891 goto reaped;
892 }
893 continue;
894 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100895
896 flags = WNOHANG;
897 if (td->runstate == TD_EXITED)
898 flags = 0;
899
900 /*
901 * check if someone quit or got killed in an unusual way
902 */
903 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100904 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100905 if (errno == ECHILD) {
906 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
907 td_set_runstate(td, TD_REAPED);
908 goto reaped;
909 }
910 perror("waitpid");
911 } else if (ret == td->pid) {
912 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100913 int sig = WTERMSIG(status);
914
Jens Axboed9244942007-03-05 12:32:32 +0100915 if (sig != SIGQUIT)
916 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100917 td_set_runstate(td, TD_REAPED);
918 goto reaped;
919 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100920 if (WIFEXITED(status)) {
921 if (WEXITSTATUS(status) && !td->error)
922 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100923
Jens Axboea2f77c92007-02-22 11:53:00 +0100924 td_set_runstate(td, TD_REAPED);
925 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100926 }
927 }
Jens Axboeebac4652005-12-08 15:25:21 +0100928
Jens Axboea2f77c92007-02-22 11:53:00 +0100929 /*
930 * thread is not dead, continue
931 */
932 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100933reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100934 if (td->use_thread) {
935 long ret;
936
937 if (pthread_join(td->thread, (void *) &ret))
938 perror("pthread_join");
939 }
940
Jens Axboeebac4652005-12-08 15:25:21 +0100941 (*nr_running)--;
942 (*m_rate) -= td->ratemin;
943 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100944
945 if (td->error)
946 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100947 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200948
Jens Axboe4d2413c2006-11-23 11:58:59 +0100949 if (*nr_running == cputhreads && !pending)
Jens Axboe390c40e2007-03-05 12:35:29 +0100950 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100951}
952
Jens Axboe906c8d72006-06-13 09:37:56 +0200953/*
954 * Main function for kicking off and reaping jobs, as needed.
955 */
Jens Axboeebac4652005-12-08 15:25:21 +0100956static void run_threads(void)
957{
Jens Axboeebac4652005-12-08 15:25:21 +0100958 struct thread_data *td;
959 unsigned long spent;
960 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200961
Jens Axboe2f9ade32006-10-20 11:25:52 +0200962 if (fio_pin_memory())
963 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100964
Jens Axboec6ae0a52006-06-12 11:04:44 +0200965 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +0100966 printf("Starting ");
967 if (nr_thread)
968 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
969 if (nr_process) {
970 if (nr_thread)
971 printf(" and ");
972 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
973 }
974 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200975 fflush(stdout);
976 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200977
Jens Axboe4efa9702006-05-31 11:56:49 +0200978 signal(SIGINT, sig_handler);
979 signal(SIGALRM, sig_handler);
980
Jens Axboeebac4652005-12-08 15:25:21 +0100981 todo = thread_number;
982 nr_running = 0;
983 nr_started = 0;
984 m_rate = t_rate = 0;
985
Jens Axboe34572e22006-10-20 09:33:18 +0200986 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200987 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100988
Jens Axboe380cf262007-01-11 14:01:27 +0100989 if (!td->create_serialize) {
990 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100991 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100992 }
Jens Axboeebac4652005-12-08 15:25:21 +0100993
994 /*
995 * do file setup here so it happens sequentially,
996 * we don't want X number of threads getting their
997 * client data interspersed on disk
998 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200999 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001000 exit_value++;
1001 if (td->error)
1002 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001003 td_set_runstate(td, TD_REAPED);
1004 todo--;
1005 }
Jens Axboe380cf262007-01-11 14:01:27 +01001006
1007 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001008 }
1009
Jens Axboea2f77c92007-02-22 11:53:00 +01001010 set_genesis_time();
1011
Jens Axboeebac4652005-12-08 15:25:21 +01001012 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001013 struct thread_data *map[MAX_JOBS];
1014 struct timeval this_start;
1015 int this_jobs = 0, left;
1016
Jens Axboeebac4652005-12-08 15:25:21 +01001017 /*
1018 * create threads (TD_NOT_CREATED -> TD_CREATED)
1019 */
Jens Axboe34572e22006-10-20 09:33:18 +02001020 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001021 if (td->runstate != TD_NOT_CREATED)
1022 continue;
1023
1024 /*
1025 * never got a chance to start, killed by other
1026 * thread for some reason
1027 */
1028 if (td->terminate) {
1029 todo--;
1030 continue;
1031 }
1032
1033 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001034 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001035
1036 if (td->start_delay * 1000 > spent)
1037 continue;
1038 }
1039
1040 if (td->stonewall && (nr_started || nr_running))
1041 break;
1042
Jens Axboe75154842006-06-01 13:56:09 +02001043 /*
1044 * Set state to created. Thread will transition
1045 * to TD_INITIALIZED when it's done setting up.
1046 */
Jens Axboeebac4652005-12-08 15:25:21 +01001047 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001048 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001049 nr_started++;
1050
1051 if (td->use_thread) {
1052 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1053 perror("thread_create");
1054 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001055 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001056 }
1057 } else {
Jens Axboe07739b52007-03-08 20:25:46 +01001058 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001059 int ret = fork_main(shm_id, i);
1060
1061 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001062 }
1063 }
Jens Axboe07739b52007-03-08 20:25:46 +01001064 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001065 }
1066
1067 /*
Jens Axboe75154842006-06-01 13:56:09 +02001068 * Wait for the started threads to transition to
1069 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001070 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001071 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001072 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001073 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001074 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1075 break;
1076
1077 usleep(100000);
1078
1079 for (i = 0; i < this_jobs; i++) {
1080 td = map[i];
1081 if (!td)
1082 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001083 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001084 map[i] = NULL;
1085 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001086 } else if (td->runstate >= TD_EXITED) {
1087 map[i] = NULL;
1088 left--;
1089 todo--;
1090 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001091 }
1092 }
1093 }
1094
1095 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001096 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001097 for (i = 0; i < this_jobs; i++) {
1098 td = map[i];
1099 if (!td)
1100 continue;
1101 kill(td->pid, SIGTERM);
1102 }
1103 break;
1104 }
1105
1106 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001107 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001108 */
Jens Axboe34572e22006-10-20 09:33:18 +02001109 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001110 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001111 continue;
1112
1113 td_set_runstate(td, TD_RUNNING);
1114 nr_running++;
1115 nr_started--;
1116 m_rate += td->ratemin;
1117 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001118 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001119 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001120 }
1121
1122 reap_threads(&nr_running, &t_rate, &m_rate);
1123
1124 if (todo)
1125 usleep(100000);
1126 }
1127
1128 while (nr_running) {
1129 reap_threads(&nr_running, &t_rate, &m_rate);
1130 usleep(10000);
1131 }
1132
1133 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001134 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001135}
1136
Jens Axboeebac4652005-12-08 15:25:21 +01001137int main(int argc, char *argv[])
1138{
Jens Axboe29d610e2007-02-06 13:25:33 +01001139 long ps;
1140
Jens Axboedbe11252007-02-11 00:19:51 +01001141 /*
1142 * We need locale for number printing, if it isn't set then just
1143 * go with the US format.
1144 */
1145 if (!getenv("LC_NUMERIC"))
1146 setlocale(LC_NUMERIC, "en_US");
1147
Jens Axboeebac4652005-12-08 15:25:21 +01001148 if (parse_options(argc, argv))
1149 return 1;
1150
1151 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001152 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001153 return 1;
1154 }
1155
Jens Axboe29d610e2007-02-06 13:25:33 +01001156 ps = sysconf(_SC_PAGESIZE);
1157 if (ps < 0) {
1158 log_err("Failed to get page size\n");
1159 return 1;
1160 }
1161
Jens Axboecfc99db2007-03-14 10:34:47 +01001162 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001163 page_mask = ps - 1;
1164
Jens Axboebb3884d2007-01-17 17:23:11 +11001165 if (write_bw_log) {
1166 setup_log(&agg_io_log[DDIR_READ]);
1167 setup_log(&agg_io_log[DDIR_WRITE]);
1168 }
1169
Jens Axboe07739b52007-03-08 20:25:46 +01001170 startup_sem = fio_sem_init(0);
1171
Jens Axboea2f77c92007-02-22 11:53:00 +01001172 set_genesis_time();
1173
Jens Axboeebac4652005-12-08 15:25:21 +01001174 disk_util_timer_arm();
1175
1176 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001177
Jens Axboebb3884d2007-01-17 17:23:11 +11001178 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001179 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001180 if (write_bw_log) {
1181 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1182 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1183 }
1184 }
Jens Axboeebac4652005-12-08 15:25:21 +01001185
Jens Axboe07739b52007-03-08 20:25:46 +01001186 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001187 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001188}