blob: 1594bf64e5976c8a4d107aa2768d50bde0ca0404 [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 Axboeebac4652005-12-08 15:25:21 +010039
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 Axboecdd18ad2008-02-27 18:58:00 +010052static struct fio_mutex *startup_mutex;
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{
Jens Axboebd6f78b2008-02-01 20:27:52 +010063 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", td->pid, td->runstate,
64 runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010065 td->runstate = runstate;
66}
67
Jens Axboe390c40e2007-03-05 12:35:29 +010068static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010069{
Jens Axboe34572e22006-10-20 09:33:18 +020070 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010071 int i;
72
Jens Axboe34572e22006-10-20 09:33:18 +020073 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010074 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboeee56ad52008-02-01 10:30:20 +010075 dprint(FD_PROCESS, "setting terminate on %d\n",td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +010076
77 td->terminate = 1;
78 td->o.start_delay = 0;
79
Jens Axboe7a93ab12007-04-18 12:25:41 +020080 /*
81 * if the thread is running, just let it exit
82 */
83 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010084 kill(td->pid, SIGQUIT);
Jens Axboead830ed2008-02-18 21:11:24 +010085 else if (td->io_ops->flags & FIO_SIGQUIT)
86 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010087 }
88 }
89}
90
91static void sig_handler(int sig)
92{
93 switch (sig) {
94 case SIGALRM:
95 update_io_ticks();
96 disk_util_timer_arm();
97 print_thread_status();
98 break;
99 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +0100100 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +0100101 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +0100102 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100103 break;
104 }
105}
106
Jens Axboe906c8d72006-06-13 09:37:56 +0200107/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200108 * Check if we are above the minimum rate given.
109 */
Jens Axboeebac4652005-12-08 15:25:21 +0100110static int check_min_rate(struct thread_data *td, struct timeval *now)
111{
Jens Axboe09042002007-02-23 10:56:22 +0100112 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100113 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100114 unsigned long spent;
115 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100116
117 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100118 * No minimum rate set, always ok
119 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100120 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100121 return 0;
122
123 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100124 * allow a 2 second settle period in the beginning
125 */
126 if (mtime_since(&td->start, now) < 2000)
127 return 0;
128
Jens Axboe4e991c22007-03-15 11:41:11 +0100129 if (td_read(td)) {
130 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100131 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100132 }
133 if (td_write(td)) {
134 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100135 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100136 }
Jens Axboe09042002007-02-23 10:56:22 +0100137
Jens Axboeebac4652005-12-08 15:25:21 +0100138 /*
139 * if rate blocks is set, sample is running
140 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100141 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100142 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100143 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100144 return 0;
145
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100146 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100147 /*
148 * check bandwidth specified rate
149 */
150 if (bytes < td->rate_bytes) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100151 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100152 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100153 } else {
154 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100155 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
156 log_err("%s: min rate %u not met, got %luKiB/sec\n", td->o.name, td->o.ratemin, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100157 return 1;
158 }
159 }
160 } else {
161 /*
162 * checks iops specified rate
163 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100164 if (iops < td->o.rate_iops) {
165 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100166 return 1;
167 } else {
168 rate = (iops - td->rate_blocks) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100169 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
170 log_err("%s: min iops rate %u not met, got %lu\n", td->o.name, td->o.rate_iops_min, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100171 }
Jens Axboe413dd452007-02-23 09:26:09 +0100172 }
Jens Axboeebac4652005-12-08 15:25:21 +0100173 }
174 }
175
Jens Axboe09042002007-02-23 10:56:22 +0100176 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100177 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100178 memcpy(&td->lastrate, now, sizeof(*now));
179 return 0;
180}
181
182static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
183{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100184 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100185 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100186 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100187 return 1;
188
189 return 0;
190}
191
Jens Axboe906c8d72006-06-13 09:37:56 +0200192/*
193 * When job exits, we can cancel the in-flight IO if we are using async
194 * io. Attempt to do so.
195 */
Jens Axboeebac4652005-12-08 15:25:21 +0100196static void cleanup_pending_aio(struct thread_data *td)
197{
Jens Axboeebac4652005-12-08 15:25:21 +0100198 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100199 struct io_u *io_u;
200 int r;
201
202 /*
203 * get immediately available events, if any
204 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100205 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100206 if (r < 0)
207 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100208
209 /*
210 * now cancel remaining active events
211 */
Jens Axboe2866c822006-10-09 15:57:48 +0200212 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100213 list_for_each_safe(entry, n, &td->io_u_busylist) {
214 io_u = list_entry(entry, struct io_u, list);
215
Jens Axboe0c6e7512007-02-22 11:19:39 +0100216 /*
217 * if the io_u isn't in flight, then that generally
218 * means someone leaked an io_u. complain but fix
219 * it up, so we don't stall here.
220 */
221 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
222 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100223 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100224 } else {
225 r = td->io_ops->cancel(td, io_u);
226 if (!r)
227 put_io_u(td, io_u);
228 }
Jens Axboeebac4652005-12-08 15:25:21 +0100229 }
230 }
231
Jens Axboe97601022007-02-18 12:47:29 +0100232 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100233 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100234}
235
Jens Axboe906c8d72006-06-13 09:37:56 +0200236/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200237 * Helper to handle the final sync of a file. Works just like the normal
238 * io path, just does everything sync.
239 */
240static int fio_io_sync(struct thread_data *td, struct fio_file *f)
241{
242 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200243 int ret;
244
245 if (!io_u)
246 return 1;
247
248 io_u->ddir = DDIR_SYNC;
249 io_u->file = f;
250
251 if (td_io_prep(td, io_u)) {
252 put_io_u(td, io_u);
253 return 1;
254 }
255
Jens Axboe755200a2007-02-19 13:08:12 +0100256requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200257 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100258 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100259 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200260 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200261 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100262 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100263 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100264 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100265 } else if (ret == FIO_Q_COMPLETED) {
266 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100267 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100268 return 1;
269 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200270
Jens Axboed7762cf2007-02-23 12:34:57 +0100271 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100272 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100273 } else if (ret == FIO_Q_BUSY) {
274 if (td_io_commit(td))
275 return 1;
276 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200277 }
278
279 return 0;
280}
281
282/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100283 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200284 * reads the blocks back in, and checks the crc/md5 of the data.
285 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100286static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100287{
Jens Axboe53cdc682006-10-18 11:50:58 +0200288 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100289 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100290 int ret, min_events;
291 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200292
293 /*
294 * sync io first and invalidate cache, to make sure we really
295 * read from disk.
296 */
297 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100298 if (!(f->flags & FIO_FILE_OPEN))
299 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100300 if (fio_io_sync(td, f))
301 break;
302 if (file_invalidate_cache(td, f))
303 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200304 }
Jens Axboeebac4652005-12-08 15:25:21 +0100305
Jens Axboeb2fdda42007-02-20 20:52:51 +0100306 if (td->error)
307 return;
308
Jens Axboeebac4652005-12-08 15:25:21 +0100309 td_set_runstate(td, TD_VERIFYING);
310
Jens Axboe36167d82007-02-18 05:41:31 +0100311 io_u = NULL;
312 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100313 int ret2;
314
Jens Axboeebac4652005-12-08 15:25:21 +0100315 io_u = __get_io_u(td);
316 if (!io_u)
317 break;
318
Jens Axboe069c2912007-02-21 23:02:39 +0100319 if (runtime_exceeded(td, &io_u->start_time)) {
320 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200321 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200322 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100323 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200324
Jens Axboe069c2912007-02-21 23:02:39 +0100325 if (get_next_verify(td, io_u)) {
326 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100327 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100328 }
Jens Axboeebac4652005-12-08 15:25:21 +0100329
Jens Axboe069c2912007-02-21 23:02:39 +0100330 if (td_io_prep(td, io_u)) {
331 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100332 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100333 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100334
335 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100336
Jens Axboe11786802007-03-05 18:33:22 +0100337 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100338 switch (ret) {
339 case FIO_Q_COMPLETED:
340 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100341 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100342 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100343 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200344 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100345
Jens Axboe9e9d1642007-03-12 09:37:46 +0100346 /*
347 * zero read, fail
348 */
349 if (!bytes) {
350 td_verror(td, ENODATA, "full resid");
351 put_io_u(td, io_u);
352 break;
353 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200354
Jens Axboe36167d82007-02-18 05:41:31 +0100355 io_u->xfer_buflen = io_u->resid;
356 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200357 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200358 f->last_completed_pos = io_u->offset;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200359
Jens Axboe30061b92007-04-17 13:31:34 +0200360 td->ts.short_io_u[io_u->ddir]++;
361
Jens Axboed460eb32007-04-16 21:39:33 +0200362 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200363 goto sync_done;
364
Jens Axboe11786802007-03-05 18:33:22 +0100365 requeue_io_u(td, &io_u);
366 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200367sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100368 ret = io_u_sync_complete(td, io_u);
369 if (ret < 0)
370 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100371 }
Jens Axboe36167d82007-02-18 05:41:31 +0100372 continue;
373 case FIO_Q_QUEUED:
374 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100375 case FIO_Q_BUSY:
376 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100377 ret2 = td_io_commit(td);
378 if (ret2 < 0)
379 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100380 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100381 default:
382 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100383 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100384 break;
385 }
386
Jens Axboe99784632007-02-19 10:06:17 +0100387 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100388 break;
389
Jens Axboe3af6ef32007-02-18 06:57:43 +0100390 /*
391 * if we can queue more, do so. but check if there are
392 * completed io_u's first.
393 */
Jens Axboe97601022007-02-18 12:47:29 +0100394 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100395 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100396 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100397
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100398 if (td->cur_depth > td->o.iodepth_low)
399 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100400 }
401
Jens Axboe3af6ef32007-02-18 06:57:43 +0100402 /*
403 * Reap required number of io units, if any, and do the
404 * verification on them through the callback handler
405 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100406 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100407 break;
408 }
409
Jens Axboec01c0392007-02-26 12:43:42 +0100410 if (!td->error) {
411 min_events = td->cur_depth;
412
413 if (min_events)
414 ret = io_u_queued_complete(td, min_events);
415 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100416 cleanup_pending_aio(td);
417
418 td_set_runstate(td, TD_RUNNING);
419}
420
Jens Axboe32cd46a2006-06-07 13:40:40 +0200421/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200422 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200423 * and reaps them, checking for rate and errors along the way.
424 */
Jens Axboeebac4652005-12-08 15:25:21 +0100425static void do_io(struct thread_data *td)
426{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100427 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100428 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100429 unsigned int i;
430 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100431
Jens Axboe5853e5a2006-06-08 14:41:05 +0200432 td_set_runstate(td, TD_RUNNING);
433
Jens Axboe7bb48f82007-03-27 15:30:28 +0200434 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100435 struct timeval comp_time;
436 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200437 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100438 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100439 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100440
441 if (td->terminate)
442 break;
443
Jens Axboe3d7c3912007-02-19 13:16:12 +0100444 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100445 if (!io_u)
446 break;
447
448 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100449
450 if (runtime_exceeded(td, &s)) {
451 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200452 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100453 break;
454 }
Jens Axboe36167d82007-02-18 05:41:31 +0100455
Jens Axboeb67740d2007-07-26 12:22:30 +0200456 /*
457 * Add verification end_io handler, if asked to verify
458 * a previously written file.
459 */
460 if (td->o.verify != VERIFY_NONE)
461 io_u->end_io = verify_io_u;
462
Jens Axboe11786802007-03-05 18:33:22 +0100463 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100464 switch (ret) {
465 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100466 if (io_u->error)
467 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100468 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100469 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200470 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100471
Jens Axboe9e9d1642007-03-12 09:37:46 +0100472 /*
473 * zero read, fail
474 */
475 if (!bytes) {
476 td_verror(td, ENODATA, "full resid");
477 put_io_u(td, io_u);
478 break;
479 }
480
Jens Axboe36167d82007-02-18 05:41:31 +0100481 io_u->xfer_buflen = io_u->resid;
482 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200483 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200484 f->last_completed_pos = io_u->offset;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200485
Jens Axboe30061b92007-04-17 13:31:34 +0200486 td->ts.short_io_u[io_u->ddir]++;
487
Jens Axboed460eb32007-04-16 21:39:33 +0200488 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200489 goto sync_done;
490
Jens Axboe11786802007-03-05 18:33:22 +0100491 requeue_io_u(td, &io_u);
492 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200493sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100494 fio_gettime(&comp_time, NULL);
495 bytes_done = io_u_sync_complete(td, io_u);
496 if (bytes_done < 0)
497 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100498 }
Jens Axboe36167d82007-02-18 05:41:31 +0100499 break;
500 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100501 /*
502 * if the engine doesn't have a commit hook,
503 * the io_u is really queued. if it does have such
504 * a hook, it has to call io_u_queued() itself.
505 */
506 if (td->io_ops->commit == NULL)
507 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100508 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100509 case FIO_Q_BUSY:
510 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100511 ret2 = td_io_commit(td);
512 if (ret2 < 0)
513 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100514 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100515 default:
516 assert(ret < 0);
517 put_io_u(td, io_u);
518 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100519 }
520
Jens Axboe99784632007-02-19 10:06:17 +0100521 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100522 break;
523
Jens Axboe97601022007-02-18 12:47:29 +0100524 /*
525 * See if we need to complete some commands
526 */
Jens Axboe755200a2007-02-19 13:08:12 +0100527 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100528 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100529 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100530 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100531
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100532 if (td->cur_depth > td->o.iodepth_low)
533 min_evts = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100534 }
535
Jens Axboe97601022007-02-18 12:47:29 +0100536 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100537 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100538 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100539 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100540 }
541
Jens Axboe97601022007-02-18 12:47:29 +0100542 if (!bytes_done)
543 continue;
544
Jens Axboeebac4652005-12-08 15:25:21 +0100545 /*
546 * the rate is batched for now, it should work for batches
547 * of completions except the very first one which may look
548 * a little bursty
549 */
Jens Axboe97601022007-02-18 12:47:29 +0100550 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100551
Jens Axboe413dd452007-02-23 09:26:09 +0100552 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100553
Jens Axboe97601022007-02-18 12:47:29 +0100554 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100555 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100556 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100557 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100558 break;
559 }
560
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100561 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100562 unsigned long long b;
563
564 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100565 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100566 int left;
567
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (td->o.thinktime_spin)
569 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100570
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100571 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100572 if (left)
573 usec_sleep(td, left);
574 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100575 }
Jens Axboeebac4652005-12-08 15:25:21 +0100576 }
577
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100578 if (td->o.fill_device && td->error == ENOSPC) {
579 td->error = 0;
580 td->terminate = 1;
581 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100582 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100583 struct fio_file *f;
584
Jens Axboec01c0392007-02-26 12:43:42 +0100585 i = td->cur_depth;
586 if (i)
587 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100588
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100589 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200590 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100591
592 for_each_file(td, f, i) {
593 if (!(f->flags & FIO_FILE_OPEN))
594 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200595 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100596 }
Jens Axboe84585002006-10-19 20:26:22 +0200597 }
Jens Axboec01c0392007-02-26 12:43:42 +0100598 } else
599 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100600
601 /*
602 * stop job if we failed doing any IO
603 */
604 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
605 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100606}
607
Jens Axboeebac4652005-12-08 15:25:21 +0100608static void cleanup_io_u(struct thread_data *td)
609{
610 struct list_head *entry, *n;
611 struct io_u *io_u;
612
613 list_for_each_safe(entry, n, &td->io_u_freelist) {
614 io_u = list_entry(entry, struct io_u, list);
615
616 list_del(&io_u->list);
617 free(io_u);
618 }
619
Jens Axboe2f9ade32006-10-20 11:25:52 +0200620 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100621}
622
Jens Axboe6b9cea22006-10-30 17:00:24 +0100623/*
624 * "randomly" fill the buffer contents
625 */
Jens Axboee9459e52007-04-17 15:46:32 +0200626static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100627{
Jens Axboe210f43b2007-04-17 19:52:18 +0200628 long *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100629
Jens Axboee9459e52007-04-17 15:46:32 +0200630 if (!td->o.zero_buffers) {
631 while ((void *) ptr - io_u->buf < max_bs) {
Jens Axboe210f43b2007-04-17 19:52:18 +0200632 *ptr = rand() * GOLDEN_RATIO_PRIME;
Jens Axboee9459e52007-04-17 15:46:32 +0200633 ptr++;
634 }
635 } else
636 memset(ptr, 0, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100637}
638
Jens Axboeebac4652005-12-08 15:25:21 +0100639static int init_io_u(struct thread_data *td)
640{
641 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100642 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100643 int i, max_units;
644 char *p;
645
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100646 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100647 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboec3990642007-07-19 10:17:09 +0200648 td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100649
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100650 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
651 td->orig_buffer_size = (td->orig_buffer_size + td->o.hugepage_size - 1) & ~(td->o.hugepage_size - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100652
Jens Axboec3990642007-07-19 10:17:09 +0200653 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
654 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
655 return 1;
656 }
657
Jens Axboe2f9ade32006-10-20 11:25:52 +0200658 if (allocate_io_mem(td))
659 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100660
Jens Axboeb3f378e2007-07-20 12:39:22 +0200661 if (td->o.odirect)
662 p = ALIGN(td->orig_buffer);
663 else
664 p = td->orig_buffer;
665
Jens Axboeebac4652005-12-08 15:25:21 +0100666 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200667 if (td->terminate)
668 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100669 io_u = malloc(sizeof(*io_u));
670 memset(io_u, 0, sizeof(*io_u));
671 INIT_LIST_HEAD(&io_u->list);
672
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200673 if (!(td->io_ops->flags & FIO_NOIO)) {
674 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200675
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200676 if (td_write(td))
677 fill_io_buf(td, io_u, max_bs);
678 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100679
Jens Axboeb1ff3402006-02-17 11:35:58 +0100680 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100681 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100682 list_add(&io_u->list, &td->io_u_freelist);
683 }
684
Jens Axboe433afcb2007-02-22 10:39:01 +0100685 io_u_init_timeout();
686
Jens Axboeebac4652005-12-08 15:25:21 +0100687 return 0;
688}
689
Jens Axboeda867742006-06-06 10:39:10 -0700690static int switch_ioscheduler(struct thread_data *td)
691{
692 char tmp[256], tmp2[128];
693 FILE *f;
694 int ret;
695
Jens Axboeba0fbe12007-03-09 14:34:23 +0100696 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200697 return 0;
698
Jens Axboeda867742006-06-06 10:39:10 -0700699 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
700
701 f = fopen(tmp, "r+");
702 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200703 if (errno == ENOENT) {
704 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
705 return 0;
706 }
707 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700708 return 1;
709 }
710
711 /*
712 * Set io scheduler.
713 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100714 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700715 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100716 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700717 fclose(f);
718 return 1;
719 }
720
721 rewind(f);
722
723 /*
724 * Read back and check that the selected scheduler is now the default.
725 */
726 ret = fread(tmp, 1, sizeof(tmp), f);
727 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100728 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700729 fclose(f);
730 return 1;
731 }
732
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100733 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700734 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100735 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100736 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700737 fclose(f);
738 return 1;
739 }
740
741 fclose(f);
742 return 0;
743}
744
Jens Axboe492158c2007-05-24 10:32:47 +0200745static int keep_running(struct thread_data *td)
746{
747 unsigned long long io_done;
748
Jens Axboe20e354e2007-07-23 14:36:16 +0200749 if (td->done)
750 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200751 if (td->o.time_based)
752 return 1;
753 if (td->o.loops) {
754 td->o.loops--;
755 return 1;
756 }
757
Jens Axboe48f5abd2007-07-20 13:25:04 +0200758 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200759 if (io_done < td->o.size)
760 return 1;
761
762 return 0;
763}
764
Jens Axboea978ba62007-03-08 14:29:03 +0100765static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100766{
Jens Axboe53cdc682006-10-18 11:50:58 +0200767 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100768 unsigned int i;
769 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100770
Jens Axboe756867b2007-03-06 15:19:24 +0100771 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100772 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100773 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100774 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100775 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100776 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100777
Jens Axboec1324df2007-02-19 19:06:41 +0100778 td->last_was_sync = 0;
779
Jens Axboe2ba1c292008-02-01 13:16:38 +0100780 /*
781 * reset file done count if we are to start over
782 */
783 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200784 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200785
Jens Axboea978ba62007-03-08 14:29:03 +0100786 for_each_file(td, f, i)
787 td_io_close_file(td, f);
788
789 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200790 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200791 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100792 ret = td_io_open_file(td, f);
793 if (ret)
794 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200795 }
Jens Axboea978ba62007-03-08 14:29:03 +0100796
797 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100798}
799
Jens Axboe906c8d72006-06-13 09:37:56 +0200800/*
801 * Entry point for the thread based jobs. The process based jobs end up
802 * here as well, after a little setup.
803 */
Jens Axboeebac4652005-12-08 15:25:21 +0100804static void *thread_main(void *data)
805{
Shawn Lewis10927312007-11-21 09:38:13 +0100806 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100807 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100808 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100809
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100810 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100811 setsid();
812
813 td->pid = getpid();
814
Jens Axboeee56ad52008-02-01 10:30:20 +0100815 dprint(FD_PROCESS, "jobs pid=%d started\n", td->pid);
816
Jens Axboeaea47d42006-05-26 19:27:29 +0200817 INIT_LIST_HEAD(&td->io_u_freelist);
818 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100819 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200820 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200821 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200822 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200823
Jens Axboe75154842006-06-01 13:56:09 +0200824 td_set_runstate(td, TD_INITIALIZED);
Jens Axboecdd18ad2008-02-27 18:58:00 +0100825 fio_mutex_up(startup_mutex);
826 fio_mutex_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100827
Jens Axboe37f56872007-03-09 12:42:35 +0100828 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +0100829 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +0100830 * eating a file descriptor
831 */
Jens Axboecdd18ad2008-02-27 18:58:00 +0100832 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +0100833
Jens Axboed84f8d42007-05-16 08:47:46 +0200834 /*
835 * May alter parameters that init_io_u() will use, so we need to
836 * do this first.
837 */
838 if (init_iolog(td))
839 goto err;
840
Jens Axboedb1cd902007-04-26 13:47:07 +0200841 if (init_io_u(td))
842 goto err;
843
Jens Axboe375b2692007-05-22 09:13:02 +0200844 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200845 td_verror(td, errno, "cpu_set_affinity");
846 goto err;
847 }
848
Jens Axboeac684782007-11-08 08:29:07 +0100849 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200850 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
851 td_verror(td, errno, "ioprio_set");
852 goto err;
853 }
854 }
855
856 if (nice(td->o.nice) == -1) {
857 td_verror(td, errno, "nice");
858 goto err;
859 }
860
861 if (td->o.ioscheduler && switch_ioscheduler(td))
862 goto err;
863
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100864 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100865 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100866
867 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100868 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100869
Jens Axboeb5af8292007-03-08 12:43:13 +0100870 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100871 goto err;
872
Jens Axboe68727072007-03-15 20:49:25 +0100873 if (init_random_map(td))
874 goto err;
875
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100876 if (td->o.exec_prerun) {
877 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100878 goto err;
879 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200880
Jens Axboe69008992006-11-24 13:12:56 +0100881 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100882 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100883 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100884
885 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100886 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200887 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100888 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100889 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100890
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100891 if (td->o.ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100892 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100893
Jens Axboea978ba62007-03-08 14:29:03 +0100894 if (clear_state && clear_io_state(td))
895 break;
896
Jens Axboeebac4652005-12-08 15:25:21 +0100897 prune_io_piece_log(td);
898
Jens Axboeba0fbe12007-03-09 14:34:23 +0100899 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100900
Jens Axboea978ba62007-03-08 14:29:03 +0100901 clear_state = 1;
902
Jens Axboe38d77ca2007-03-21 14:20:20 +0100903 if (td_read(td) && td->io_bytes[DDIR_READ]) {
904 if (td->rw_end_set[DDIR_READ])
905 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
906 else
907 elapsed = utime_since_now(&td->start);
908
909 runtime[DDIR_READ] += elapsed;
910 }
911 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
912 if (td->rw_end_set[DDIR_WRITE])
913 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
914 else
915 elapsed = utime_since_now(&td->start);
916
917 runtime[DDIR_WRITE] += elapsed;
918 }
Jens Axboe413dd452007-02-23 09:26:09 +0100919
Jens Axboeebac4652005-12-08 15:25:21 +0100920 if (td->error || td->terminate)
921 break;
922
Shawn Lewise84c73a2007-08-02 22:19:32 +0200923 if (!td->o.do_verify ||
924 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200925 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100926 continue;
927
Jens Axboea978ba62007-03-08 14:29:03 +0100928 if (clear_io_state(td))
929 break;
930
Jens Axboe02bcaa82006-11-24 10:42:00 +0100931 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100932
933 do_verify(td);
934
Jens Axboe69008992006-11-24 13:12:56 +0100935 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100936
937 if (td->error || td->terminate)
938 break;
939 }
940
Jens Axboe36dff962006-11-24 13:29:20 +0100941 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200942 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
943 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100944 td->ts.total_run_time = mtime_since_now(&td->epoch);
945 td->ts.io_bytes[0] = td->io_bytes[0];
946 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100947
Jens Axboe756867b2007-03-06 15:19:24 +0100948 if (td->ts.bw_log)
949 finish_log(td, td->ts.bw_log, "bw");
950 if (td->ts.slat_log)
951 finish_log(td, td->ts.slat_log, "slat");
952 if (td->ts.clat_log)
953 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100954 if (td->o.exec_postrun) {
955 if (system(td->o.exec_postrun) < 0)
956 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100957 }
Jens Axboeebac4652005-12-08 15:25:21 +0100958
959 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100960 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100961
962err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100963 if (td->error)
964 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200965 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200966 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100967 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +0200968
969 /*
970 * do this very late, it will log file closing as well
971 */
972 if (td->o.write_iolog_file)
973 write_iolog_close(td);
974
Jens Axboed23bb322007-03-23 15:57:56 +0100975 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100976 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100977 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100978}
979
Jens Axboe906c8d72006-06-13 09:37:56 +0200980/*
981 * We cannot pass the td data into a forked process, so attach the td and
982 * pass it to the thread worker.
983 */
Jens Axboea6418142007-02-17 04:47:18 +0100984static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100985{
986 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100987 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100988
989 data = shmat(shmid, NULL, 0);
990 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100991 int __err = errno;
992
Jens Axboeebac4652005-12-08 15:25:21 +0100993 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100994 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100995 }
996
997 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100998 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100999 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001000 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001001}
1002
Jens Axboe906c8d72006-06-13 09:37:56 +02001003/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001004 * Run over the job map and reap the threads that have exited, if any.
1005 */
Jens Axboeebac4652005-12-08 15:25:21 +01001006static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1007{
Jens Axboe34572e22006-10-20 09:33:18 +02001008 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001009 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001010
1011 /*
1012 * reap exited threads (TD_EXITED -> TD_REAPED)
1013 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001014 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001015 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001016 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001017
Jens Axboe84585002006-10-19 20:26:22 +02001018 /*
1019 * ->io_ops is NULL for a thread that has closed its
1020 * io engine
1021 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001022 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001023 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001024 else
1025 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001026
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001027 if (!td->pid) {
1028 pending++;
1029 continue;
1030 }
1031 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001032 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001033 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001034 if (td->runstate == TD_EXITED) {
1035 td_set_runstate(td, TD_REAPED);
1036 goto reaped;
1037 }
1038 continue;
1039 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001040
1041 flags = WNOHANG;
1042 if (td->runstate == TD_EXITED)
1043 flags = 0;
1044
1045 /*
1046 * check if someone quit or got killed in an unusual way
1047 */
1048 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001049 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001050 if (errno == ECHILD) {
1051 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
1052 td_set_runstate(td, TD_REAPED);
1053 goto reaped;
1054 }
1055 perror("waitpid");
1056 } else if (ret == td->pid) {
1057 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001058 int sig = WTERMSIG(status);
1059
Jens Axboed9244942007-03-05 12:32:32 +01001060 if (sig != SIGQUIT)
1061 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001062 td_set_runstate(td, TD_REAPED);
1063 goto reaped;
1064 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001065 if (WIFEXITED(status)) {
1066 if (WEXITSTATUS(status) && !td->error)
1067 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001068
Jens Axboea2f77c92007-02-22 11:53:00 +01001069 td_set_runstate(td, TD_REAPED);
1070 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001071 }
1072 }
Jens Axboeebac4652005-12-08 15:25:21 +01001073
Jens Axboea2f77c92007-02-22 11:53:00 +01001074 /*
1075 * thread is not dead, continue
1076 */
gurudas paie48676b2007-04-11 12:44:27 +02001077 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001078 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001079reaped:
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001080 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001081 long ret;
1082
Jens Axboeee56ad52008-02-01 10:30:20 +01001083 dprint(FD_PROCESS, "joining tread %d\n", td->pid);
1084 if (pthread_join(td->thread, (void *) &ret)) {
1085 dprint(FD_PROCESS, "join failed %ld\n", ret);
Jens Axboe3707f452007-02-22 12:26:57 +01001086 perror("pthread_join");
Jens Axboeee56ad52008-02-01 10:30:20 +01001087 }
Jens Axboe3707f452007-02-22 12:26:57 +01001088 }
1089
Jens Axboeebac4652005-12-08 15:25:21 +01001090 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001091 (*m_rate) -= td->o.ratemin;
1092 (*t_rate) -= td->o.rate;
gurudas paie48676b2007-04-11 12:44:27 +02001093 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001094
1095 if (td->error)
1096 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +01001097 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001098
Jens Axboe1f809d12007-10-25 18:34:02 +02001099 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001100 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001101}
1102
Jens Axboe906c8d72006-06-13 09:37:56 +02001103/*
1104 * Main function for kicking off and reaping jobs, as needed.
1105 */
Jens Axboeebac4652005-12-08 15:25:21 +01001106static void run_threads(void)
1107{
Jens Axboeebac4652005-12-08 15:25:21 +01001108 struct thread_data *td;
1109 unsigned long spent;
1110 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001111
Jens Axboe2f9ade32006-10-20 11:25:52 +02001112 if (fio_pin_memory())
1113 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001114
Jens Axboec6ae0a52006-06-12 11:04:44 +02001115 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001116 printf("Starting ");
1117 if (nr_thread)
1118 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1119 if (nr_process) {
1120 if (nr_thread)
1121 printf(" and ");
1122 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1123 }
1124 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001125 fflush(stdout);
1126 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001127
Jens Axboe4efa9702006-05-31 11:56:49 +02001128 signal(SIGINT, sig_handler);
1129 signal(SIGALRM, sig_handler);
1130
Jens Axboeebac4652005-12-08 15:25:21 +01001131 todo = thread_number;
1132 nr_running = 0;
1133 nr_started = 0;
1134 m_rate = t_rate = 0;
1135
Jens Axboe34572e22006-10-20 09:33:18 +02001136 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001137 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001138
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001139 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001140 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001141 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001142 }
Jens Axboeebac4652005-12-08 15:25:21 +01001143
1144 /*
1145 * do file setup here so it happens sequentially,
1146 * we don't want X number of threads getting their
1147 * client data interspersed on disk
1148 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001149 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001150 exit_value++;
1151 if (td->error)
1152 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001153 td_set_runstate(td, TD_REAPED);
1154 todo--;
1155 }
Jens Axboe380cf262007-01-11 14:01:27 +01001156
1157 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001158 }
1159
Jens Axboea2f77c92007-02-22 11:53:00 +01001160 set_genesis_time();
1161
Jens Axboeebac4652005-12-08 15:25:21 +01001162 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001163 struct thread_data *map[MAX_JOBS];
1164 struct timeval this_start;
1165 int this_jobs = 0, left;
1166
Jens Axboeebac4652005-12-08 15:25:21 +01001167 /*
1168 * create threads (TD_NOT_CREATED -> TD_CREATED)
1169 */
Jens Axboe34572e22006-10-20 09:33:18 +02001170 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001171 if (td->runstate != TD_NOT_CREATED)
1172 continue;
1173
1174 /*
1175 * never got a chance to start, killed by other
1176 * thread for some reason
1177 */
1178 if (td->terminate) {
1179 todo--;
1180 continue;
1181 }
1182
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001183 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001184 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001185
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001186 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001187 continue;
1188 }
1189
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001190 if (td->o.stonewall && (nr_started || nr_running))
Jens Axboeebac4652005-12-08 15:25:21 +01001191 break;
1192
Jens Axboe75154842006-06-01 13:56:09 +02001193 /*
1194 * Set state to created. Thread will transition
1195 * to TD_INITIALIZED when it's done setting up.
1196 */
Jens Axboeebac4652005-12-08 15:25:21 +01001197 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001198 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001199 nr_started++;
1200
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001201 if (td->o.use_thread) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001202 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001203 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1204 perror("thread_create");
1205 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001206 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001207 }
1208 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001209 dprint(FD_PROCESS, "will fork\n");
Jens Axboe07739b52007-03-08 20:25:46 +01001210 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001211 int ret = fork_main(shm_id, i);
1212
1213 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001214 }
1215 }
Jens Axboecdd18ad2008-02-27 18:58:00 +01001216 fio_mutex_down(startup_mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001217 }
1218
1219 /*
Jens Axboe75154842006-06-01 13:56:09 +02001220 * Wait for the started threads to transition to
1221 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001222 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001223 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001224 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001225 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001226 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1227 break;
1228
1229 usleep(100000);
1230
1231 for (i = 0; i < this_jobs; i++) {
1232 td = map[i];
1233 if (!td)
1234 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001235 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001236 map[i] = NULL;
1237 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001238 } else if (td->runstate >= TD_EXITED) {
1239 map[i] = NULL;
1240 left--;
1241 todo--;
1242 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001243 }
1244 }
1245 }
1246
1247 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001248 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001249 for (i = 0; i < this_jobs; i++) {
1250 td = map[i];
1251 if (!td)
1252 continue;
1253 kill(td->pid, SIGTERM);
1254 }
1255 break;
1256 }
1257
1258 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001259 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001260 */
Jens Axboe34572e22006-10-20 09:33:18 +02001261 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001262 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001263 continue;
1264
1265 td_set_runstate(td, TD_RUNNING);
1266 nr_running++;
1267 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001268 m_rate += td->o.ratemin;
1269 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001270 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001271 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001272 }
1273
1274 reap_threads(&nr_running, &t_rate, &m_rate);
1275
1276 if (todo)
1277 usleep(100000);
1278 }
1279
1280 while (nr_running) {
1281 reap_threads(&nr_running, &t_rate, &m_rate);
1282 usleep(10000);
1283 }
1284
1285 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001286 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001287}
1288
Jens Axboeebac4652005-12-08 15:25:21 +01001289int main(int argc, char *argv[])
1290{
Jens Axboe29d610e2007-02-06 13:25:33 +01001291 long ps;
1292
Jens Axboedbe11252007-02-11 00:19:51 +01001293 /*
1294 * We need locale for number printing, if it isn't set then just
1295 * go with the US format.
1296 */
1297 if (!getenv("LC_NUMERIC"))
1298 setlocale(LC_NUMERIC, "en_US");
1299
Jens Axboeebac4652005-12-08 15:25:21 +01001300 if (parse_options(argc, argv))
1301 return 1;
1302
Jens Axboe4b472fa2007-04-04 11:04:34 +02001303 if (!thread_number)
1304 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001305
Jens Axboe29d610e2007-02-06 13:25:33 +01001306 ps = sysconf(_SC_PAGESIZE);
1307 if (ps < 0) {
1308 log_err("Failed to get page size\n");
1309 return 1;
1310 }
1311
Jens Axboecfc99db2007-03-14 10:34:47 +01001312 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001313 page_mask = ps - 1;
1314
Jens Axboebb3884d2007-01-17 17:23:11 +11001315 if (write_bw_log) {
1316 setup_log(&agg_io_log[DDIR_READ]);
1317 setup_log(&agg_io_log[DDIR_WRITE]);
1318 }
1319
Jens Axboecdd18ad2008-02-27 18:58:00 +01001320 startup_mutex = fio_mutex_init(0);
Jens Axboe07739b52007-03-08 20:25:46 +01001321
Jens Axboea2f77c92007-02-22 11:53:00 +01001322 set_genesis_time();
1323
Jens Axboeebac4652005-12-08 15:25:21 +01001324 disk_util_timer_arm();
1325
1326 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001327
Jens Axboebb3884d2007-01-17 17:23:11 +11001328 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001329 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001330 if (write_bw_log) {
1331 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1332 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1333 }
1334 }
Jens Axboeebac4652005-12-08 15:25:21 +01001335
Jens Axboecdd18ad2008-02-27 18:58:00 +01001336 fio_mutex_remove(startup_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001337 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001338}