blob: 1c79d6823ae95079f0b445ceac9ed7507bb9be3b [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 Axboe7a93ab12007-04-18 12:25:41 +020073 /*
74 * if the thread is running, just let it exit
75 */
76 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010077 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010078 td->terminate = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010079 td->o.start_delay = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010080 }
81 }
82}
83
84static void sig_handler(int sig)
85{
86 switch (sig) {
87 case SIGALRM:
88 update_io_ticks();
89 disk_util_timer_arm();
90 print_thread_status();
91 break;
92 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010093 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010094 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010095 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010096 break;
97 }
98}
99
Jens Axboe906c8d72006-06-13 09:37:56 +0200100/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200101 * Check if we are above the minimum rate given.
102 */
Jens Axboeebac4652005-12-08 15:25:21 +0100103static int check_min_rate(struct thread_data *td, struct timeval *now)
104{
Jens Axboe09042002007-02-23 10:56:22 +0100105 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100106 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100107 unsigned long spent;
108 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100109
110 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100111 * No minimum rate set, always ok
112 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100113 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100114 return 0;
115
116 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100117 * allow a 2 second settle period in the beginning
118 */
119 if (mtime_since(&td->start, now) < 2000)
120 return 0;
121
Jens Axboe4e991c22007-03-15 11:41:11 +0100122 if (td_read(td)) {
123 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100124 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100125 }
126 if (td_write(td)) {
127 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100128 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100129 }
Jens Axboe09042002007-02-23 10:56:22 +0100130
Jens Axboeebac4652005-12-08 15:25:21 +0100131 /*
132 * if rate blocks is set, sample is running
133 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100134 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100135 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100136 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100137 return 0;
138
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100139 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100140 /*
141 * check bandwidth specified rate
142 */
143 if (bytes < td->rate_bytes) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100144 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100145 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100146 } else {
147 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100148 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
149 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 +0100150 return 1;
151 }
152 }
153 } else {
154 /*
155 * checks iops specified rate
156 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100157 if (iops < td->o.rate_iops) {
158 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100159 return 1;
160 } else {
161 rate = (iops - td->rate_blocks) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100162 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
163 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 +0100164 }
Jens Axboe413dd452007-02-23 09:26:09 +0100165 }
Jens Axboeebac4652005-12-08 15:25:21 +0100166 }
167 }
168
Jens Axboe09042002007-02-23 10:56:22 +0100169 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100170 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100171 memcpy(&td->lastrate, now, sizeof(*now));
172 return 0;
173}
174
175static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
176{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100177 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100178 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100180 return 1;
181
182 return 0;
183}
184
Jens Axboe906c8d72006-06-13 09:37:56 +0200185/*
186 * When job exits, we can cancel the in-flight IO if we are using async
187 * io. Attempt to do so.
188 */
Jens Axboeebac4652005-12-08 15:25:21 +0100189static void cleanup_pending_aio(struct thread_data *td)
190{
Jens Axboeebac4652005-12-08 15:25:21 +0100191 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100192 struct io_u *io_u;
193 int r;
194
195 /*
196 * get immediately available events, if any
197 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100198 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100199 if (r < 0)
200 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100201
202 /*
203 * now cancel remaining active events
204 */
Jens Axboe2866c822006-10-09 15:57:48 +0200205 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100206 list_for_each_safe(entry, n, &td->io_u_busylist) {
207 io_u = list_entry(entry, struct io_u, list);
208
Jens Axboe0c6e7512007-02-22 11:19:39 +0100209 /*
210 * if the io_u isn't in flight, then that generally
211 * means someone leaked an io_u. complain but fix
212 * it up, so we don't stall here.
213 */
214 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
215 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100216 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100217 } else {
218 r = td->io_ops->cancel(td, io_u);
219 if (!r)
220 put_io_u(td, io_u);
221 }
Jens Axboeebac4652005-12-08 15:25:21 +0100222 }
223 }
224
Jens Axboe97601022007-02-18 12:47:29 +0100225 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100226 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100227}
228
Jens Axboe906c8d72006-06-13 09:37:56 +0200229/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200230 * Helper to handle the final sync of a file. Works just like the normal
231 * io path, just does everything sync.
232 */
233static int fio_io_sync(struct thread_data *td, struct fio_file *f)
234{
235 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200236 int ret;
237
238 if (!io_u)
239 return 1;
240
241 io_u->ddir = DDIR_SYNC;
242 io_u->file = f;
243
244 if (td_io_prep(td, io_u)) {
245 put_io_u(td, io_u);
246 return 1;
247 }
248
Jens Axboe755200a2007-02-19 13:08:12 +0100249requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200250 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100251 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100252 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200253 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200254 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100255 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100256 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100257 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100258 } else if (ret == FIO_Q_COMPLETED) {
259 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100260 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100261 return 1;
262 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200263
Jens Axboed7762cf2007-02-23 12:34:57 +0100264 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100265 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100266 } else if (ret == FIO_Q_BUSY) {
267 if (td_io_commit(td))
268 return 1;
269 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200270 }
271
272 return 0;
273}
274
275/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100276 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200277 * reads the blocks back in, and checks the crc/md5 of the data.
278 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100279static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100280{
Jens Axboe53cdc682006-10-18 11:50:58 +0200281 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100282 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100283 int ret, min_events;
284 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200285
286 /*
287 * sync io first and invalidate cache, to make sure we really
288 * read from disk.
289 */
290 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100291 if (!(f->flags & FIO_FILE_OPEN))
292 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100293 if (fio_io_sync(td, f))
294 break;
295 if (file_invalidate_cache(td, f))
296 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200297 }
Jens Axboeebac4652005-12-08 15:25:21 +0100298
Jens Axboeb2fdda42007-02-20 20:52:51 +0100299 if (td->error)
300 return;
301
Jens Axboeebac4652005-12-08 15:25:21 +0100302 td_set_runstate(td, TD_VERIFYING);
303
Jens Axboe36167d82007-02-18 05:41:31 +0100304 io_u = NULL;
305 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100306 int ret2;
307
Jens Axboeebac4652005-12-08 15:25:21 +0100308 io_u = __get_io_u(td);
309 if (!io_u)
310 break;
311
Jens Axboe069c2912007-02-21 23:02:39 +0100312 if (runtime_exceeded(td, &io_u->start_time)) {
313 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200314 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200315 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100316 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200317
Jens Axboe069c2912007-02-21 23:02:39 +0100318 if (get_next_verify(td, io_u)) {
319 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100320 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100321 }
Jens Axboeebac4652005-12-08 15:25:21 +0100322
Jens Axboe069c2912007-02-21 23:02:39 +0100323 if (td_io_prep(td, io_u)) {
324 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100325 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100326 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100327
328 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100329
Jens Axboe11786802007-03-05 18:33:22 +0100330 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100331 switch (ret) {
332 case FIO_Q_COMPLETED:
333 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100334 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100335 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100336 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200337 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100338
Jens Axboe9e9d1642007-03-12 09:37:46 +0100339 /*
340 * zero read, fail
341 */
342 if (!bytes) {
343 td_verror(td, ENODATA, "full resid");
344 put_io_u(td, io_u);
345 break;
346 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200347
Jens Axboe36167d82007-02-18 05:41:31 +0100348 io_u->xfer_buflen = io_u->resid;
349 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200350 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200351 f->last_completed_pos = io_u->offset;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200352
Jens Axboe30061b92007-04-17 13:31:34 +0200353 td->ts.short_io_u[io_u->ddir]++;
354
Jens Axboed460eb32007-04-16 21:39:33 +0200355 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200356 goto sync_done;
357
Jens Axboe11786802007-03-05 18:33:22 +0100358 requeue_io_u(td, &io_u);
359 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200360sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100361 ret = io_u_sync_complete(td, io_u);
362 if (ret < 0)
363 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100364 }
Jens Axboe36167d82007-02-18 05:41:31 +0100365 continue;
366 case FIO_Q_QUEUED:
367 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100368 case FIO_Q_BUSY:
369 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100370 ret2 = td_io_commit(td);
371 if (ret2 < 0)
372 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100373 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100374 default:
375 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100376 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100377 break;
378 }
379
Jens Axboe99784632007-02-19 10:06:17 +0100380 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100381 break;
382
Jens Axboe3af6ef32007-02-18 06:57:43 +0100383 /*
384 * if we can queue more, do so. but check if there are
385 * completed io_u's first.
386 */
Jens Axboe97601022007-02-18 12:47:29 +0100387 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100388 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100389 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100390
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100391 if (td->cur_depth > td->o.iodepth_low)
392 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100393 }
394
Jens Axboe3af6ef32007-02-18 06:57:43 +0100395 /*
396 * Reap required number of io units, if any, and do the
397 * verification on them through the callback handler
398 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100399 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100400 break;
401 }
402
Jens Axboec01c0392007-02-26 12:43:42 +0100403 if (!td->error) {
404 min_events = td->cur_depth;
405
406 if (min_events)
407 ret = io_u_queued_complete(td, min_events);
408 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100409 cleanup_pending_aio(td);
410
411 td_set_runstate(td, TD_RUNNING);
412}
413
Jens Axboe32cd46a2006-06-07 13:40:40 +0200414/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200415 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200416 * and reaps them, checking for rate and errors along the way.
417 */
Jens Axboeebac4652005-12-08 15:25:21 +0100418static void do_io(struct thread_data *td)
419{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100420 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100421 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100422 unsigned int i;
423 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100424
Jens Axboe5853e5a2006-06-08 14:41:05 +0200425 td_set_runstate(td, TD_RUNNING);
426
Jens Axboe7bb48f82007-03-27 15:30:28 +0200427 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100428 struct timeval comp_time;
429 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200430 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100431 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100432 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100433
434 if (td->terminate)
435 break;
436
Jens Axboe3d7c3912007-02-19 13:16:12 +0100437 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100438 if (!io_u)
439 break;
440
441 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100442
443 if (runtime_exceeded(td, &s)) {
444 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200445 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100446 break;
447 }
Jens Axboe36167d82007-02-18 05:41:31 +0100448
Jens Axboeb67740d2007-07-26 12:22:30 +0200449 /*
450 * Add verification end_io handler, if asked to verify
451 * a previously written file.
452 */
453 if (td->o.verify != VERIFY_NONE)
454 io_u->end_io = verify_io_u;
455
Jens Axboe11786802007-03-05 18:33:22 +0100456 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100457 switch (ret) {
458 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100459 if (io_u->error)
460 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100461 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100462 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200463 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100464
Jens Axboe9e9d1642007-03-12 09:37:46 +0100465 /*
466 * zero read, fail
467 */
468 if (!bytes) {
469 td_verror(td, ENODATA, "full resid");
470 put_io_u(td, io_u);
471 break;
472 }
473
Jens Axboe36167d82007-02-18 05:41:31 +0100474 io_u->xfer_buflen = io_u->resid;
475 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200476 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200477 f->last_completed_pos = io_u->offset;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200478
Jens Axboe30061b92007-04-17 13:31:34 +0200479 td->ts.short_io_u[io_u->ddir]++;
480
Jens Axboed460eb32007-04-16 21:39:33 +0200481 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200482 goto sync_done;
483
Jens Axboe11786802007-03-05 18:33:22 +0100484 requeue_io_u(td, &io_u);
485 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200486sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100487 fio_gettime(&comp_time, NULL);
488 bytes_done = io_u_sync_complete(td, io_u);
489 if (bytes_done < 0)
490 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100491 }
Jens Axboe36167d82007-02-18 05:41:31 +0100492 break;
493 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100494 /*
495 * if the engine doesn't have a commit hook,
496 * the io_u is really queued. if it does have such
497 * a hook, it has to call io_u_queued() itself.
498 */
499 if (td->io_ops->commit == NULL)
500 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100501 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100502 case FIO_Q_BUSY:
503 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100504 ret2 = td_io_commit(td);
505 if (ret2 < 0)
506 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100507 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100508 default:
509 assert(ret < 0);
510 put_io_u(td, io_u);
511 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100512 }
513
Jens Axboe99784632007-02-19 10:06:17 +0100514 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100515 break;
516
Jens Axboe97601022007-02-18 12:47:29 +0100517 /*
518 * See if we need to complete some commands
519 */
Jens Axboe755200a2007-02-19 13:08:12 +0100520 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100521 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100522 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100523 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100524
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100525 if (td->cur_depth > td->o.iodepth_low)
526 min_evts = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100527 }
528
Jens Axboe97601022007-02-18 12:47:29 +0100529 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100530 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100531 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100532 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100533 }
534
Jens Axboe97601022007-02-18 12:47:29 +0100535 if (!bytes_done)
536 continue;
537
Jens Axboeebac4652005-12-08 15:25:21 +0100538 /*
539 * the rate is batched for now, it should work for batches
540 * of completions except the very first one which may look
541 * a little bursty
542 */
Jens Axboe97601022007-02-18 12:47:29 +0100543 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100544
Jens Axboe413dd452007-02-23 09:26:09 +0100545 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100546
Jens Axboe97601022007-02-18 12:47:29 +0100547 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100548 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100549 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100550 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100551 break;
552 }
553
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100554 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100555 unsigned long long b;
556
557 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100558 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100559 int left;
560
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100561 if (td->o.thinktime_spin)
562 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100563
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100564 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100565 if (left)
566 usec_sleep(td, left);
567 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100568 }
Jens Axboeebac4652005-12-08 15:25:21 +0100569 }
570
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100571 if (td->o.fill_device && td->error == ENOSPC) {
572 td->error = 0;
573 td->terminate = 1;
574 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100575 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100576 struct fio_file *f;
577
Jens Axboec01c0392007-02-26 12:43:42 +0100578 i = td->cur_depth;
579 if (i)
580 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100581
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100582 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200583 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100584
585 for_each_file(td, f, i) {
586 if (!(f->flags & FIO_FILE_OPEN))
587 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200588 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100589 }
Jens Axboe84585002006-10-19 20:26:22 +0200590 }
Jens Axboec01c0392007-02-26 12:43:42 +0100591 } else
592 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100593}
594
Jens Axboeebac4652005-12-08 15:25:21 +0100595static void cleanup_io_u(struct thread_data *td)
596{
597 struct list_head *entry, *n;
598 struct io_u *io_u;
599
600 list_for_each_safe(entry, n, &td->io_u_freelist) {
601 io_u = list_entry(entry, struct io_u, list);
602
603 list_del(&io_u->list);
604 free(io_u);
605 }
606
Jens Axboe2f9ade32006-10-20 11:25:52 +0200607 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100608}
609
Jens Axboe6b9cea22006-10-30 17:00:24 +0100610/*
611 * "randomly" fill the buffer contents
612 */
Jens Axboee9459e52007-04-17 15:46:32 +0200613static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100614{
Jens Axboe210f43b2007-04-17 19:52:18 +0200615 long *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100616
Jens Axboee9459e52007-04-17 15:46:32 +0200617 if (!td->o.zero_buffers) {
618 while ((void *) ptr - io_u->buf < max_bs) {
Jens Axboe210f43b2007-04-17 19:52:18 +0200619 *ptr = rand() * GOLDEN_RATIO_PRIME;
Jens Axboee9459e52007-04-17 15:46:32 +0200620 ptr++;
621 }
622 } else
623 memset(ptr, 0, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100624}
625
Jens Axboeebac4652005-12-08 15:25:21 +0100626static int init_io_u(struct thread_data *td)
627{
628 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100629 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100630 int i, max_units;
631 char *p;
632
Jens Axboe2866c822006-10-09 15:57:48 +0200633 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100634 max_units = 1;
635 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100636 max_units = td->o.iodepth;
Jens Axboeebac4652005-12-08 15:25:21 +0100637
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100638 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboec3990642007-07-19 10:17:09 +0200639 td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100640
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100641 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
642 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 +0100643
Jens Axboec3990642007-07-19 10:17:09 +0200644 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
645 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
646 return 1;
647 }
648
Jens Axboe2f9ade32006-10-20 11:25:52 +0200649 if (allocate_io_mem(td))
650 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100651
Jens Axboeb3f378e2007-07-20 12:39:22 +0200652 if (td->o.odirect)
653 p = ALIGN(td->orig_buffer);
654 else
655 p = td->orig_buffer;
656
Jens Axboeebac4652005-12-08 15:25:21 +0100657 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200658 if (td->terminate)
659 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100660 io_u = malloc(sizeof(*io_u));
661 memset(io_u, 0, sizeof(*io_u));
662 INIT_LIST_HEAD(&io_u->list);
663
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200664 if (!(td->io_ops->flags & FIO_NOIO)) {
665 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200666
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200667 if (td_write(td))
668 fill_io_buf(td, io_u, max_bs);
669 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100670
Jens Axboeb1ff3402006-02-17 11:35:58 +0100671 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100672 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100673 list_add(&io_u->list, &td->io_u_freelist);
674 }
675
Jens Axboe433afcb2007-02-22 10:39:01 +0100676 io_u_init_timeout();
677
Jens Axboeebac4652005-12-08 15:25:21 +0100678 return 0;
679}
680
Jens Axboeda867742006-06-06 10:39:10 -0700681static int switch_ioscheduler(struct thread_data *td)
682{
683 char tmp[256], tmp2[128];
684 FILE *f;
685 int ret;
686
Jens Axboeba0fbe12007-03-09 14:34:23 +0100687 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200688 return 0;
689
Jens Axboeda867742006-06-06 10:39:10 -0700690 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
691
692 f = fopen(tmp, "r+");
693 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200694 if (errno == ENOENT) {
695 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
696 return 0;
697 }
698 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700699 return 1;
700 }
701
702 /*
703 * Set io scheduler.
704 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100705 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700706 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100707 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700708 fclose(f);
709 return 1;
710 }
711
712 rewind(f);
713
714 /*
715 * Read back and check that the selected scheduler is now the default.
716 */
717 ret = fread(tmp, 1, sizeof(tmp), f);
718 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100719 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700720 fclose(f);
721 return 1;
722 }
723
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100724 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700725 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100726 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100727 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700728 fclose(f);
729 return 1;
730 }
731
732 fclose(f);
733 return 0;
734}
735
Jens Axboe492158c2007-05-24 10:32:47 +0200736static int keep_running(struct thread_data *td)
737{
738 unsigned long long io_done;
739
Jens Axboe20e354e2007-07-23 14:36:16 +0200740 if (td->done)
741 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200742 if (td->o.time_based)
743 return 1;
744 if (td->o.loops) {
745 td->o.loops--;
746 return 1;
747 }
748
Jens Axboe48f5abd2007-07-20 13:25:04 +0200749 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200750 if (io_done < td->o.size)
751 return 1;
752
753 return 0;
754}
755
Jens Axboea978ba62007-03-08 14:29:03 +0100756static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100757{
Jens Axboe53cdc682006-10-18 11:50:58 +0200758 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100759 unsigned int i;
760 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100761
Jens Axboe756867b2007-03-06 15:19:24 +0100762 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100763 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100764 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100765 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100766 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100767 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100768
Jens Axboec1324df2007-02-19 19:06:41 +0100769 td->last_was_sync = 0;
770
Jens Axboe48f5abd2007-07-20 13:25:04 +0200771 if (td->o.time_based)
772 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200773
Jens Axboea978ba62007-03-08 14:29:03 +0100774 for_each_file(td, f, i)
775 td_io_close_file(td, f);
776
777 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200778 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200779 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100780 ret = td_io_open_file(td, f);
781 if (ret)
782 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200783 }
Jens Axboea978ba62007-03-08 14:29:03 +0100784
785 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100786}
787
Jens Axboe906c8d72006-06-13 09:37:56 +0200788/*
789 * Entry point for the thread based jobs. The process based jobs end up
790 * here as well, after a little setup.
791 */
Jens Axboeebac4652005-12-08 15:25:21 +0100792static void *thread_main(void *data)
793{
Shawn Lewis10927312007-11-21 09:38:13 +0100794 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100795 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100796 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100797
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100798 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100799 setsid();
800
801 td->pid = getpid();
802
Jens Axboeaea47d42006-05-26 19:27:29 +0200803 INIT_LIST_HEAD(&td->io_u_freelist);
804 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100805 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200806 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200807 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200808 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200809
Jens Axboe75154842006-06-01 13:56:09 +0200810 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100811 fio_sem_up(startup_sem);
812 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100813
Jens Axboe37f56872007-03-09 12:42:35 +0100814 /*
815 * the ->mutex semaphore is now no longer used, close it to avoid
816 * eating a file descriptor
817 */
818 fio_sem_remove(td->mutex);
819
Jens Axboed84f8d42007-05-16 08:47:46 +0200820 /*
821 * May alter parameters that init_io_u() will use, so we need to
822 * do this first.
823 */
824 if (init_iolog(td))
825 goto err;
826
Jens Axboedb1cd902007-04-26 13:47:07 +0200827 if (init_io_u(td))
828 goto err;
829
Jens Axboe375b2692007-05-22 09:13:02 +0200830 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200831 td_verror(td, errno, "cpu_set_affinity");
832 goto err;
833 }
834
Jens Axboeac684782007-11-08 08:29:07 +0100835 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200836 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
837 td_verror(td, errno, "ioprio_set");
838 goto err;
839 }
840 }
841
842 if (nice(td->o.nice) == -1) {
843 td_verror(td, errno, "nice");
844 goto err;
845 }
846
847 if (td->o.ioscheduler && switch_ioscheduler(td))
848 goto err;
849
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100850 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100851 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100852
853 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100854 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100855
Jens Axboeb5af8292007-03-08 12:43:13 +0100856 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100857 goto err;
858
Jens Axboe68727072007-03-15 20:49:25 +0100859 if (init_random_map(td))
860 goto err;
861
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100862 if (td->o.exec_prerun) {
863 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100864 goto err;
865 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200866
Jens Axboe69008992006-11-24 13:12:56 +0100867 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100868 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100869 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100870
871 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100872 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200873 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100874 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100875 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100876
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100877 if (td->o.ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100878 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100879
Jens Axboea978ba62007-03-08 14:29:03 +0100880 if (clear_state && clear_io_state(td))
881 break;
882
Jens Axboeebac4652005-12-08 15:25:21 +0100883 prune_io_piece_log(td);
884
Jens Axboeba0fbe12007-03-09 14:34:23 +0100885 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100886
Jens Axboea978ba62007-03-08 14:29:03 +0100887 clear_state = 1;
888
Jens Axboe38d77ca2007-03-21 14:20:20 +0100889 if (td_read(td) && td->io_bytes[DDIR_READ]) {
890 if (td->rw_end_set[DDIR_READ])
891 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
892 else
893 elapsed = utime_since_now(&td->start);
894
895 runtime[DDIR_READ] += elapsed;
896 }
897 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
898 if (td->rw_end_set[DDIR_WRITE])
899 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
900 else
901 elapsed = utime_since_now(&td->start);
902
903 runtime[DDIR_WRITE] += elapsed;
904 }
Jens Axboe413dd452007-02-23 09:26:09 +0100905
Jens Axboeebac4652005-12-08 15:25:21 +0100906 if (td->error || td->terminate)
907 break;
908
Shawn Lewise84c73a2007-08-02 22:19:32 +0200909 if (!td->o.do_verify ||
910 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200911 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100912 continue;
913
Jens Axboea978ba62007-03-08 14:29:03 +0100914 if (clear_io_state(td))
915 break;
916
Jens Axboe02bcaa82006-11-24 10:42:00 +0100917 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100918
919 do_verify(td);
920
Jens Axboe69008992006-11-24 13:12:56 +0100921 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100922
923 if (td->error || td->terminate)
924 break;
925 }
926
Jens Axboe36dff962006-11-24 13:29:20 +0100927 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200928 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
929 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100930 td->ts.total_run_time = mtime_since_now(&td->epoch);
931 td->ts.io_bytes[0] = td->io_bytes[0];
932 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100933
Jens Axboe756867b2007-03-06 15:19:24 +0100934 if (td->ts.bw_log)
935 finish_log(td, td->ts.bw_log, "bw");
936 if (td->ts.slat_log)
937 finish_log(td, td->ts.slat_log, "slat");
938 if (td->ts.clat_log)
939 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100940 if (td->o.exec_postrun) {
941 if (system(td->o.exec_postrun) < 0)
942 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100943 }
Jens Axboeebac4652005-12-08 15:25:21 +0100944
945 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100946 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100947
948err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100949 if (td->error)
950 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200951 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200952 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100953 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +0200954
955 /*
956 * do this very late, it will log file closing as well
957 */
958 if (td->o.write_iolog_file)
959 write_iolog_close(td);
960
Jens Axboed23bb322007-03-23 15:57:56 +0100961 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100962 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100963 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100964}
965
Jens Axboe906c8d72006-06-13 09:37:56 +0200966/*
967 * We cannot pass the td data into a forked process, so attach the td and
968 * pass it to the thread worker.
969 */
Jens Axboea6418142007-02-17 04:47:18 +0100970static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100971{
972 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100973 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100974
975 data = shmat(shmid, NULL, 0);
976 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100977 int __err = errno;
978
Jens Axboeebac4652005-12-08 15:25:21 +0100979 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100980 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100981 }
982
983 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100984 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100985 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100986 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100987}
988
Jens Axboe906c8d72006-06-13 09:37:56 +0200989/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200990 * Run over the job map and reap the threads that have exited, if any.
991 */
Jens Axboeebac4652005-12-08 15:25:21 +0100992static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
993{
Jens Axboe34572e22006-10-20 09:33:18 +0200994 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +0200995 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100996
997 /*
998 * reap exited threads (TD_EXITED -> TD_REAPED)
999 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001000 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001001 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001002 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001003
Jens Axboe84585002006-10-19 20:26:22 +02001004 /*
1005 * ->io_ops is NULL for a thread that has closed its
1006 * io engine
1007 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001008 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001009 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001010 else
1011 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001012
Jens Axboea2f77c92007-02-22 11:53:00 +01001013 if (!td->pid || td->runstate == TD_REAPED)
1014 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001015 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001016 if (td->runstate == TD_EXITED) {
1017 td_set_runstate(td, TD_REAPED);
1018 goto reaped;
1019 }
1020 continue;
1021 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001022
1023 flags = WNOHANG;
1024 if (td->runstate == TD_EXITED)
1025 flags = 0;
1026
1027 /*
1028 * check if someone quit or got killed in an unusual way
1029 */
1030 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001031 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001032 if (errno == ECHILD) {
1033 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
1034 td_set_runstate(td, TD_REAPED);
1035 goto reaped;
1036 }
1037 perror("waitpid");
1038 } else if (ret == td->pid) {
1039 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001040 int sig = WTERMSIG(status);
1041
Jens Axboed9244942007-03-05 12:32:32 +01001042 if (sig != SIGQUIT)
1043 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001044 td_set_runstate(td, TD_REAPED);
1045 goto reaped;
1046 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001047 if (WIFEXITED(status)) {
1048 if (WEXITSTATUS(status) && !td->error)
1049 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001050
Jens Axboea2f77c92007-02-22 11:53:00 +01001051 td_set_runstate(td, TD_REAPED);
1052 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001053 }
1054 }
Jens Axboeebac4652005-12-08 15:25:21 +01001055
Jens Axboea2f77c92007-02-22 11:53:00 +01001056 /*
1057 * thread is not dead, continue
1058 */
gurudas paie48676b2007-04-11 12:44:27 +02001059 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001060 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001061reaped:
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001062 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001063 long ret;
1064
1065 if (pthread_join(td->thread, (void *) &ret))
1066 perror("pthread_join");
1067 }
1068
Jens Axboeebac4652005-12-08 15:25:21 +01001069 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001070 (*m_rate) -= td->o.ratemin;
1071 (*t_rate) -= td->o.rate;
gurudas paie48676b2007-04-11 12:44:27 +02001072 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001073
1074 if (td->error)
1075 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +01001076 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001077
Jens Axboe1f809d12007-10-25 18:34:02 +02001078 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001079 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001080}
1081
Jens Axboe906c8d72006-06-13 09:37:56 +02001082/*
1083 * Main function for kicking off and reaping jobs, as needed.
1084 */
Jens Axboeebac4652005-12-08 15:25:21 +01001085static void run_threads(void)
1086{
Jens Axboeebac4652005-12-08 15:25:21 +01001087 struct thread_data *td;
1088 unsigned long spent;
1089 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001090
Jens Axboe2f9ade32006-10-20 11:25:52 +02001091 if (fio_pin_memory())
1092 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001093
Jens Axboec6ae0a52006-06-12 11:04:44 +02001094 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001095 printf("Starting ");
1096 if (nr_thread)
1097 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1098 if (nr_process) {
1099 if (nr_thread)
1100 printf(" and ");
1101 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1102 }
1103 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001104 fflush(stdout);
1105 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001106
Jens Axboe4efa9702006-05-31 11:56:49 +02001107 signal(SIGINT, sig_handler);
1108 signal(SIGALRM, sig_handler);
1109
Jens Axboeebac4652005-12-08 15:25:21 +01001110 todo = thread_number;
1111 nr_running = 0;
1112 nr_started = 0;
1113 m_rate = t_rate = 0;
1114
Jens Axboe34572e22006-10-20 09:33:18 +02001115 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001116 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001117
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001118 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001119 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001120 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001121 }
Jens Axboeebac4652005-12-08 15:25:21 +01001122
1123 /*
1124 * do file setup here so it happens sequentially,
1125 * we don't want X number of threads getting their
1126 * client data interspersed on disk
1127 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001128 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001129 exit_value++;
1130 if (td->error)
1131 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001132 td_set_runstate(td, TD_REAPED);
1133 todo--;
1134 }
Jens Axboe380cf262007-01-11 14:01:27 +01001135
1136 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001137 }
1138
Jens Axboea2f77c92007-02-22 11:53:00 +01001139 set_genesis_time();
1140
Jens Axboeebac4652005-12-08 15:25:21 +01001141 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001142 struct thread_data *map[MAX_JOBS];
1143 struct timeval this_start;
1144 int this_jobs = 0, left;
1145
Jens Axboeebac4652005-12-08 15:25:21 +01001146 /*
1147 * create threads (TD_NOT_CREATED -> TD_CREATED)
1148 */
Jens Axboe34572e22006-10-20 09:33:18 +02001149 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001150 if (td->runstate != TD_NOT_CREATED)
1151 continue;
1152
1153 /*
1154 * never got a chance to start, killed by other
1155 * thread for some reason
1156 */
1157 if (td->terminate) {
1158 todo--;
1159 continue;
1160 }
1161
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001162 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001163 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001164
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001165 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001166 continue;
1167 }
1168
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001169 if (td->o.stonewall && (nr_started || nr_running))
Jens Axboeebac4652005-12-08 15:25:21 +01001170 break;
1171
Jens Axboe75154842006-06-01 13:56:09 +02001172 /*
1173 * Set state to created. Thread will transition
1174 * to TD_INITIALIZED when it's done setting up.
1175 */
Jens Axboeebac4652005-12-08 15:25:21 +01001176 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001177 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001178 nr_started++;
1179
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001180 if (td->o.use_thread) {
Jens Axboeebac4652005-12-08 15:25:21 +01001181 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1182 perror("thread_create");
1183 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001184 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001185 }
1186 } else {
Jens Axboe07739b52007-03-08 20:25:46 +01001187 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001188 int ret = fork_main(shm_id, i);
1189
1190 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001191 }
1192 }
Jens Axboe07739b52007-03-08 20:25:46 +01001193 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001194 }
1195
1196 /*
Jens Axboe75154842006-06-01 13:56:09 +02001197 * Wait for the started threads to transition to
1198 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001199 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001200 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001201 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001202 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001203 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1204 break;
1205
1206 usleep(100000);
1207
1208 for (i = 0; i < this_jobs; i++) {
1209 td = map[i];
1210 if (!td)
1211 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001212 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001213 map[i] = NULL;
1214 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001215 } else if (td->runstate >= TD_EXITED) {
1216 map[i] = NULL;
1217 left--;
1218 todo--;
1219 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001220 }
1221 }
1222 }
1223
1224 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001225 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001226 for (i = 0; i < this_jobs; i++) {
1227 td = map[i];
1228 if (!td)
1229 continue;
1230 kill(td->pid, SIGTERM);
1231 }
1232 break;
1233 }
1234
1235 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001236 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001237 */
Jens Axboe34572e22006-10-20 09:33:18 +02001238 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001239 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001240 continue;
1241
1242 td_set_runstate(td, TD_RUNNING);
1243 nr_running++;
1244 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001245 m_rate += td->o.ratemin;
1246 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001247 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001248 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001249 }
1250
1251 reap_threads(&nr_running, &t_rate, &m_rate);
1252
1253 if (todo)
1254 usleep(100000);
1255 }
1256
1257 while (nr_running) {
1258 reap_threads(&nr_running, &t_rate, &m_rate);
1259 usleep(10000);
1260 }
1261
1262 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001263 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001264}
1265
Jens Axboeebac4652005-12-08 15:25:21 +01001266int main(int argc, char *argv[])
1267{
Jens Axboe29d610e2007-02-06 13:25:33 +01001268 long ps;
1269
Jens Axboedbe11252007-02-11 00:19:51 +01001270 /*
1271 * We need locale for number printing, if it isn't set then just
1272 * go with the US format.
1273 */
1274 if (!getenv("LC_NUMERIC"))
1275 setlocale(LC_NUMERIC, "en_US");
1276
Jens Axboeebac4652005-12-08 15:25:21 +01001277 if (parse_options(argc, argv))
1278 return 1;
1279
Jens Axboe4b472fa2007-04-04 11:04:34 +02001280 if (!thread_number)
1281 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001282
Jens Axboe29d610e2007-02-06 13:25:33 +01001283 ps = sysconf(_SC_PAGESIZE);
1284 if (ps < 0) {
1285 log_err("Failed to get page size\n");
1286 return 1;
1287 }
1288
Jens Axboecfc99db2007-03-14 10:34:47 +01001289 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001290 page_mask = ps - 1;
1291
Jens Axboebb3884d2007-01-17 17:23:11 +11001292 if (write_bw_log) {
1293 setup_log(&agg_io_log[DDIR_READ]);
1294 setup_log(&agg_io_log[DDIR_WRITE]);
1295 }
1296
Jens Axboe07739b52007-03-08 20:25:46 +01001297 startup_sem = fio_sem_init(0);
1298
Jens Axboea2f77c92007-02-22 11:53:00 +01001299 set_genesis_time();
1300
Jens Axboeebac4652005-12-08 15:25:21 +01001301 disk_util_timer_arm();
1302
1303 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001304
Jens Axboebb3884d2007-01-17 17:23:11 +11001305 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001306 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001307 if (write_bw_log) {
1308 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1309 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1310 }
1311 }
Jens Axboeebac4652005-12-08 15:25:21 +01001312
Jens Axboe07739b52007-03-08 20:25:46 +01001313 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001314 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001315}