blob: 565b3d221a3cd056b4c4b9d640eaa88d34eadd10 [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 Axboe07739b52007-03-08 20:25:46 +010052static struct fio_sem *startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010053static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010054static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010055
Jens Axboebb3884d2007-01-17 17:23:11 +110056struct io_log *agg_io_log[2];
57
Jens Axboeebac4652005-12-08 15:25:21 +010058#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020059#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010060
Jens Axboe6ce15a32007-01-12 09:04:41 +010061static inline void td_set_runstate(struct thread_data *td, int runstate)
62{
63 td->runstate = runstate;
64}
65
Jens Axboe390c40e2007-03-05 12:35:29 +010066static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010067{
Jens Axboe34572e22006-10-20 09:33:18 +020068 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010069 int i;
70
Jens Axboe34572e22006-10-20 09:33:18 +020071 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010072 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboeef5fffa2007-04-17 13:42:47 +020073 if (td->runstate <= TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010074 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010075 td->terminate = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010076 td->o.start_delay = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010077 }
78 }
79}
80
81static void sig_handler(int sig)
82{
83 switch (sig) {
84 case SIGALRM:
85 update_io_ticks();
86 disk_util_timer_arm();
87 print_thread_status();
88 break;
89 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010090 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010091 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010092 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010093 break;
94 }
95}
96
Jens Axboe906c8d72006-06-13 09:37:56 +020097/*
Jens Axboe906c8d72006-06-13 09:37:56 +020098 * Check if we are above the minimum rate given.
99 */
Jens Axboeebac4652005-12-08 15:25:21 +0100100static int check_min_rate(struct thread_data *td, struct timeval *now)
101{
Jens Axboe09042002007-02-23 10:56:22 +0100102 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100103 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100104 unsigned long spent;
105 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100106
107 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100108 * No minimum rate set, always ok
109 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100110 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100111 return 0;
112
113 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100114 * allow a 2 second settle period in the beginning
115 */
116 if (mtime_since(&td->start, now) < 2000)
117 return 0;
118
Jens Axboe4e991c22007-03-15 11:41:11 +0100119 if (td_read(td)) {
120 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100121 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100122 }
123 if (td_write(td)) {
124 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100125 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100126 }
Jens Axboe09042002007-02-23 10:56:22 +0100127
Jens Axboeebac4652005-12-08 15:25:21 +0100128 /*
129 * if rate blocks is set, sample is running
130 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100131 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100132 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100133 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100134 return 0;
135
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100136 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100137 /*
138 * check bandwidth specified rate
139 */
140 if (bytes < td->rate_bytes) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100141 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100142 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100143 } else {
144 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100145 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
146 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 +0100147 return 1;
148 }
149 }
150 } else {
151 /*
152 * checks iops specified rate
153 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100154 if (iops < td->o.rate_iops) {
155 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100156 return 1;
157 } else {
158 rate = (iops - td->rate_blocks) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100159 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
160 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 +0100161 }
Jens Axboe413dd452007-02-23 09:26:09 +0100162 }
Jens Axboeebac4652005-12-08 15:25:21 +0100163 }
164 }
165
Jens Axboe09042002007-02-23 10:56:22 +0100166 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100167 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100168 memcpy(&td->lastrate, now, sizeof(*now));
169 return 0;
170}
171
172static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
173{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100174 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100175 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100176 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100177 return 1;
178
179 return 0;
180}
181
Jens Axboe906c8d72006-06-13 09:37:56 +0200182/*
183 * When job exits, we can cancel the in-flight IO if we are using async
184 * io. Attempt to do so.
185 */
Jens Axboeebac4652005-12-08 15:25:21 +0100186static void cleanup_pending_aio(struct thread_data *td)
187{
Jens Axboeebac4652005-12-08 15:25:21 +0100188 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100189 struct io_u *io_u;
190 int r;
191
192 /*
193 * get immediately available events, if any
194 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100195 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100196 if (r < 0)
197 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100198
199 /*
200 * now cancel remaining active events
201 */
Jens Axboe2866c822006-10-09 15:57:48 +0200202 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100203 list_for_each_safe(entry, n, &td->io_u_busylist) {
204 io_u = list_entry(entry, struct io_u, list);
205
Jens Axboe0c6e7512007-02-22 11:19:39 +0100206 /*
207 * if the io_u isn't in flight, then that generally
208 * means someone leaked an io_u. complain but fix
209 * it up, so we don't stall here.
210 */
211 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
212 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100213 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100214 } else {
215 r = td->io_ops->cancel(td, io_u);
216 if (!r)
217 put_io_u(td, io_u);
218 }
Jens Axboeebac4652005-12-08 15:25:21 +0100219 }
220 }
221
Jens Axboe97601022007-02-18 12:47:29 +0100222 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100223 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100224}
225
Jens Axboe906c8d72006-06-13 09:37:56 +0200226/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200227 * Helper to handle the final sync of a file. Works just like the normal
228 * io path, just does everything sync.
229 */
230static int fio_io_sync(struct thread_data *td, struct fio_file *f)
231{
232 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200233 int ret;
234
235 if (!io_u)
236 return 1;
237
238 io_u->ddir = DDIR_SYNC;
239 io_u->file = f;
240
241 if (td_io_prep(td, io_u)) {
242 put_io_u(td, io_u);
243 return 1;
244 }
245
Jens Axboe755200a2007-02-19 13:08:12 +0100246requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200247 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100248 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100249 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200250 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200251 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100252 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100253 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100254 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100255 } else if (ret == FIO_Q_COMPLETED) {
256 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100257 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100258 return 1;
259 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200260
Jens Axboed7762cf2007-02-23 12:34:57 +0100261 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100262 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100263 } else if (ret == FIO_Q_BUSY) {
264 if (td_io_commit(td))
265 return 1;
266 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200267 }
268
269 return 0;
270}
271
272/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100273 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200274 * reads the blocks back in, and checks the crc/md5 of the data.
275 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100276static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100277{
Jens Axboe53cdc682006-10-18 11:50:58 +0200278 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100279 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100280 int ret, min_events;
281 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200282
283 /*
284 * sync io first and invalidate cache, to make sure we really
285 * read from disk.
286 */
287 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100288 if (!(f->flags & FIO_FILE_OPEN))
289 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100290 if (fio_io_sync(td, f))
291 break;
292 if (file_invalidate_cache(td, f))
293 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200294 }
Jens Axboeebac4652005-12-08 15:25:21 +0100295
Jens Axboeb2fdda42007-02-20 20:52:51 +0100296 if (td->error)
297 return;
298
Jens Axboeebac4652005-12-08 15:25:21 +0100299 td_set_runstate(td, TD_VERIFYING);
300
Jens Axboe36167d82007-02-18 05:41:31 +0100301 io_u = NULL;
302 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100303 int ret2;
304
Jens Axboeebac4652005-12-08 15:25:21 +0100305 io_u = __get_io_u(td);
306 if (!io_u)
307 break;
308
Jens Axboe069c2912007-02-21 23:02:39 +0100309 if (runtime_exceeded(td, &io_u->start_time)) {
310 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200311 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200312 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100313 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200314
Jens Axboe069c2912007-02-21 23:02:39 +0100315 if (get_next_verify(td, io_u)) {
316 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100317 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100318 }
Jens Axboeebac4652005-12-08 15:25:21 +0100319
Jens Axboe069c2912007-02-21 23:02:39 +0100320 if (td_io_prep(td, io_u)) {
321 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100322 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100323 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100324
325 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100326
Jens Axboe11786802007-03-05 18:33:22 +0100327 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100328 switch (ret) {
329 case FIO_Q_COMPLETED:
330 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100331 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100332 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100333 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200334 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100335
Jens Axboe9e9d1642007-03-12 09:37:46 +0100336 /*
337 * zero read, fail
338 */
339 if (!bytes) {
340 td_verror(td, ENODATA, "full resid");
341 put_io_u(td, io_u);
342 break;
343 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200344
Jens Axboe36167d82007-02-18 05:41:31 +0100345 io_u->xfer_buflen = io_u->resid;
346 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200347 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200348 f->last_completed_pos = io_u->offset;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200349
Jens Axboe30061b92007-04-17 13:31:34 +0200350 td->ts.short_io_u[io_u->ddir]++;
351
Jens Axboed460eb32007-04-16 21:39:33 +0200352 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200353 goto sync_done;
354
Jens Axboe11786802007-03-05 18:33:22 +0100355 requeue_io_u(td, &io_u);
356 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200357sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100358 ret = io_u_sync_complete(td, io_u);
359 if (ret < 0)
360 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100361 }
Jens Axboe36167d82007-02-18 05:41:31 +0100362 continue;
363 case FIO_Q_QUEUED:
364 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100365 case FIO_Q_BUSY:
366 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100367 ret2 = td_io_commit(td);
368 if (ret2 < 0)
369 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100370 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100371 default:
372 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100373 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100374 break;
375 }
376
Jens Axboe99784632007-02-19 10:06:17 +0100377 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100378 break;
379
Jens Axboe3af6ef32007-02-18 06:57:43 +0100380 /*
381 * if we can queue more, do so. but check if there are
382 * completed io_u's first.
383 */
Jens Axboe97601022007-02-18 12:47:29 +0100384 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100385 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100386 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100387
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100388 if (td->cur_depth > td->o.iodepth_low)
389 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100390 }
391
Jens Axboe3af6ef32007-02-18 06:57:43 +0100392 /*
393 * Reap required number of io units, if any, and do the
394 * verification on them through the callback handler
395 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100396 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100397 break;
398 }
399
Jens Axboec01c0392007-02-26 12:43:42 +0100400 if (!td->error) {
401 min_events = td->cur_depth;
402
403 if (min_events)
404 ret = io_u_queued_complete(td, min_events);
405 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100406 cleanup_pending_aio(td);
407
408 td_set_runstate(td, TD_RUNNING);
409}
410
Jens Axboe32cd46a2006-06-07 13:40:40 +0200411/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200412 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200413 * and reaps them, checking for rate and errors along the way.
414 */
Jens Axboeebac4652005-12-08 15:25:21 +0100415static void do_io(struct thread_data *td)
416{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100417 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100418 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100419 unsigned int i;
420 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100421
Jens Axboe5853e5a2006-06-08 14:41:05 +0200422 td_set_runstate(td, TD_RUNNING);
423
Jens Axboe7bb48f82007-03-27 15:30:28 +0200424 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100425 struct timeval comp_time;
426 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200427 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100428 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100429 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100430
431 if (td->terminate)
432 break;
433
Jens Axboe3d7c3912007-02-19 13:16:12 +0100434 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100435 if (!io_u)
436 break;
437
438 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100439
440 if (runtime_exceeded(td, &s)) {
441 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200442 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100443 break;
444 }
Jens Axboe36167d82007-02-18 05:41:31 +0100445
Jens Axboe11786802007-03-05 18:33:22 +0100446 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100447 switch (ret) {
448 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100449 if (io_u->error)
450 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100451 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100452 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200453 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100454
Jens Axboe9e9d1642007-03-12 09:37:46 +0100455 /*
456 * zero read, fail
457 */
458 if (!bytes) {
459 td_verror(td, ENODATA, "full resid");
460 put_io_u(td, io_u);
461 break;
462 }
463
Jens Axboe36167d82007-02-18 05:41:31 +0100464 io_u->xfer_buflen = io_u->resid;
465 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200466 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200467 f->last_completed_pos = io_u->offset;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200468
Jens Axboe30061b92007-04-17 13:31:34 +0200469 td->ts.short_io_u[io_u->ddir]++;
470
Jens Axboed460eb32007-04-16 21:39:33 +0200471 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200472 goto sync_done;
473
Jens Axboe11786802007-03-05 18:33:22 +0100474 requeue_io_u(td, &io_u);
475 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200476sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100477 fio_gettime(&comp_time, NULL);
478 bytes_done = io_u_sync_complete(td, io_u);
479 if (bytes_done < 0)
480 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100481 }
Jens Axboe36167d82007-02-18 05:41:31 +0100482 break;
483 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100484 /*
485 * if the engine doesn't have a commit hook,
486 * the io_u is really queued. if it does have such
487 * a hook, it has to call io_u_queued() itself.
488 */
489 if (td->io_ops->commit == NULL)
490 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100491 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100492 case FIO_Q_BUSY:
493 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100494 ret2 = td_io_commit(td);
495 if (ret2 < 0)
496 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100497 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100498 default:
499 assert(ret < 0);
500 put_io_u(td, io_u);
501 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100502 }
503
Jens Axboe99784632007-02-19 10:06:17 +0100504 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100505 break;
506
Jens Axboe97601022007-02-18 12:47:29 +0100507 /*
508 * See if we need to complete some commands
509 */
Jens Axboe755200a2007-02-19 13:08:12 +0100510 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100511 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100512 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100513 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100514
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100515 if (td->cur_depth > td->o.iodepth_low)
516 min_evts = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100517 }
518
Jens Axboe97601022007-02-18 12:47:29 +0100519 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100520 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100521 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100522 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100523 }
524
Jens Axboe97601022007-02-18 12:47:29 +0100525 if (!bytes_done)
526 continue;
527
Jens Axboeebac4652005-12-08 15:25:21 +0100528 /*
529 * the rate is batched for now, it should work for batches
530 * of completions except the very first one which may look
531 * a little bursty
532 */
Jens Axboe97601022007-02-18 12:47:29 +0100533 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100534
Jens Axboe413dd452007-02-23 09:26:09 +0100535 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100536
Jens Axboe97601022007-02-18 12:47:29 +0100537 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100538 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100539 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100540 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100541 break;
542 }
543
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100544 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100545 unsigned long long b;
546
547 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100548 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100549 int left;
550
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100551 if (td->o.thinktime_spin)
552 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100553
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100554 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100555 if (left)
556 usec_sleep(td, left);
557 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100558 }
Jens Axboeebac4652005-12-08 15:25:21 +0100559 }
560
Jens Axboe4d2413c2006-11-23 11:58:59 +0100561 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100562 struct fio_file *f;
563
Jens Axboec01c0392007-02-26 12:43:42 +0100564 i = td->cur_depth;
565 if (i)
566 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100567
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100568 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200569 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100570
571 for_each_file(td, f, i) {
572 if (!(f->flags & FIO_FILE_OPEN))
573 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200574 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100575 }
Jens Axboe84585002006-10-19 20:26:22 +0200576 }
Jens Axboec01c0392007-02-26 12:43:42 +0100577 } else
578 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100579}
580
Jens Axboeebac4652005-12-08 15:25:21 +0100581static void cleanup_io_u(struct thread_data *td)
582{
583 struct list_head *entry, *n;
584 struct io_u *io_u;
585
586 list_for_each_safe(entry, n, &td->io_u_freelist) {
587 io_u = list_entry(entry, struct io_u, list);
588
589 list_del(&io_u->list);
590 free(io_u);
591 }
592
Jens Axboe2f9ade32006-10-20 11:25:52 +0200593 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100594}
595
Jens Axboe6b9cea22006-10-30 17:00:24 +0100596/*
597 * "randomly" fill the buffer contents
598 */
Jens Axboee9459e52007-04-17 15:46:32 +0200599static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100600{
Jens Axboe210f43b2007-04-17 19:52:18 +0200601 long *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100602
Jens Axboee9459e52007-04-17 15:46:32 +0200603 if (!td->o.zero_buffers) {
604 while ((void *) ptr - io_u->buf < max_bs) {
Jens Axboe210f43b2007-04-17 19:52:18 +0200605 *ptr = rand() * GOLDEN_RATIO_PRIME;
Jens Axboee9459e52007-04-17 15:46:32 +0200606 ptr++;
607 }
608 } else
609 memset(ptr, 0, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100610}
611
Jens Axboeebac4652005-12-08 15:25:21 +0100612static int init_io_u(struct thread_data *td)
613{
Jens Axboe2b4ce342007-03-21 10:32:54 +0100614 unsigned long long buf_size;
Jens Axboeebac4652005-12-08 15:25:21 +0100615 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100616 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100617 int i, max_units;
618 char *p;
619
Jens Axboe2866c822006-10-09 15:57:48 +0200620 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100621 max_units = 1;
622 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100623 max_units = td->o.iodepth;
Jens Axboeebac4652005-12-08 15:25:21 +0100624
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100625 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboe2b4ce342007-03-21 10:32:54 +0100626 buf_size = (unsigned long long) max_bs * (unsigned long long) max_units;
627 buf_size += page_mask;
628 if (buf_size != (size_t) buf_size) {
629 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
630 return 1;
631 }
632
633 td->orig_buffer_size = buf_size;
Jens Axboe74b025b2006-12-19 15:18:14 +0100634
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100635 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
636 td->orig_buffer_size = (td->orig_buffer_size + td->o.hugepage_size - 1) & ~(td->o.hugepage_size - 1);
Jens Axboe4afbf662007-03-20 10:33:11 +0100637 else if (td->orig_buffer_size & page_mask)
638 td->orig_buffer_size = (td->orig_buffer_size + page_mask) & ~page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100639
Jens Axboe2f9ade32006-10-20 11:25:52 +0200640 if (allocate_io_mem(td))
641 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100642
Jens Axboeebac4652005-12-08 15:25:21 +0100643 p = ALIGN(td->orig_buffer);
644 for (i = 0; i < max_units; i++) {
645 io_u = malloc(sizeof(*io_u));
646 memset(io_u, 0, sizeof(*io_u));
647 INIT_LIST_HEAD(&io_u->list);
648
Jens Axboea00735e2006-11-03 08:58:08 +0100649 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200650
Jens Axboe660a1cb2007-04-17 15:37:47 +0200651 if (td_write(td))
Jens Axboee9459e52007-04-17 15:46:32 +0200652 fill_io_buf(td, io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100653
Jens Axboeb1ff3402006-02-17 11:35:58 +0100654 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100655 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100656 list_add(&io_u->list, &td->io_u_freelist);
657 }
658
Jens Axboe433afcb2007-02-22 10:39:01 +0100659 io_u_init_timeout();
660
Jens Axboeebac4652005-12-08 15:25:21 +0100661 return 0;
662}
663
Jens Axboeda867742006-06-06 10:39:10 -0700664static int switch_ioscheduler(struct thread_data *td)
665{
666 char tmp[256], tmp2[128];
667 FILE *f;
668 int ret;
669
Jens Axboeba0fbe12007-03-09 14:34:23 +0100670 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200671 return 0;
672
Jens Axboeda867742006-06-06 10:39:10 -0700673 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
674
675 f = fopen(tmp, "r+");
676 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200677 if (errno == ENOENT) {
678 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
679 return 0;
680 }
681 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700682 return 1;
683 }
684
685 /*
686 * Set io scheduler.
687 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100688 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700689 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100690 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700691 fclose(f);
692 return 1;
693 }
694
695 rewind(f);
696
697 /*
698 * Read back and check that the selected scheduler is now the default.
699 */
700 ret = fread(tmp, 1, sizeof(tmp), f);
701 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100702 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700703 fclose(f);
704 return 1;
705 }
706
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100707 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700708 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100709 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100710 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700711 fclose(f);
712 return 1;
713 }
714
715 fclose(f);
716 return 0;
717}
718
Jens Axboea978ba62007-03-08 14:29:03 +0100719static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100720{
Jens Axboe53cdc682006-10-18 11:50:58 +0200721 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100722 unsigned int i;
723 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100724
Jens Axboe756867b2007-03-06 15:19:24 +0100725 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100726 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100727 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100728 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100729 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100730 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100731
Jens Axboec1324df2007-02-19 19:06:41 +0100732 td->last_was_sync = 0;
733
Jens Axboea978ba62007-03-08 14:29:03 +0100734 for_each_file(td, f, i)
735 td_io_close_file(td, f);
736
737 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200738 for_each_file(td, f, i) {
Jens Axboea978ba62007-03-08 14:29:03 +0100739 ret = td_io_open_file(td, f);
740 if (ret)
741 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200742 }
Jens Axboea978ba62007-03-08 14:29:03 +0100743
744 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100745}
746
Jens Axboe906c8d72006-06-13 09:37:56 +0200747/*
748 * Entry point for the thread based jobs. The process based jobs end up
749 * here as well, after a little setup.
750 */
Jens Axboeebac4652005-12-08 15:25:21 +0100751static void *thread_main(void *data)
752{
Jens Axboe69008992006-11-24 13:12:56 +0100753 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100754 struct thread_data *td = data;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100755 unsigned long elapsed;
Jens Axboea978ba62007-03-08 14:29:03 +0100756 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100757
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100758 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100759 setsid();
760
761 td->pid = getpid();
762
Jens Axboeaea47d42006-05-26 19:27:29 +0200763 INIT_LIST_HEAD(&td->io_u_freelist);
764 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100765 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200766 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200767 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200768 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200769
Jens Axboeebac4652005-12-08 15:25:21 +0100770 if (init_io_u(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100771 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100772
773 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100774 td_verror(td, errno, "cpu_set_affinity");
Jens Axboebda4fd92007-03-12 11:21:48 +0100775 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100776 }
777
Jens Axboeaea47d42006-05-26 19:27:29 +0200778 if (init_iolog(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100779 goto err_sem;
Jens Axboeaea47d42006-05-26 19:27:29 +0200780
Jens Axboeebac4652005-12-08 15:25:21 +0100781 if (td->ioprio) {
782 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100783 td_verror(td, errno, "ioprio_set");
Jens Axboebda4fd92007-03-12 11:21:48 +0100784 goto err_sem;
Jens Axboeebac4652005-12-08 15:25:21 +0100785 }
786 }
787
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100788 if (nice(td->o.nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100789 td_verror(td, errno, "nice");
Jens Axboebda4fd92007-03-12 11:21:48 +0100790 goto err_sem;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200791 }
792
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100793 if (td->o.ioscheduler && switch_ioscheduler(td))
Jens Axboebda4fd92007-03-12 11:21:48 +0100794 goto err_sem;
Jens Axboeda867742006-06-06 10:39:10 -0700795
Jens Axboe75154842006-06-01 13:56:09 +0200796 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100797 fio_sem_up(startup_sem);
798 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100799
Jens Axboe37f56872007-03-09 12:42:35 +0100800 /*
801 * the ->mutex semaphore is now no longer used, close it to avoid
802 * eating a file descriptor
803 */
804 fio_sem_remove(td->mutex);
805
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100806 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100807 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100808
809 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100810 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100811
Jens Axboeb5af8292007-03-08 12:43:13 +0100812 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100813 goto err;
814
Jens Axboe68727072007-03-15 20:49:25 +0100815 if (init_random_map(td))
816 goto err;
817
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100818 if (td->o.exec_prerun) {
819 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100820 goto err;
821 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200822
Jens Axboe69008992006-11-24 13:12:56 +0100823 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100824 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100825 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100826
827 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100828 clear_state = 0;
Jens Axboecf4464c2007-04-17 20:14:42 +0200829 while (td->o.time_based || td->o.loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100830 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100831 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100832
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100833 if (td->o.ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100834 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100835
Jens Axboea978ba62007-03-08 14:29:03 +0100836 if (clear_state && clear_io_state(td))
837 break;
838
Jens Axboeebac4652005-12-08 15:25:21 +0100839 prune_io_piece_log(td);
840
Jens Axboeba0fbe12007-03-09 14:34:23 +0100841 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100842
Jens Axboea978ba62007-03-08 14:29:03 +0100843 clear_state = 1;
844
Jens Axboe38d77ca2007-03-21 14:20:20 +0100845 if (td_read(td) && td->io_bytes[DDIR_READ]) {
846 if (td->rw_end_set[DDIR_READ])
847 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
848 else
849 elapsed = utime_since_now(&td->start);
850
851 runtime[DDIR_READ] += elapsed;
852 }
853 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
854 if (td->rw_end_set[DDIR_WRITE])
855 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
856 else
857 elapsed = utime_since_now(&td->start);
858
859 runtime[DDIR_WRITE] += elapsed;
860 }
Jens Axboe413dd452007-02-23 09:26:09 +0100861
Jens Axboeebac4652005-12-08 15:25:21 +0100862 if (td->error || td->terminate)
863 break;
864
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100865 if (td->o.verify == VERIFY_NONE)
Jens Axboeebac4652005-12-08 15:25:21 +0100866 continue;
867
Jens Axboea978ba62007-03-08 14:29:03 +0100868 if (clear_io_state(td))
869 break;
870
Jens Axboe02bcaa82006-11-24 10:42:00 +0100871 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100872
873 do_verify(td);
874
Jens Axboe69008992006-11-24 13:12:56 +0100875 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100876
877 if (td->error || td->terminate)
878 break;
879 }
880
Jens Axboe36dff962006-11-24 13:29:20 +0100881 update_rusage_stat(td);
Jens Axboe756867b2007-03-06 15:19:24 +0100882 td->ts.runtime[0] = runtime[0] / 1000;
883 td->ts.runtime[1] = runtime[1] / 1000;
884 td->ts.total_run_time = mtime_since_now(&td->epoch);
885 td->ts.io_bytes[0] = td->io_bytes[0];
886 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100887
Jens Axboe756867b2007-03-06 15:19:24 +0100888 if (td->ts.bw_log)
889 finish_log(td, td->ts.bw_log, "bw");
890 if (td->ts.slat_log)
891 finish_log(td, td->ts.slat_log, "slat");
892 if (td->ts.clat_log)
893 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100894 if (td->o.write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700895 write_iolog_close(td);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100896 if (td->o.exec_postrun) {
897 if (system(td->o.exec_postrun) < 0)
898 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100899 }
Jens Axboeebac4652005-12-08 15:25:21 +0100900
901 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100902 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100903
904err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100905 if (td->error)
906 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200907 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200908 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100909 cleanup_io_u(td);
Jens Axboed23bb322007-03-23 15:57:56 +0100910 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100911 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100912 return (void *) (unsigned long) td->error;
Jens Axboebda4fd92007-03-12 11:21:48 +0100913err_sem:
914 fio_sem_up(startup_sem);
915 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100916}
917
Jens Axboe906c8d72006-06-13 09:37:56 +0200918/*
919 * We cannot pass the td data into a forked process, so attach the td and
920 * pass it to the thread worker.
921 */
Jens Axboea6418142007-02-17 04:47:18 +0100922static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100923{
924 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100925 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100926
927 data = shmat(shmid, NULL, 0);
928 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100929 int __err = errno;
930
Jens Axboeebac4652005-12-08 15:25:21 +0100931 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100932 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100933 }
934
935 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100936 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100937 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100938 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100939}
940
Jens Axboe906c8d72006-06-13 09:37:56 +0200941/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200942 * Run over the job map and reap the threads that have exited, if any.
943 */
Jens Axboeebac4652005-12-08 15:25:21 +0100944static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
945{
Jens Axboe34572e22006-10-20 09:33:18 +0200946 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100947 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100948
949 /*
950 * reap exited threads (TD_EXITED -> TD_REAPED)
951 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100952 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200953 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100954 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100955
Jens Axboe84585002006-10-19 20:26:22 +0200956 /*
957 * ->io_ops is NULL for a thread that has closed its
958 * io engine
959 */
Jens Axboeba0fbe12007-03-09 14:34:23 +0100960 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +0200961 cputhreads++;
962
Jens Axboea2f77c92007-02-22 11:53:00 +0100963 if (!td->pid || td->runstate == TD_REAPED)
964 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100965 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +0100966 if (td->runstate == TD_EXITED) {
967 td_set_runstate(td, TD_REAPED);
968 goto reaped;
969 }
970 continue;
971 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100972
973 flags = WNOHANG;
974 if (td->runstate == TD_EXITED)
975 flags = 0;
976
977 /*
978 * check if someone quit or got killed in an unusual way
979 */
980 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100981 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100982 if (errno == ECHILD) {
983 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
984 td_set_runstate(td, TD_REAPED);
985 goto reaped;
986 }
987 perror("waitpid");
988 } else if (ret == td->pid) {
989 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100990 int sig = WTERMSIG(status);
991
Jens Axboed9244942007-03-05 12:32:32 +0100992 if (sig != SIGQUIT)
993 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100994 td_set_runstate(td, TD_REAPED);
995 goto reaped;
996 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100997 if (WIFEXITED(status)) {
998 if (WEXITSTATUS(status) && !td->error)
999 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001000
Jens Axboea2f77c92007-02-22 11:53:00 +01001001 td_set_runstate(td, TD_REAPED);
1002 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001003 }
1004 }
Jens Axboeebac4652005-12-08 15:25:21 +01001005
Jens Axboea2f77c92007-02-22 11:53:00 +01001006 /*
1007 * thread is not dead, continue
1008 */
gurudas paie48676b2007-04-11 12:44:27 +02001009 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001010 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001011reaped:
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001012 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001013 long ret;
1014
1015 if (pthread_join(td->thread, (void *) &ret))
1016 perror("pthread_join");
1017 }
1018
Jens Axboeebac4652005-12-08 15:25:21 +01001019 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001020 (*m_rate) -= td->o.ratemin;
1021 (*t_rate) -= td->o.rate;
gurudas paie48676b2007-04-11 12:44:27 +02001022 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001023
1024 if (td->error)
1025 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +01001026 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001027
Jens Axboe4d2413c2006-11-23 11:58:59 +01001028 if (*nr_running == cputhreads && !pending)
Jens Axboe390c40e2007-03-05 12:35:29 +01001029 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001030}
1031
Jens Axboe906c8d72006-06-13 09:37:56 +02001032/*
1033 * Main function for kicking off and reaping jobs, as needed.
1034 */
Jens Axboeebac4652005-12-08 15:25:21 +01001035static void run_threads(void)
1036{
Jens Axboeebac4652005-12-08 15:25:21 +01001037 struct thread_data *td;
1038 unsigned long spent;
1039 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001040
Jens Axboe2f9ade32006-10-20 11:25:52 +02001041 if (fio_pin_memory())
1042 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001043
Jens Axboec6ae0a52006-06-12 11:04:44 +02001044 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001045 printf("Starting ");
1046 if (nr_thread)
1047 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1048 if (nr_process) {
1049 if (nr_thread)
1050 printf(" and ");
1051 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1052 }
1053 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001054 fflush(stdout);
1055 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001056
Jens Axboe4efa9702006-05-31 11:56:49 +02001057 signal(SIGINT, sig_handler);
1058 signal(SIGALRM, sig_handler);
1059
Jens Axboeebac4652005-12-08 15:25:21 +01001060 todo = thread_number;
1061 nr_running = 0;
1062 nr_started = 0;
1063 m_rate = t_rate = 0;
1064
Jens Axboe34572e22006-10-20 09:33:18 +02001065 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001066 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001067
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001068 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001069 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001070 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001071 }
Jens Axboeebac4652005-12-08 15:25:21 +01001072
1073 /*
1074 * do file setup here so it happens sequentially,
1075 * we don't want X number of threads getting their
1076 * client data interspersed on disk
1077 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001078 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001079 exit_value++;
1080 if (td->error)
1081 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001082 td_set_runstate(td, TD_REAPED);
1083 todo--;
1084 }
Jens Axboe380cf262007-01-11 14:01:27 +01001085
1086 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001087 }
1088
Jens Axboea2f77c92007-02-22 11:53:00 +01001089 set_genesis_time();
1090
Jens Axboeebac4652005-12-08 15:25:21 +01001091 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001092 struct thread_data *map[MAX_JOBS];
1093 struct timeval this_start;
1094 int this_jobs = 0, left;
1095
Jens Axboeebac4652005-12-08 15:25:21 +01001096 /*
1097 * create threads (TD_NOT_CREATED -> TD_CREATED)
1098 */
Jens Axboe34572e22006-10-20 09:33:18 +02001099 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001100 if (td->runstate != TD_NOT_CREATED)
1101 continue;
1102
1103 /*
1104 * never got a chance to start, killed by other
1105 * thread for some reason
1106 */
1107 if (td->terminate) {
1108 todo--;
1109 continue;
1110 }
1111
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001112 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001113 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001114
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001115 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001116 continue;
1117 }
1118
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001119 if (td->o.stonewall && (nr_started || nr_running))
Jens Axboeebac4652005-12-08 15:25:21 +01001120 break;
1121
Jens Axboe75154842006-06-01 13:56:09 +02001122 /*
1123 * Set state to created. Thread will transition
1124 * to TD_INITIALIZED when it's done setting up.
1125 */
Jens Axboeebac4652005-12-08 15:25:21 +01001126 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001127 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001128 nr_started++;
1129
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001130 if (td->o.use_thread) {
Jens Axboeebac4652005-12-08 15:25:21 +01001131 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1132 perror("thread_create");
1133 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001134 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001135 }
1136 } else {
Jens Axboe07739b52007-03-08 20:25:46 +01001137 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001138 int ret = fork_main(shm_id, i);
1139
1140 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001141 }
1142 }
Jens Axboe07739b52007-03-08 20:25:46 +01001143 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001144 }
1145
1146 /*
Jens Axboe75154842006-06-01 13:56:09 +02001147 * Wait for the started threads to transition to
1148 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001149 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001150 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001151 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001152 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001153 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1154 break;
1155
1156 usleep(100000);
1157
1158 for (i = 0; i < this_jobs; i++) {
1159 td = map[i];
1160 if (!td)
1161 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001162 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001163 map[i] = NULL;
1164 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001165 } else if (td->runstate >= TD_EXITED) {
1166 map[i] = NULL;
1167 left--;
1168 todo--;
1169 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001170 }
1171 }
1172 }
1173
1174 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001175 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001176 for (i = 0; i < this_jobs; i++) {
1177 td = map[i];
1178 if (!td)
1179 continue;
1180 kill(td->pid, SIGTERM);
1181 }
1182 break;
1183 }
1184
1185 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001186 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001187 */
Jens Axboe34572e22006-10-20 09:33:18 +02001188 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001189 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001190 continue;
1191
1192 td_set_runstate(td, TD_RUNNING);
1193 nr_running++;
1194 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001195 m_rate += td->o.ratemin;
1196 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001197 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001198 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001199 }
1200
1201 reap_threads(&nr_running, &t_rate, &m_rate);
1202
1203 if (todo)
1204 usleep(100000);
1205 }
1206
1207 while (nr_running) {
1208 reap_threads(&nr_running, &t_rate, &m_rate);
1209 usleep(10000);
1210 }
1211
1212 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001213 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001214}
1215
Jens Axboeebac4652005-12-08 15:25:21 +01001216int main(int argc, char *argv[])
1217{
Jens Axboe29d610e2007-02-06 13:25:33 +01001218 long ps;
1219
Jens Axboedbe11252007-02-11 00:19:51 +01001220 /*
1221 * We need locale for number printing, if it isn't set then just
1222 * go with the US format.
1223 */
1224 if (!getenv("LC_NUMERIC"))
1225 setlocale(LC_NUMERIC, "en_US");
1226
Jens Axboeebac4652005-12-08 15:25:21 +01001227 if (parse_options(argc, argv))
1228 return 1;
1229
Jens Axboe4b472fa2007-04-04 11:04:34 +02001230 if (!thread_number)
1231 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001232
Jens Axboe29d610e2007-02-06 13:25:33 +01001233 ps = sysconf(_SC_PAGESIZE);
1234 if (ps < 0) {
1235 log_err("Failed to get page size\n");
1236 return 1;
1237 }
1238
Jens Axboecfc99db2007-03-14 10:34:47 +01001239 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001240 page_mask = ps - 1;
1241
Jens Axboebb3884d2007-01-17 17:23:11 +11001242 if (write_bw_log) {
1243 setup_log(&agg_io_log[DDIR_READ]);
1244 setup_log(&agg_io_log[DDIR_WRITE]);
1245 }
1246
Jens Axboe07739b52007-03-08 20:25:46 +01001247 startup_sem = fio_sem_init(0);
1248
Jens Axboea2f77c92007-02-22 11:53:00 +01001249 set_genesis_time();
1250
Jens Axboeebac4652005-12-08 15:25:21 +01001251 disk_util_timer_arm();
1252
1253 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001254
Jens Axboebb3884d2007-01-17 17:23:11 +11001255 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001256 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001257 if (write_bw_log) {
1258 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1259 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1260 }
1261 }
Jens Axboeebac4652005-12-08 15:25:21 +01001262
Jens Axboe07739b52007-03-08 20:25:46 +01001263 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001264 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001265}