blob: c17ea3c3ae8822ba68f8f705c4ce13812d5052a3 [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"
Jens Axboe210f43b2007-04-17 19:52:18 +020038#include "hash.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010039#include "smalloc.h"
Jens Axboeebac4652005-12-08 15:25:21 +010040
Jens Axboecfc99db2007-03-14 10:34:47 +010041unsigned long page_mask;
42unsigned long page_size;
Jens Axboe29d610e2007-02-06 13:25:33 +010043#define ALIGN(buf) \
44 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010045
46int groupid = 0;
47int thread_number = 0;
Jens Axboe9cedf162007-03-12 11:29:30 +010048int nr_process = 0;
49int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010050int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020051int temp_stall_ts;
Jens Axboed3eeeab2008-04-06 12:19:05 +020052unsigned long done_secs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010053
Jens Axboecdd18ad2008-02-27 18:58:00 +010054static struct fio_mutex *startup_mutex;
Jens Axboe6ce15a32007-01-12 09:04:41 +010055static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010056static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboebb3884d2007-01-17 17:23:11 +110058struct io_log *agg_io_log[2];
59
Jens Axboeebac4652005-12-08 15:25:21 +010060#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020061#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010062
Jens Axboe6ce15a32007-01-12 09:04:41 +010063static inline void td_set_runstate(struct thread_data *td, int runstate)
64{
Jens Axboed8fab1b2008-03-06 10:25:17 +010065 if (td->runstate == runstate)
66 return;
67
Jens Axboebd6f78b2008-02-01 20:27:52 +010068 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", td->pid, td->runstate,
69 runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010070 td->runstate = runstate;
71}
72
Jens Axboe390c40e2007-03-05 12:35:29 +010073static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010074{
Jens Axboe34572e22006-10-20 09:33:18 +020075 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010076 int i;
77
Jens Axboe6f88bcb2008-03-19 10:29:07 +010078 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
79
Jens Axboe34572e22006-10-20 09:33:18 +020080 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010081 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboe6f88bcb2008-03-19 10:29:07 +010082 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
83 td->o.name, td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +010084 td->terminate = 1;
85 td->o.start_delay = 0;
86
Jens Axboe7a93ab12007-04-18 12:25:41 +020087 /*
88 * if the thread is running, just let it exit
89 */
90 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010091 kill(td->pid, SIGQUIT);
Jens Axboef63f7f32008-03-01 15:25:24 +010092 else {
93 struct ioengine_ops *ops = td->io_ops;
94
95 if (ops && (ops->flags & FIO_SIGQUIT))
96 kill(td->pid, SIGQUIT);
97 }
Jens Axboeebac4652005-12-08 15:25:21 +010098 }
99 }
100}
101
102static void sig_handler(int sig)
103{
104 switch (sig) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100105 case SIGALRM:
106 update_io_ticks();
107 disk_util_timer_arm();
108 print_thread_status();
109 break;
110 default:
111 printf("\nfio: terminating on signal %d\n", sig);
112 fflush(stdout);
113 terminate_threads(TERMINATE_ALL);
114 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100115 }
116}
117
Jens Axboe906c8d72006-06-13 09:37:56 +0200118/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200119 * Check if we are above the minimum rate given.
120 */
Jens Axboeebac4652005-12-08 15:25:21 +0100121static int check_min_rate(struct thread_data *td, struct timeval *now)
122{
Jens Axboe09042002007-02-23 10:56:22 +0100123 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100124 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100125 unsigned long spent;
126 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100127
128 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100129 * No minimum rate set, always ok
130 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100131 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100132 return 0;
133
134 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100135 * allow a 2 second settle period in the beginning
136 */
137 if (mtime_since(&td->start, now) < 2000)
138 return 0;
139
Jens Axboe4e991c22007-03-15 11:41:11 +0100140 if (td_read(td)) {
141 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100142 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100143 }
144 if (td_write(td)) {
145 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100146 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100147 }
Jens Axboe09042002007-02-23 10:56:22 +0100148
Jens Axboeebac4652005-12-08 15:25:21 +0100149 /*
150 * if rate blocks is set, sample is running
151 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100152 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100153 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100154 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100155 return 0;
156
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100157 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100158 /*
159 * check bandwidth specified rate
160 */
161 if (bytes < td->rate_bytes) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100162 log_err("%s: min rate %u not met\n", td->o.name,
163 td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100164 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100165 } else {
166 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100167 if (rate < td->o.ratemin ||
168 bytes < td->rate_bytes) {
169 log_err("%s: min rate %u not met, got"
170 " %luKiB/sec\n", td->o.name,
171 td->o.ratemin, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100172 return 1;
173 }
174 }
175 } else {
176 /*
177 * checks iops specified rate
178 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 if (iops < td->o.rate_iops) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100180 log_err("%s: min iops rate %u not met\n",
181 td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100182 return 1;
183 } else {
184 rate = (iops - td->rate_blocks) / spent;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100185 if (rate < td->o.rate_iops_min ||
186 iops < td->rate_blocks) {
187 log_err("%s: min iops rate %u not met,"
188 " got %lu\n", td->o.name,
189 td->o.rate_iops_min,
190 rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100191 }
Jens Axboe413dd452007-02-23 09:26:09 +0100192 }
Jens Axboeebac4652005-12-08 15:25:21 +0100193 }
194 }
195
Jens Axboe09042002007-02-23 10:56:22 +0100196 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100197 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100198 memcpy(&td->lastrate, now, sizeof(*now));
199 return 0;
200}
201
202static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
203{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100204 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100205 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100206 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100207 return 1;
208
209 return 0;
210}
211
Jens Axboe906c8d72006-06-13 09:37:56 +0200212/*
213 * When job exits, we can cancel the in-flight IO if we are using async
214 * io. Attempt to do so.
215 */
Jens Axboeebac4652005-12-08 15:25:21 +0100216static void cleanup_pending_aio(struct thread_data *td)
217{
Jens Axboeebac4652005-12-08 15:25:21 +0100218 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100219 struct io_u *io_u;
220 int r;
221
222 /*
223 * get immediately available events, if any
224 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100225 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100226 if (r < 0)
227 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100228
229 /*
230 * now cancel remaining active events
231 */
Jens Axboe2866c822006-10-09 15:57:48 +0200232 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100233 list_for_each_safe(entry, n, &td->io_u_busylist) {
234 io_u = list_entry(entry, struct io_u, list);
235
Jens Axboe0c6e7512007-02-22 11:19:39 +0100236 /*
237 * if the io_u isn't in flight, then that generally
238 * means someone leaked an io_u. complain but fix
239 * it up, so we don't stall here.
240 */
241 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
242 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100243 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100244 } else {
245 r = td->io_ops->cancel(td, io_u);
246 if (!r)
247 put_io_u(td, io_u);
248 }
Jens Axboeebac4652005-12-08 15:25:21 +0100249 }
250 }
251
Jens Axboe97601022007-02-18 12:47:29 +0100252 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100253 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100254}
255
Jens Axboe906c8d72006-06-13 09:37:56 +0200256/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200257 * Helper to handle the final sync of a file. Works just like the normal
258 * io path, just does everything sync.
259 */
260static int fio_io_sync(struct thread_data *td, struct fio_file *f)
261{
262 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200263 int ret;
264
265 if (!io_u)
266 return 1;
267
268 io_u->ddir = DDIR_SYNC;
269 io_u->file = f;
270
271 if (td_io_prep(td, io_u)) {
272 put_io_u(td, io_u);
273 return 1;
274 }
275
Jens Axboe755200a2007-02-19 13:08:12 +0100276requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200277 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100278 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100279 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200280 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200281 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100282 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100283 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100284 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100285 } else if (ret == FIO_Q_COMPLETED) {
286 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100287 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100288 return 1;
289 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200290
Jens Axboed7762cf2007-02-23 12:34:57 +0100291 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100292 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100293 } else if (ret == FIO_Q_BUSY) {
294 if (td_io_commit(td))
295 return 1;
296 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200297 }
298
299 return 0;
300}
301
302/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100303 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200304 * reads the blocks back in, and checks the crc/md5 of the data.
305 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100306static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100307{
Jens Axboe53cdc682006-10-18 11:50:58 +0200308 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100309 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100310 int ret, min_events;
311 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200312
313 /*
314 * sync io first and invalidate cache, to make sure we really
315 * read from disk.
316 */
317 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100318 if (!(f->flags & FIO_FILE_OPEN))
319 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100320 if (fio_io_sync(td, f))
321 break;
322 if (file_invalidate_cache(td, f))
323 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200324 }
Jens Axboeebac4652005-12-08 15:25:21 +0100325
Jens Axboeb2fdda42007-02-20 20:52:51 +0100326 if (td->error)
327 return;
328
Jens Axboeebac4652005-12-08 15:25:21 +0100329 td_set_runstate(td, TD_VERIFYING);
330
Jens Axboe36167d82007-02-18 05:41:31 +0100331 io_u = NULL;
332 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100333 int ret2;
334
Jens Axboeebac4652005-12-08 15:25:21 +0100335 io_u = __get_io_u(td);
336 if (!io_u)
337 break;
338
Jens Axboe069c2912007-02-21 23:02:39 +0100339 if (runtime_exceeded(td, &io_u->start_time)) {
340 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200341 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200342 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100343 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200344
Jens Axboe069c2912007-02-21 23:02:39 +0100345 if (get_next_verify(td, io_u)) {
346 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100347 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100348 }
Jens Axboeebac4652005-12-08 15:25:21 +0100349
Jens Axboe069c2912007-02-21 23:02:39 +0100350 if (td_io_prep(td, io_u)) {
351 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100352 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100353 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100354
355 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100356
Jens Axboe11786802007-03-05 18:33:22 +0100357 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100358 switch (ret) {
359 case FIO_Q_COMPLETED:
360 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100361 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100362 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100363 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200364 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100365
Jens Axboe9e9d1642007-03-12 09:37:46 +0100366 /*
367 * zero read, fail
368 */
369 if (!bytes) {
370 td_verror(td, ENODATA, "full resid");
371 put_io_u(td, io_u);
372 break;
373 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200374
Jens Axboe36167d82007-02-18 05:41:31 +0100375 io_u->xfer_buflen = io_u->resid;
376 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200377 io_u->offset += bytes;
378
Jens Axboe30061b92007-04-17 13:31:34 +0200379 td->ts.short_io_u[io_u->ddir]++;
380
Jens Axboed460eb32007-04-16 21:39:33 +0200381 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200382 goto sync_done;
383
Jens Axboe11786802007-03-05 18:33:22 +0100384 requeue_io_u(td, &io_u);
385 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200386sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100387 ret = io_u_sync_complete(td, io_u);
388 if (ret < 0)
389 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100390 }
Jens Axboe36167d82007-02-18 05:41:31 +0100391 continue;
392 case FIO_Q_QUEUED:
393 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100394 case FIO_Q_BUSY:
395 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100396 ret2 = td_io_commit(td);
397 if (ret2 < 0)
398 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100399 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100400 default:
401 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100402 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100403 break;
404 }
405
Jens Axboe99784632007-02-19 10:06:17 +0100406 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100407 break;
408
Jens Axboe3af6ef32007-02-18 06:57:43 +0100409 /*
410 * if we can queue more, do so. but check if there are
411 * completed io_u's first.
412 */
Jens Axboe97601022007-02-18 12:47:29 +0100413 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100414 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe838bc702008-05-22 13:08:23 +0200415 if (td->cur_depth >= td->o.iodepth_low)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100416 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboe838bc702008-05-22 13:08:23 +0200417 if (!min_events)
418 min_events = 1;
Jens Axboee916b392007-02-20 14:37:26 +0100419 }
420
Jens Axboe3af6ef32007-02-18 06:57:43 +0100421 /*
422 * Reap required number of io units, if any, and do the
423 * verification on them through the callback handler
424 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100425 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100426 break;
427 }
428
Jens Axboec01c0392007-02-26 12:43:42 +0100429 if (!td->error) {
430 min_events = td->cur_depth;
431
432 if (min_events)
433 ret = io_u_queued_complete(td, min_events);
434 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100435 cleanup_pending_aio(td);
436
437 td_set_runstate(td, TD_RUNNING);
438}
439
Jens Axboe32cd46a2006-06-07 13:40:40 +0200440/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200441 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200442 * and reaps them, checking for rate and errors along the way.
443 */
Jens Axboeebac4652005-12-08 15:25:21 +0100444static void do_io(struct thread_data *td)
445{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100446 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100447 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100448 unsigned int i;
449 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100450
Jens Axboe5853e5a2006-06-08 14:41:05 +0200451 td_set_runstate(td, TD_RUNNING);
452
Jens Axboe7bb48f82007-03-27 15:30:28 +0200453 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100454 struct timeval comp_time;
455 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200456 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100457 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100458 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100459
460 if (td->terminate)
461 break;
462
Jens Axboe3d7c3912007-02-19 13:16:12 +0100463 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100464 if (!io_u)
465 break;
466
467 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100468
469 if (runtime_exceeded(td, &s)) {
470 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200471 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100472 break;
473 }
Jens Axboe36167d82007-02-18 05:41:31 +0100474
Jens Axboeb67740d2007-07-26 12:22:30 +0200475 /*
476 * Add verification end_io handler, if asked to verify
477 * a previously written file.
478 */
Jens Axboecc3fc852008-03-06 11:47:53 +0100479 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ) {
Jens Axboeb67740d2007-07-26 12:22:30 +0200480 io_u->end_io = verify_io_u;
Jens Axboed8fab1b2008-03-06 10:25:17 +0100481 td_set_runstate(td, TD_VERIFYING);
482 } else
483 td_set_runstate(td, TD_RUNNING);
Jens Axboeb67740d2007-07-26 12:22:30 +0200484
Jens Axboe11786802007-03-05 18:33:22 +0100485 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100486 switch (ret) {
487 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100488 if (io_u->error)
489 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100490 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100491 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200492 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100493
Jens Axboe9e9d1642007-03-12 09:37:46 +0100494 /*
495 * zero read, fail
496 */
497 if (!bytes) {
498 td_verror(td, ENODATA, "full resid");
499 put_io_u(td, io_u);
500 break;
501 }
502
Jens Axboe36167d82007-02-18 05:41:31 +0100503 io_u->xfer_buflen = io_u->resid;
504 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200505 io_u->offset += bytes;
506
Jens Axboe30061b92007-04-17 13:31:34 +0200507 td->ts.short_io_u[io_u->ddir]++;
508
Jens Axboed460eb32007-04-16 21:39:33 +0200509 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200510 goto sync_done;
511
Jens Axboe11786802007-03-05 18:33:22 +0100512 requeue_io_u(td, &io_u);
513 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200514sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100515 fio_gettime(&comp_time, NULL);
516 bytes_done = io_u_sync_complete(td, io_u);
517 if (bytes_done < 0)
518 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100519 }
Jens Axboe36167d82007-02-18 05:41:31 +0100520 break;
521 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100522 /*
523 * if the engine doesn't have a commit hook,
524 * the io_u is really queued. if it does have such
525 * a hook, it has to call io_u_queued() itself.
526 */
527 if (td->io_ops->commit == NULL)
528 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100529 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100530 case FIO_Q_BUSY:
531 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100532 ret2 = td_io_commit(td);
533 if (ret2 < 0)
534 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100535 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100536 default:
537 assert(ret < 0);
538 put_io_u(td, io_u);
539 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100540 }
541
Jens Axboe99784632007-02-19 10:06:17 +0100542 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100543 break;
544
Jens Axboe97601022007-02-18 12:47:29 +0100545 /*
546 * See if we need to complete some commands
547 */
Jens Axboe838bc702008-05-22 13:08:23 +0200548 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100549 min_evts = 0;
Jens Axboe838bc702008-05-22 13:08:23 +0200550 if (td->cur_depth >= td->o.iodepth_low)
551 min_evts = td->cur_depth - td->o.iodepth_low;
552 if (!min_evts)
Jens Axboe36167d82007-02-18 05:41:31 +0100553 min_evts = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100554 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100555 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100556 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100557 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100558 }
559
Jens Axboe97601022007-02-18 12:47:29 +0100560 if (!bytes_done)
561 continue;
562
Jens Axboeebac4652005-12-08 15:25:21 +0100563 /*
564 * the rate is batched for now, it should work for batches
565 * of completions except the very first one which may look
566 * a little bursty
567 */
Jens Axboe97601022007-02-18 12:47:29 +0100568 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100569
Jens Axboe413dd452007-02-23 09:26:09 +0100570 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100571
Jens Axboe97601022007-02-18 12:47:29 +0100572 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100573 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100574 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100575 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100576 break;
577 }
578
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100579 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100580 unsigned long long b;
581
582 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100583 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100584 int left;
585
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100586 if (td->o.thinktime_spin)
587 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100590 if (left)
591 usec_sleep(td, left);
592 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100593 }
Jens Axboeebac4652005-12-08 15:25:21 +0100594 }
595
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100596 if (td->o.fill_device && td->error == ENOSPC) {
597 td->error = 0;
598 td->terminate = 1;
599 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100600 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100601 struct fio_file *f;
602
Jens Axboec01c0392007-02-26 12:43:42 +0100603 i = td->cur_depth;
604 if (i)
605 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100606
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100607 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200608 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100609
610 for_each_file(td, f, i) {
611 if (!(f->flags & FIO_FILE_OPEN))
612 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200613 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100614 }
Jens Axboe84585002006-10-19 20:26:22 +0200615 }
Jens Axboec01c0392007-02-26 12:43:42 +0100616 } else
617 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100618
619 /*
620 * stop job if we failed doing any IO
621 */
622 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
623 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100624}
625
Jens Axboeebac4652005-12-08 15:25:21 +0100626static void cleanup_io_u(struct thread_data *td)
627{
628 struct list_head *entry, *n;
629 struct io_u *io_u;
630
631 list_for_each_safe(entry, n, &td->io_u_freelist) {
632 io_u = list_entry(entry, struct io_u, list);
633
634 list_del(&io_u->list);
635 free(io_u);
636 }
637
Jens Axboe2f9ade32006-10-20 11:25:52 +0200638 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100639}
640
641static int init_io_u(struct thread_data *td)
642{
643 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100644 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100645 int i, max_units;
646 char *p;
647
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100648 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100649 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100650 td->orig_buffer_size = (unsigned long long) max_bs
651 * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100652
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100653 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
654 unsigned long bs;
655
656 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
657 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
658 }
Jens Axboeebac4652005-12-08 15:25:21 +0100659
Jens Axboec3990642007-07-19 10:17:09 +0200660 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
661 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
662 return 1;
663 }
664
Jens Axboe2f9ade32006-10-20 11:25:52 +0200665 if (allocate_io_mem(td))
666 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100667
Jens Axboeb3f378e2007-07-20 12:39:22 +0200668 if (td->o.odirect)
669 p = ALIGN(td->orig_buffer);
670 else
671 p = td->orig_buffer;
672
Jens Axboeebac4652005-12-08 15:25:21 +0100673 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200674 if (td->terminate)
675 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100676 io_u = malloc(sizeof(*io_u));
677 memset(io_u, 0, sizeof(*io_u));
678 INIT_LIST_HEAD(&io_u->list);
679
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200680 if (!(td->io_ops->flags & FIO_NOIO)) {
681 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200682
Jens Axboe5973caf2008-05-21 19:52:35 +0200683 if (td_write(td) && !td->o.refill_buffers)
684 io_u_fill_buffer(td, io_u, max_bs);
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200685 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100686
Jens Axboeb1ff3402006-02-17 11:35:58 +0100687 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100688 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100689 list_add(&io_u->list, &td->io_u_freelist);
690 }
691
Jens Axboe433afcb2007-02-22 10:39:01 +0100692 io_u_init_timeout();
693
Jens Axboeebac4652005-12-08 15:25:21 +0100694 return 0;
695}
696
Jens Axboeda867742006-06-06 10:39:10 -0700697static int switch_ioscheduler(struct thread_data *td)
698{
699 char tmp[256], tmp2[128];
700 FILE *f;
701 int ret;
702
Jens Axboeba0fbe12007-03-09 14:34:23 +0100703 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200704 return 0;
705
Jens Axboeda867742006-06-06 10:39:10 -0700706 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
707
708 f = fopen(tmp, "r+");
709 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200710 if (errno == ENOENT) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100711 log_err("fio: os or kernel doesn't support IO scheduler"
712 " switching\n");
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200713 return 0;
714 }
715 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700716 return 1;
717 }
718
719 /*
720 * Set io scheduler.
721 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100722 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700723 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100724 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700725 fclose(f);
726 return 1;
727 }
728
729 rewind(f);
730
731 /*
732 * Read back and check that the selected scheduler is now the default.
733 */
734 ret = fread(tmp, 1, sizeof(tmp), f);
735 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100736 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700737 fclose(f);
738 return 1;
739 }
740
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100741 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700742 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100743 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100744 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700745 fclose(f);
746 return 1;
747 }
748
749 fclose(f);
750 return 0;
751}
752
Jens Axboe492158c2007-05-24 10:32:47 +0200753static int keep_running(struct thread_data *td)
754{
755 unsigned long long io_done;
756
Jens Axboe20e354e2007-07-23 14:36:16 +0200757 if (td->done)
758 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200759 if (td->o.time_based)
760 return 1;
761 if (td->o.loops) {
762 td->o.loops--;
763 return 1;
764 }
765
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100766 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE]
767 + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200768 if (io_done < td->o.size)
769 return 1;
770
771 return 0;
772}
773
Jens Axboea978ba62007-03-08 14:29:03 +0100774static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100775{
Jens Axboe53cdc682006-10-18 11:50:58 +0200776 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100777 unsigned int i;
778 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100779
Jens Axboe756867b2007-03-06 15:19:24 +0100780 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100781 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100782 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100783 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100784 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100785 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100786
Jens Axboec1324df2007-02-19 19:06:41 +0100787 td->last_was_sync = 0;
788
Jens Axboe2ba1c292008-02-01 13:16:38 +0100789 /*
790 * reset file done count if we are to start over
791 */
792 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200793 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200794
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100795 close_files(td);
Jens Axboea978ba62007-03-08 14:29:03 +0100796
797 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200798 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200799 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100800 ret = td_io_open_file(td, f);
801 if (ret)
802 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200803 }
Jens Axboea978ba62007-03-08 14:29:03 +0100804
805 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100806}
807
Jens Axboe906c8d72006-06-13 09:37:56 +0200808/*
809 * Entry point for the thread based jobs. The process based jobs end up
810 * here as well, after a little setup.
811 */
Jens Axboeebac4652005-12-08 15:25:21 +0100812static void *thread_main(void *data)
813{
Shawn Lewis10927312007-11-21 09:38:13 +0100814 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100815 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100816 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100817
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100818 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100819 setsid();
820
821 td->pid = getpid();
822
Jens Axboeee56ad52008-02-01 10:30:20 +0100823 dprint(FD_PROCESS, "jobs pid=%d started\n", td->pid);
824
Jens Axboeaea47d42006-05-26 19:27:29 +0200825 INIT_LIST_HEAD(&td->io_u_freelist);
826 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100827 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200828 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200829 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200830 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200831
Jens Axboe75154842006-06-01 13:56:09 +0200832 td_set_runstate(td, TD_INITIALIZED);
Jens Axboecdd18ad2008-02-27 18:58:00 +0100833 fio_mutex_up(startup_mutex);
834 fio_mutex_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100835
Jens Axboe37f56872007-03-09 12:42:35 +0100836 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +0100837 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +0100838 * eating a file descriptor
839 */
Jens Axboecdd18ad2008-02-27 18:58:00 +0100840 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +0100841
Jens Axboed84f8d42007-05-16 08:47:46 +0200842 /*
843 * May alter parameters that init_io_u() will use, so we need to
844 * do this first.
845 */
846 if (init_iolog(td))
847 goto err;
848
Jens Axboedb1cd902007-04-26 13:47:07 +0200849 if (init_io_u(td))
850 goto err;
851
Jens Axboe375b2692007-05-22 09:13:02 +0200852 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200853 td_verror(td, errno, "cpu_set_affinity");
854 goto err;
855 }
856
Jens Axboeac684782007-11-08 08:29:07 +0100857 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200858 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
859 td_verror(td, errno, "ioprio_set");
860 goto err;
861 }
862 }
863
864 if (nice(td->o.nice) == -1) {
865 td_verror(td, errno, "nice");
866 goto err;
867 }
868
869 if (td->o.ioscheduler && switch_ioscheduler(td))
870 goto err;
871
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100872 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100873 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100874
875 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100876 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100877
Jens Axboeb5af8292007-03-08 12:43:13 +0100878 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100879 goto err;
880
Jens Axboe68727072007-03-15 20:49:25 +0100881 if (init_random_map(td))
882 goto err;
883
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100884 if (td->o.exec_prerun) {
885 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100886 goto err;
887 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200888
Jens Axboe69008992006-11-24 13:12:56 +0100889 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100890 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100891 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100892
893 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100894 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200895 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100896 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100897 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100898
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100899 if (td->o.ratemin)
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100900 memcpy(&td->lastrate, &td->ts.stat_sample_time,
901 sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100902
Jens Axboea978ba62007-03-08 14:29:03 +0100903 if (clear_state && clear_io_state(td))
904 break;
905
Jens Axboeebac4652005-12-08 15:25:21 +0100906 prune_io_piece_log(td);
907
Jens Axboeba0fbe12007-03-09 14:34:23 +0100908 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100909
Jens Axboea978ba62007-03-08 14:29:03 +0100910 clear_state = 1;
911
Jens Axboe38d77ca2007-03-21 14:20:20 +0100912 if (td_read(td) && td->io_bytes[DDIR_READ]) {
913 if (td->rw_end_set[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100914 elapsed = utime_since(&td->start,
915 &td->rw_end[DDIR_READ]);
Jens Axboe38d77ca2007-03-21 14:20:20 +0100916 else
917 elapsed = utime_since_now(&td->start);
918
919 runtime[DDIR_READ] += elapsed;
920 }
921 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
922 if (td->rw_end_set[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100923 elapsed = utime_since(&td->start,
924 &td->rw_end[DDIR_WRITE]);
Jens Axboe38d77ca2007-03-21 14:20:20 +0100925 else
926 elapsed = utime_since_now(&td->start);
927
928 runtime[DDIR_WRITE] += elapsed;
929 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100930
Jens Axboeebac4652005-12-08 15:25:21 +0100931 if (td->error || td->terminate)
932 break;
933
Shawn Lewise84c73a2007-08-02 22:19:32 +0200934 if (!td->o.do_verify ||
935 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200936 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100937 continue;
938
Jens Axboea978ba62007-03-08 14:29:03 +0100939 if (clear_io_state(td))
940 break;
941
Jens Axboe02bcaa82006-11-24 10:42:00 +0100942 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100943
944 do_verify(td);
945
Jens Axboe69008992006-11-24 13:12:56 +0100946 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100947
948 if (td->error || td->terminate)
949 break;
950 }
951
Jens Axboe36dff962006-11-24 13:29:20 +0100952 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200953 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
954 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100955 td->ts.total_run_time = mtime_since_now(&td->epoch);
956 td->ts.io_bytes[0] = td->io_bytes[0];
957 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100958
Jens Axboe756867b2007-03-06 15:19:24 +0100959 if (td->ts.bw_log)
960 finish_log(td, td->ts.bw_log, "bw");
961 if (td->ts.slat_log)
962 finish_log(td, td->ts.slat_log, "slat");
963 if (td->ts.clat_log)
964 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100965 if (td->o.exec_postrun) {
966 if (system(td->o.exec_postrun) < 0)
967 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100968 }
Jens Axboeebac4652005-12-08 15:25:21 +0100969
970 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100971 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100972
973err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100974 if (td->error)
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100975 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error,
976 td->verror);
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100977 close_and_free_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200978 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100979 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +0200980
981 /*
982 * do this very late, it will log file closing as well
983 */
984 if (td->o.write_iolog_file)
985 write_iolog_close(td);
986
Jens Axboed23bb322007-03-23 15:57:56 +0100987 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100988 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100989 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100990}
991
Jens Axboe906c8d72006-06-13 09:37:56 +0200992/*
993 * We cannot pass the td data into a forked process, so attach the td and
994 * pass it to the thread worker.
995 */
Jens Axboea6418142007-02-17 04:47:18 +0100996static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100997{
998 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100999 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001000
1001 data = shmat(shmid, NULL, 0);
1002 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +01001003 int __err = errno;
1004
Jens Axboeebac4652005-12-08 15:25:21 +01001005 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +01001006 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +01001007 }
1008
1009 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +01001010 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001011 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001012 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001013}
1014
Jens Axboe906c8d72006-06-13 09:37:56 +02001015/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001016 * Run over the job map and reap the threads that have exited, if any.
1017 */
Jens Axboeebac4652005-12-08 15:25:21 +01001018static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1019{
Jens Axboe34572e22006-10-20 09:33:18 +02001020 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001021 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001022
1023 /*
1024 * reap exited threads (TD_EXITED -> TD_REAPED)
1025 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001026 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001027 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001028 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001029
Jens Axboe84585002006-10-19 20:26:22 +02001030 /*
1031 * ->io_ops is NULL for a thread that has closed its
1032 * io engine
1033 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001034 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001035 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001036 else
1037 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001038
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001039 if (!td->pid) {
1040 pending++;
1041 continue;
1042 }
1043 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001044 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001045 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001046 if (td->runstate == TD_EXITED) {
1047 td_set_runstate(td, TD_REAPED);
1048 goto reaped;
1049 }
1050 continue;
1051 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001052
1053 flags = WNOHANG;
1054 if (td->runstate == TD_EXITED)
1055 flags = 0;
1056
1057 /*
1058 * check if someone quit or got killed in an unusual way
1059 */
1060 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001061 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001062 if (errno == ECHILD) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001063 log_err("fio: pid=%d disappeared %d\n", td->pid,
1064 td->runstate);
Jens Axboea2f77c92007-02-22 11:53:00 +01001065 td_set_runstate(td, TD_REAPED);
1066 goto reaped;
1067 }
1068 perror("waitpid");
1069 } else if (ret == td->pid) {
1070 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001071 int sig = WTERMSIG(status);
1072
Jens Axboed9244942007-03-05 12:32:32 +01001073 if (sig != SIGQUIT)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001074 log_err("fio: pid=%d, got signal=%d\n",
1075 td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001076 td_set_runstate(td, TD_REAPED);
1077 goto reaped;
1078 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001079 if (WIFEXITED(status)) {
1080 if (WEXITSTATUS(status) && !td->error)
1081 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001082
Jens Axboea2f77c92007-02-22 11:53:00 +01001083 td_set_runstate(td, TD_REAPED);
1084 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001085 }
1086 }
Jens Axboeebac4652005-12-08 15:25:21 +01001087
Jens Axboea2f77c92007-02-22 11:53:00 +01001088 /*
1089 * thread is not dead, continue
1090 */
gurudas paie48676b2007-04-11 12:44:27 +02001091 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001092 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001093reaped:
Jens Axboeebac4652005-12-08 15:25:21 +01001094 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001095 (*m_rate) -= td->o.ratemin;
1096 (*t_rate) -= td->o.rate;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001097 if (!td->pid)
1098 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001099
1100 if (td->error)
1101 exit_value++;
Jens Axboed3eeeab2008-04-06 12:19:05 +02001102
1103 done_secs += mtime_since_now(&td->epoch) / 1000;
Jens Axboeebac4652005-12-08 15:25:21 +01001104 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001105
Jens Axboe1f809d12007-10-25 18:34:02 +02001106 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001107 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001108}
1109
Jens Axboe906c8d72006-06-13 09:37:56 +02001110/*
1111 * Main function for kicking off and reaping jobs, as needed.
1112 */
Jens Axboeebac4652005-12-08 15:25:21 +01001113static void run_threads(void)
1114{
Jens Axboeebac4652005-12-08 15:25:21 +01001115 struct thread_data *td;
1116 unsigned long spent;
1117 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001118
Jens Axboe2f9ade32006-10-20 11:25:52 +02001119 if (fio_pin_memory())
1120 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001121
Jens Axboec6ae0a52006-06-12 11:04:44 +02001122 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001123 printf("Starting ");
1124 if (nr_thread)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001125 printf("%d thread%s", nr_thread,
1126 nr_thread > 1 ? "s" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001127 if (nr_process) {
1128 if (nr_thread)
1129 printf(" and ");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001130 printf("%d process%s", nr_process,
1131 nr_process > 1 ? "es" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001132 }
1133 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001134 fflush(stdout);
1135 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001136
Jens Axboe4efa9702006-05-31 11:56:49 +02001137 signal(SIGINT, sig_handler);
1138 signal(SIGALRM, sig_handler);
1139
Jens Axboeebac4652005-12-08 15:25:21 +01001140 todo = thread_number;
1141 nr_running = 0;
1142 nr_started = 0;
1143 m_rate = t_rate = 0;
1144
Jens Axboe34572e22006-10-20 09:33:18 +02001145 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001146 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001147
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001148 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001149 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001150 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001151 }
Jens Axboeebac4652005-12-08 15:25:21 +01001152
1153 /*
1154 * do file setup here so it happens sequentially,
1155 * we don't want X number of threads getting their
1156 * client data interspersed on disk
1157 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001158 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001159 exit_value++;
1160 if (td->error)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001161 log_err("fio: pid=%d, err=%d/%s\n", td->pid,
1162 td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001163 td_set_runstate(td, TD_REAPED);
1164 todo--;
Jens Axboec69e8872008-03-01 18:50:48 +01001165 } else {
1166 struct fio_file *f;
1167 unsigned int i;
1168
1169 /*
1170 * for sharing to work, each job must always open
1171 * its own files. so close them, if we opened them
1172 * for creation
1173 */
1174 for_each_file(td, f, i)
1175 td_io_close_file(td, f);
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001176 }
Jens Axboe380cf262007-01-11 14:01:27 +01001177
1178 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001179 }
1180
Jens Axboea2f77c92007-02-22 11:53:00 +01001181 set_genesis_time();
1182
Jens Axboeebac4652005-12-08 15:25:21 +01001183 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001184 struct thread_data *map[MAX_JOBS];
1185 struct timeval this_start;
1186 int this_jobs = 0, left;
1187
Jens Axboeebac4652005-12-08 15:25:21 +01001188 /*
1189 * create threads (TD_NOT_CREATED -> TD_CREATED)
1190 */
Jens Axboe34572e22006-10-20 09:33:18 +02001191 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001192 if (td->runstate != TD_NOT_CREATED)
1193 continue;
1194
1195 /*
1196 * never got a chance to start, killed by other
1197 * thread for some reason
1198 */
1199 if (td->terminate) {
1200 todo--;
1201 continue;
1202 }
1203
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001204 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001205 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001206
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001207 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001208 continue;
1209 }
1210
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001211 if (td->o.stonewall && (nr_started || nr_running)) {
1212 dprint(FD_PROCESS, "%s: stonewall wait\n",
1213 td->o.name);
Jens Axboeebac4652005-12-08 15:25:21 +01001214 break;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001215 }
Jens Axboeebac4652005-12-08 15:25:21 +01001216
Jens Axboe75154842006-06-01 13:56:09 +02001217 /*
1218 * Set state to created. Thread will transition
1219 * to TD_INITIALIZED when it's done setting up.
1220 */
Jens Axboeebac4652005-12-08 15:25:21 +01001221 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001222 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001223 nr_started++;
1224
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001225 if (td->o.use_thread) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001226 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001227 if (pthread_create(&td->thread, NULL,
1228 thread_main, td)) {
Jens Axboef4705a72008-03-10 10:52:22 +01001229 perror("pthread_create");
Jens Axboeebac4652005-12-08 15:25:21 +01001230 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001231 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001232 }
Jens Axboef4705a72008-03-10 10:52:22 +01001233 if (pthread_detach(td->thread) < 0)
1234 perror("pthread_detach");
Jens Axboeebac4652005-12-08 15:25:21 +01001235 } else {
Jens Axboe5e1d3062008-05-23 11:55:53 +02001236 pid_t pid;
Jens Axboeee56ad52008-02-01 10:30:20 +01001237 dprint(FD_PROCESS, "will fork\n");
Jens Axboe5e1d3062008-05-23 11:55:53 +02001238 pid = fork();
1239 if (!pid) {
Jens Axboea6418142007-02-17 04:47:18 +01001240 int ret = fork_main(shm_id, i);
1241
Jens Axboe5e1d3062008-05-23 11:55:53 +02001242 _exit(ret);
1243 } else if (i == fio_debug_jobno)
1244 *fio_debug_jobp = pid;
Jens Axboeebac4652005-12-08 15:25:21 +01001245 }
Jens Axboecdd18ad2008-02-27 18:58:00 +01001246 fio_mutex_down(startup_mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001247 }
1248
1249 /*
Jens Axboe75154842006-06-01 13:56:09 +02001250 * Wait for the started threads to transition to
1251 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001252 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001253 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001254 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001255 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001256 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1257 break;
1258
1259 usleep(100000);
1260
1261 for (i = 0; i < this_jobs; i++) {
1262 td = map[i];
1263 if (!td)
1264 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001265 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001266 map[i] = NULL;
1267 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001268 } else if (td->runstate >= TD_EXITED) {
1269 map[i] = NULL;
1270 left--;
1271 todo--;
1272 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001273 }
1274 }
1275 }
1276
1277 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001278 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001279 for (i = 0; i < this_jobs; i++) {
1280 td = map[i];
1281 if (!td)
1282 continue;
1283 kill(td->pid, SIGTERM);
1284 }
1285 break;
1286 }
1287
1288 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001289 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001290 */
Jens Axboe34572e22006-10-20 09:33:18 +02001291 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001292 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001293 continue;
1294
1295 td_set_runstate(td, TD_RUNNING);
1296 nr_running++;
1297 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001298 m_rate += td->o.ratemin;
1299 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001300 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001301 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001302 }
1303
1304 reap_threads(&nr_running, &t_rate, &m_rate);
1305
1306 if (todo)
1307 usleep(100000);
1308 }
1309
1310 while (nr_running) {
1311 reap_threads(&nr_running, &t_rate, &m_rate);
1312 usleep(10000);
1313 }
1314
1315 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001316 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001317}
1318
Jens Axboeebac4652005-12-08 15:25:21 +01001319int main(int argc, char *argv[])
1320{
Jens Axboe29d610e2007-02-06 13:25:33 +01001321 long ps;
1322
Jens Axboe2e5cdb12008-03-01 18:52:49 +01001323 sinit();
1324
Jens Axboedbe11252007-02-11 00:19:51 +01001325 /*
1326 * We need locale for number printing, if it isn't set then just
1327 * go with the US format.
1328 */
1329 if (!getenv("LC_NUMERIC"))
1330 setlocale(LC_NUMERIC, "en_US");
1331
Jens Axboeebac4652005-12-08 15:25:21 +01001332 if (parse_options(argc, argv))
1333 return 1;
1334
Jens Axboe4b472fa2007-04-04 11:04:34 +02001335 if (!thread_number)
1336 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001337
Jens Axboe29d610e2007-02-06 13:25:33 +01001338 ps = sysconf(_SC_PAGESIZE);
1339 if (ps < 0) {
1340 log_err("Failed to get page size\n");
1341 return 1;
1342 }
1343
Jens Axboecfc99db2007-03-14 10:34:47 +01001344 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001345 page_mask = ps - 1;
1346
Jens Axboebb3884d2007-01-17 17:23:11 +11001347 if (write_bw_log) {
1348 setup_log(&agg_io_log[DDIR_READ]);
1349 setup_log(&agg_io_log[DDIR_WRITE]);
1350 }
1351
Jens Axboecdd18ad2008-02-27 18:58:00 +01001352 startup_mutex = fio_mutex_init(0);
Jens Axboe07739b52007-03-08 20:25:46 +01001353
Jens Axboea2f77c92007-02-22 11:53:00 +01001354 set_genesis_time();
1355
Jens Axboeebac4652005-12-08 15:25:21 +01001356 disk_util_timer_arm();
1357
1358 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001359
Jens Axboebb3884d2007-01-17 17:23:11 +11001360 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001361 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001362 if (write_bw_log) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001363 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1364 __finish_log(agg_io_log[DDIR_WRITE],
1365 "agg-write_bw.log");
Jens Axboebb3884d2007-01-17 17:23:11 +11001366 }
1367 }
Jens Axboeebac4652005-12-08 15:25:21 +01001368
Jens Axboecdd18ad2008-02-27 18:58:00 +01001369 fio_mutex_remove(startup_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001370 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001371}