blob: 04a06bac1bee010b82866de1ade9ffd5178f3d7f [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{
Jens Axboebd6f78b2008-02-01 20:27:52 +010063 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", td->pid, td->runstate,
64 runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010065 td->runstate = runstate;
66}
67
Jens Axboe390c40e2007-03-05 12:35:29 +010068static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010069{
Jens Axboe34572e22006-10-20 09:33:18 +020070 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010071 int i;
72
Jens Axboe34572e22006-10-20 09:33:18 +020073 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010074 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboeee56ad52008-02-01 10:30:20 +010075 dprint(FD_PROCESS, "setting terminate on %d\n",td->pid);
Jens Axboe7a93ab12007-04-18 12:25:41 +020076 /*
77 * if the thread is running, just let it exit
78 */
79 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010080 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010081 td->terminate = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010082 td->o.start_delay = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010083 }
84 }
85}
86
87static void sig_handler(int sig)
88{
89 switch (sig) {
90 case SIGALRM:
91 update_io_ticks();
92 disk_util_timer_arm();
93 print_thread_status();
94 break;
95 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010096 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010097 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +010098 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +010099 break;
100 }
101}
102
Jens Axboe906c8d72006-06-13 09:37:56 +0200103/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200104 * Check if we are above the minimum rate given.
105 */
Jens Axboeebac4652005-12-08 15:25:21 +0100106static int check_min_rate(struct thread_data *td, struct timeval *now)
107{
Jens Axboe09042002007-02-23 10:56:22 +0100108 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100109 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100110 unsigned long spent;
111 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100112
113 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100114 * No minimum rate set, always ok
115 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100116 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100117 return 0;
118
119 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100120 * allow a 2 second settle period in the beginning
121 */
122 if (mtime_since(&td->start, now) < 2000)
123 return 0;
124
Jens Axboe4e991c22007-03-15 11:41:11 +0100125 if (td_read(td)) {
126 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100127 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100128 }
129 if (td_write(td)) {
130 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100131 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100132 }
Jens Axboe09042002007-02-23 10:56:22 +0100133
Jens Axboeebac4652005-12-08 15:25:21 +0100134 /*
135 * if rate blocks is set, sample is running
136 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100137 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100138 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100139 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100140 return 0;
141
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100142 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100143 /*
144 * check bandwidth specified rate
145 */
146 if (bytes < td->rate_bytes) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100147 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100148 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100149 } else {
150 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100151 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
152 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 +0100153 return 1;
154 }
155 }
156 } else {
157 /*
158 * checks iops specified rate
159 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100160 if (iops < td->o.rate_iops) {
161 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100162 return 1;
163 } else {
164 rate = (iops - td->rate_blocks) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100165 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
166 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 +0100167 }
Jens Axboe413dd452007-02-23 09:26:09 +0100168 }
Jens Axboeebac4652005-12-08 15:25:21 +0100169 }
170 }
171
Jens Axboe09042002007-02-23 10:56:22 +0100172 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100173 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100174 memcpy(&td->lastrate, now, sizeof(*now));
175 return 0;
176}
177
178static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
179{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100180 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100181 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100182 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100183 return 1;
184
185 return 0;
186}
187
Jens Axboe906c8d72006-06-13 09:37:56 +0200188/*
189 * When job exits, we can cancel the in-flight IO if we are using async
190 * io. Attempt to do so.
191 */
Jens Axboeebac4652005-12-08 15:25:21 +0100192static void cleanup_pending_aio(struct thread_data *td)
193{
Jens Axboeebac4652005-12-08 15:25:21 +0100194 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100195 struct io_u *io_u;
196 int r;
197
198 /*
199 * get immediately available events, if any
200 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100201 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100202 if (r < 0)
203 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100204
205 /*
206 * now cancel remaining active events
207 */
Jens Axboe2866c822006-10-09 15:57:48 +0200208 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100209 list_for_each_safe(entry, n, &td->io_u_busylist) {
210 io_u = list_entry(entry, struct io_u, list);
211
Jens Axboe0c6e7512007-02-22 11:19:39 +0100212 /*
213 * if the io_u isn't in flight, then that generally
214 * means someone leaked an io_u. complain but fix
215 * it up, so we don't stall here.
216 */
217 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
218 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100219 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100220 } else {
221 r = td->io_ops->cancel(td, io_u);
222 if (!r)
223 put_io_u(td, io_u);
224 }
Jens Axboeebac4652005-12-08 15:25:21 +0100225 }
226 }
227
Jens Axboe97601022007-02-18 12:47:29 +0100228 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100229 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100230}
231
Jens Axboe906c8d72006-06-13 09:37:56 +0200232/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200233 * Helper to handle the final sync of a file. Works just like the normal
234 * io path, just does everything sync.
235 */
236static int fio_io_sync(struct thread_data *td, struct fio_file *f)
237{
238 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200239 int ret;
240
241 if (!io_u)
242 return 1;
243
244 io_u->ddir = DDIR_SYNC;
245 io_u->file = f;
246
247 if (td_io_prep(td, io_u)) {
248 put_io_u(td, io_u);
249 return 1;
250 }
251
Jens Axboe755200a2007-02-19 13:08:12 +0100252requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200253 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100254 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100255 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200256 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200257 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100258 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100259 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100260 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100261 } else if (ret == FIO_Q_COMPLETED) {
262 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100263 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100264 return 1;
265 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200266
Jens Axboed7762cf2007-02-23 12:34:57 +0100267 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100268 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100269 } else if (ret == FIO_Q_BUSY) {
270 if (td_io_commit(td))
271 return 1;
272 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200273 }
274
275 return 0;
276}
277
278/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100279 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200280 * reads the blocks back in, and checks the crc/md5 of the data.
281 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100282static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100283{
Jens Axboe53cdc682006-10-18 11:50:58 +0200284 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100285 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100286 int ret, min_events;
287 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200288
289 /*
290 * sync io first and invalidate cache, to make sure we really
291 * read from disk.
292 */
293 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100294 if (!(f->flags & FIO_FILE_OPEN))
295 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100296 if (fio_io_sync(td, f))
297 break;
298 if (file_invalidate_cache(td, f))
299 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200300 }
Jens Axboeebac4652005-12-08 15:25:21 +0100301
Jens Axboeb2fdda42007-02-20 20:52:51 +0100302 if (td->error)
303 return;
304
Jens Axboeebac4652005-12-08 15:25:21 +0100305 td_set_runstate(td, TD_VERIFYING);
306
Jens Axboe36167d82007-02-18 05:41:31 +0100307 io_u = NULL;
308 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100309 int ret2;
310
Jens Axboeebac4652005-12-08 15:25:21 +0100311 io_u = __get_io_u(td);
312 if (!io_u)
313 break;
314
Jens Axboe069c2912007-02-21 23:02:39 +0100315 if (runtime_exceeded(td, &io_u->start_time)) {
316 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200317 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200318 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100319 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200320
Jens Axboe069c2912007-02-21 23:02:39 +0100321 if (get_next_verify(td, io_u)) {
322 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100323 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100324 }
Jens Axboeebac4652005-12-08 15:25:21 +0100325
Jens Axboe069c2912007-02-21 23:02:39 +0100326 if (td_io_prep(td, io_u)) {
327 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100328 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100329 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100330
331 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100332
Jens Axboe11786802007-03-05 18:33:22 +0100333 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100334 switch (ret) {
335 case FIO_Q_COMPLETED:
336 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100337 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100338 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100339 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200340 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100341
Jens Axboe9e9d1642007-03-12 09:37:46 +0100342 /*
343 * zero read, fail
344 */
345 if (!bytes) {
346 td_verror(td, ENODATA, "full resid");
347 put_io_u(td, io_u);
348 break;
349 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200350
Jens Axboe36167d82007-02-18 05:41:31 +0100351 io_u->xfer_buflen = io_u->resid;
352 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200353 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200354 f->last_completed_pos = io_u->offset;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200355
Jens Axboe30061b92007-04-17 13:31:34 +0200356 td->ts.short_io_u[io_u->ddir]++;
357
Jens Axboed460eb32007-04-16 21:39:33 +0200358 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200359 goto sync_done;
360
Jens Axboe11786802007-03-05 18:33:22 +0100361 requeue_io_u(td, &io_u);
362 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200363sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100364 ret = io_u_sync_complete(td, io_u);
365 if (ret < 0)
366 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100367 }
Jens Axboe36167d82007-02-18 05:41:31 +0100368 continue;
369 case FIO_Q_QUEUED:
370 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100371 case FIO_Q_BUSY:
372 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100373 ret2 = td_io_commit(td);
374 if (ret2 < 0)
375 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100376 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100377 default:
378 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100379 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100380 break;
381 }
382
Jens Axboe99784632007-02-19 10:06:17 +0100383 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100384 break;
385
Jens Axboe3af6ef32007-02-18 06:57:43 +0100386 /*
387 * if we can queue more, do so. but check if there are
388 * completed io_u's first.
389 */
Jens Axboe97601022007-02-18 12:47:29 +0100390 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100391 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100392 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100393
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100394 if (td->cur_depth > td->o.iodepth_low)
395 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100396 }
397
Jens Axboe3af6ef32007-02-18 06:57:43 +0100398 /*
399 * Reap required number of io units, if any, and do the
400 * verification on them through the callback handler
401 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100402 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100403 break;
404 }
405
Jens Axboec01c0392007-02-26 12:43:42 +0100406 if (!td->error) {
407 min_events = td->cur_depth;
408
409 if (min_events)
410 ret = io_u_queued_complete(td, min_events);
411 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100412 cleanup_pending_aio(td);
413
414 td_set_runstate(td, TD_RUNNING);
415}
416
Jens Axboe32cd46a2006-06-07 13:40:40 +0200417/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200418 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200419 * and reaps them, checking for rate and errors along the way.
420 */
Jens Axboeebac4652005-12-08 15:25:21 +0100421static void do_io(struct thread_data *td)
422{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100423 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100424 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100425 unsigned int i;
426 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100427
Jens Axboe5853e5a2006-06-08 14:41:05 +0200428 td_set_runstate(td, TD_RUNNING);
429
Jens Axboe7bb48f82007-03-27 15:30:28 +0200430 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100431 struct timeval comp_time;
432 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200433 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100434 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100435 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100436
437 if (td->terminate)
438 break;
439
Jens Axboe3d7c3912007-02-19 13:16:12 +0100440 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100441 if (!io_u)
442 break;
443
444 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100445
446 if (runtime_exceeded(td, &s)) {
447 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200448 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100449 break;
450 }
Jens Axboe36167d82007-02-18 05:41:31 +0100451
Jens Axboeb67740d2007-07-26 12:22:30 +0200452 /*
453 * Add verification end_io handler, if asked to verify
454 * a previously written file.
455 */
456 if (td->o.verify != VERIFY_NONE)
457 io_u->end_io = verify_io_u;
458
Jens Axboe11786802007-03-05 18:33:22 +0100459 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100460 switch (ret) {
461 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100462 if (io_u->error)
463 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100464 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100465 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200466 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100467
Jens Axboe9e9d1642007-03-12 09:37:46 +0100468 /*
469 * zero read, fail
470 */
471 if (!bytes) {
472 td_verror(td, ENODATA, "full resid");
473 put_io_u(td, io_u);
474 break;
475 }
476
Jens Axboe36167d82007-02-18 05:41:31 +0100477 io_u->xfer_buflen = io_u->resid;
478 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200479 io_u->offset += bytes;
Jens Axboed460eb32007-04-16 21:39:33 +0200480 f->last_completed_pos = io_u->offset;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200481
Jens Axboe30061b92007-04-17 13:31:34 +0200482 td->ts.short_io_u[io_u->ddir]++;
483
Jens Axboed460eb32007-04-16 21:39:33 +0200484 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200485 goto sync_done;
486
Jens Axboe11786802007-03-05 18:33:22 +0100487 requeue_io_u(td, &io_u);
488 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200489sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100490 fio_gettime(&comp_time, NULL);
491 bytes_done = io_u_sync_complete(td, io_u);
492 if (bytes_done < 0)
493 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100494 }
Jens Axboe36167d82007-02-18 05:41:31 +0100495 break;
496 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100497 /*
498 * if the engine doesn't have a commit hook,
499 * the io_u is really queued. if it does have such
500 * a hook, it has to call io_u_queued() itself.
501 */
502 if (td->io_ops->commit == NULL)
503 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100504 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100505 case FIO_Q_BUSY:
506 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100507 ret2 = td_io_commit(td);
508 if (ret2 < 0)
509 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100510 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100511 default:
512 assert(ret < 0);
513 put_io_u(td, io_u);
514 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100515 }
516
Jens Axboe99784632007-02-19 10:06:17 +0100517 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100518 break;
519
Jens Axboe97601022007-02-18 12:47:29 +0100520 /*
521 * See if we need to complete some commands
522 */
Jens Axboe755200a2007-02-19 13:08:12 +0100523 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100524 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100525 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100526 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100527
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100528 if (td->cur_depth > td->o.iodepth_low)
529 min_evts = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100530 }
531
Jens Axboe97601022007-02-18 12:47:29 +0100532 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100533 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100534 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100535 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100536 }
537
Jens Axboe97601022007-02-18 12:47:29 +0100538 if (!bytes_done)
539 continue;
540
Jens Axboeebac4652005-12-08 15:25:21 +0100541 /*
542 * the rate is batched for now, it should work for batches
543 * of completions except the very first one which may look
544 * a little bursty
545 */
Jens Axboe97601022007-02-18 12:47:29 +0100546 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100547
Jens Axboe413dd452007-02-23 09:26:09 +0100548 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100549
Jens Axboe97601022007-02-18 12:47:29 +0100550 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100551 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100552 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100553 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100554 break;
555 }
556
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100557 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100558 unsigned long long b;
559
560 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100561 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100562 int left;
563
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100564 if (td->o.thinktime_spin)
565 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100566
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100567 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100568 if (left)
569 usec_sleep(td, left);
570 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100571 }
Jens Axboeebac4652005-12-08 15:25:21 +0100572 }
573
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100574 if (td->o.fill_device && td->error == ENOSPC) {
575 td->error = 0;
576 td->terminate = 1;
577 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100578 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100579 struct fio_file *f;
580
Jens Axboec01c0392007-02-26 12:43:42 +0100581 i = td->cur_depth;
582 if (i)
583 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100584
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100585 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200586 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100587
588 for_each_file(td, f, i) {
589 if (!(f->flags & FIO_FILE_OPEN))
590 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200591 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100592 }
Jens Axboe84585002006-10-19 20:26:22 +0200593 }
Jens Axboec01c0392007-02-26 12:43:42 +0100594 } else
595 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100596
597 /*
598 * stop job if we failed doing any IO
599 */
600 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
601 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100602}
603
Jens Axboeebac4652005-12-08 15:25:21 +0100604static void cleanup_io_u(struct thread_data *td)
605{
606 struct list_head *entry, *n;
607 struct io_u *io_u;
608
609 list_for_each_safe(entry, n, &td->io_u_freelist) {
610 io_u = list_entry(entry, struct io_u, list);
611
612 list_del(&io_u->list);
613 free(io_u);
614 }
615
Jens Axboe2f9ade32006-10-20 11:25:52 +0200616 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100617}
618
Jens Axboe6b9cea22006-10-30 17:00:24 +0100619/*
620 * "randomly" fill the buffer contents
621 */
Jens Axboee9459e52007-04-17 15:46:32 +0200622static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100623{
Jens Axboe210f43b2007-04-17 19:52:18 +0200624 long *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100625
Jens Axboee9459e52007-04-17 15:46:32 +0200626 if (!td->o.zero_buffers) {
627 while ((void *) ptr - io_u->buf < max_bs) {
Jens Axboe210f43b2007-04-17 19:52:18 +0200628 *ptr = rand() * GOLDEN_RATIO_PRIME;
Jens Axboee9459e52007-04-17 15:46:32 +0200629 ptr++;
630 }
631 } else
632 memset(ptr, 0, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100633}
634
Jens Axboeebac4652005-12-08 15:25:21 +0100635static int init_io_u(struct thread_data *td)
636{
637 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100638 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100639 int i, max_units;
640 char *p;
641
Jens Axboe2866c822006-10-09 15:57:48 +0200642 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100643 max_units = 1;
644 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100645 max_units = td->o.iodepth;
Jens Axboeebac4652005-12-08 15:25:21 +0100646
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100647 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboec3990642007-07-19 10:17:09 +0200648 td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100649
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100650 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
651 td->orig_buffer_size = (td->orig_buffer_size + td->o.hugepage_size - 1) & ~(td->o.hugepage_size - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100652
Jens Axboec3990642007-07-19 10:17:09 +0200653 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
654 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
655 return 1;
656 }
657
Jens Axboe2f9ade32006-10-20 11:25:52 +0200658 if (allocate_io_mem(td))
659 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100660
Jens Axboeb3f378e2007-07-20 12:39:22 +0200661 if (td->o.odirect)
662 p = ALIGN(td->orig_buffer);
663 else
664 p = td->orig_buffer;
665
Jens Axboeebac4652005-12-08 15:25:21 +0100666 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200667 if (td->terminate)
668 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100669 io_u = malloc(sizeof(*io_u));
670 memset(io_u, 0, sizeof(*io_u));
671 INIT_LIST_HEAD(&io_u->list);
672
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200673 if (!(td->io_ops->flags & FIO_NOIO)) {
674 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200675
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200676 if (td_write(td))
677 fill_io_buf(td, io_u, max_bs);
678 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100679
Jens Axboeb1ff3402006-02-17 11:35:58 +0100680 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100681 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100682 list_add(&io_u->list, &td->io_u_freelist);
683 }
684
Jens Axboe433afcb2007-02-22 10:39:01 +0100685 io_u_init_timeout();
686
Jens Axboeebac4652005-12-08 15:25:21 +0100687 return 0;
688}
689
Jens Axboeda867742006-06-06 10:39:10 -0700690static int switch_ioscheduler(struct thread_data *td)
691{
692 char tmp[256], tmp2[128];
693 FILE *f;
694 int ret;
695
Jens Axboeba0fbe12007-03-09 14:34:23 +0100696 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200697 return 0;
698
Jens Axboeda867742006-06-06 10:39:10 -0700699 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
700
701 f = fopen(tmp, "r+");
702 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200703 if (errno == ENOENT) {
704 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
705 return 0;
706 }
707 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700708 return 1;
709 }
710
711 /*
712 * Set io scheduler.
713 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100714 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700715 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100716 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700717 fclose(f);
718 return 1;
719 }
720
721 rewind(f);
722
723 /*
724 * Read back and check that the selected scheduler is now the default.
725 */
726 ret = fread(tmp, 1, sizeof(tmp), f);
727 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100728 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700729 fclose(f);
730 return 1;
731 }
732
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100733 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700734 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100735 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100736 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700737 fclose(f);
738 return 1;
739 }
740
741 fclose(f);
742 return 0;
743}
744
Jens Axboe492158c2007-05-24 10:32:47 +0200745static int keep_running(struct thread_data *td)
746{
747 unsigned long long io_done;
748
Jens Axboe20e354e2007-07-23 14:36:16 +0200749 if (td->done)
750 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200751 if (td->o.time_based)
752 return 1;
753 if (td->o.loops) {
754 td->o.loops--;
755 return 1;
756 }
757
Jens Axboe48f5abd2007-07-20 13:25:04 +0200758 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200759 if (io_done < td->o.size)
760 return 1;
761
762 return 0;
763}
764
Jens Axboea978ba62007-03-08 14:29:03 +0100765static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100766{
Jens Axboe53cdc682006-10-18 11:50:58 +0200767 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100768 unsigned int i;
769 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100770
Jens Axboe756867b2007-03-06 15:19:24 +0100771 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100772 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100773 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100774 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100775 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100776 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100777
Jens Axboec1324df2007-02-19 19:06:41 +0100778 td->last_was_sync = 0;
779
Jens Axboe2ba1c292008-02-01 13:16:38 +0100780 /*
781 * reset file done count if we are to start over
782 */
783 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200784 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200785
Jens Axboea978ba62007-03-08 14:29:03 +0100786 for_each_file(td, f, i)
787 td_io_close_file(td, f);
788
789 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200790 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200791 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100792 ret = td_io_open_file(td, f);
793 if (ret)
794 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200795 }
Jens Axboea978ba62007-03-08 14:29:03 +0100796
797 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100798}
799
Jens Axboe906c8d72006-06-13 09:37:56 +0200800/*
801 * Entry point for the thread based jobs. The process based jobs end up
802 * here as well, after a little setup.
803 */
Jens Axboeebac4652005-12-08 15:25:21 +0100804static void *thread_main(void *data)
805{
Shawn Lewis10927312007-11-21 09:38:13 +0100806 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100807 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100808 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100809
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100810 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100811 setsid();
812
813 td->pid = getpid();
814
Jens Axboeee56ad52008-02-01 10:30:20 +0100815 dprint(FD_PROCESS, "jobs pid=%d started\n", td->pid);
816
Jens Axboeaea47d42006-05-26 19:27:29 +0200817 INIT_LIST_HEAD(&td->io_u_freelist);
818 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100819 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200820 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200821 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200822 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200823
Jens Axboe75154842006-06-01 13:56:09 +0200824 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe07739b52007-03-08 20:25:46 +0100825 fio_sem_up(startup_sem);
826 fio_sem_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100827
Jens Axboe37f56872007-03-09 12:42:35 +0100828 /*
829 * the ->mutex semaphore is now no longer used, close it to avoid
830 * eating a file descriptor
831 */
832 fio_sem_remove(td->mutex);
833
Jens Axboed84f8d42007-05-16 08:47:46 +0200834 /*
835 * May alter parameters that init_io_u() will use, so we need to
836 * do this first.
837 */
838 if (init_iolog(td))
839 goto err;
840
Jens Axboedb1cd902007-04-26 13:47:07 +0200841 if (init_io_u(td))
842 goto err;
843
Jens Axboe375b2692007-05-22 09:13:02 +0200844 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200845 td_verror(td, errno, "cpu_set_affinity");
846 goto err;
847 }
848
Jens Axboeac684782007-11-08 08:29:07 +0100849 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200850 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
851 td_verror(td, errno, "ioprio_set");
852 goto err;
853 }
854 }
855
856 if (nice(td->o.nice) == -1) {
857 td_verror(td, errno, "nice");
858 goto err;
859 }
860
861 if (td->o.ioscheduler && switch_ioscheduler(td))
862 goto err;
863
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100864 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100865 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100866
867 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100868 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100869
Jens Axboeb5af8292007-03-08 12:43:13 +0100870 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100871 goto err;
872
Jens Axboe68727072007-03-15 20:49:25 +0100873 if (init_random_map(td))
874 goto err;
875
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100876 if (td->o.exec_prerun) {
877 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100878 goto err;
879 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200880
Jens Axboe69008992006-11-24 13:12:56 +0100881 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100882 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100883 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100884
885 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100886 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200887 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100888 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100889 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100890
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100891 if (td->o.ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100892 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100893
Jens Axboea978ba62007-03-08 14:29:03 +0100894 if (clear_state && clear_io_state(td))
895 break;
896
Jens Axboeebac4652005-12-08 15:25:21 +0100897 prune_io_piece_log(td);
898
Jens Axboeba0fbe12007-03-09 14:34:23 +0100899 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100900
Jens Axboea978ba62007-03-08 14:29:03 +0100901 clear_state = 1;
902
Jens Axboe38d77ca2007-03-21 14:20:20 +0100903 if (td_read(td) && td->io_bytes[DDIR_READ]) {
904 if (td->rw_end_set[DDIR_READ])
905 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
906 else
907 elapsed = utime_since_now(&td->start);
908
909 runtime[DDIR_READ] += elapsed;
910 }
911 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
912 if (td->rw_end_set[DDIR_WRITE])
913 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
914 else
915 elapsed = utime_since_now(&td->start);
916
917 runtime[DDIR_WRITE] += elapsed;
918 }
Jens Axboe413dd452007-02-23 09:26:09 +0100919
Jens Axboeebac4652005-12-08 15:25:21 +0100920 if (td->error || td->terminate)
921 break;
922
Shawn Lewise84c73a2007-08-02 22:19:32 +0200923 if (!td->o.do_verify ||
924 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200925 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100926 continue;
927
Jens Axboea978ba62007-03-08 14:29:03 +0100928 if (clear_io_state(td))
929 break;
930
Jens Axboe02bcaa82006-11-24 10:42:00 +0100931 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100932
933 do_verify(td);
934
Jens Axboe69008992006-11-24 13:12:56 +0100935 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100936
937 if (td->error || td->terminate)
938 break;
939 }
940
Jens Axboe36dff962006-11-24 13:29:20 +0100941 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200942 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
943 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100944 td->ts.total_run_time = mtime_since_now(&td->epoch);
945 td->ts.io_bytes[0] = td->io_bytes[0];
946 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100947
Jens Axboe756867b2007-03-06 15:19:24 +0100948 if (td->ts.bw_log)
949 finish_log(td, td->ts.bw_log, "bw");
950 if (td->ts.slat_log)
951 finish_log(td, td->ts.slat_log, "slat");
952 if (td->ts.clat_log)
953 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100954 if (td->o.exec_postrun) {
955 if (system(td->o.exec_postrun) < 0)
956 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100957 }
Jens Axboeebac4652005-12-08 15:25:21 +0100958
959 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100960 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100961
962err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100963 if (td->error)
964 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200965 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200966 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100967 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +0200968
969 /*
970 * do this very late, it will log file closing as well
971 */
972 if (td->o.write_iolog_file)
973 write_iolog_close(td);
974
Jens Axboed23bb322007-03-23 15:57:56 +0100975 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100976 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100977 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100978}
979
Jens Axboe906c8d72006-06-13 09:37:56 +0200980/*
981 * We cannot pass the td data into a forked process, so attach the td and
982 * pass it to the thread worker.
983 */
Jens Axboea6418142007-02-17 04:47:18 +0100984static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100985{
986 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100987 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100988
989 data = shmat(shmid, NULL, 0);
990 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100991 int __err = errno;
992
Jens Axboeebac4652005-12-08 15:25:21 +0100993 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100994 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100995 }
996
997 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100998 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100999 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001000 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001001}
1002
Jens Axboe906c8d72006-06-13 09:37:56 +02001003/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001004 * Run over the job map and reap the threads that have exited, if any.
1005 */
Jens Axboeebac4652005-12-08 15:25:21 +01001006static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1007{
Jens Axboe34572e22006-10-20 09:33:18 +02001008 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001009 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001010
1011 /*
1012 * reap exited threads (TD_EXITED -> TD_REAPED)
1013 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001014 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001015 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001016 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001017
Jens Axboe84585002006-10-19 20:26:22 +02001018 /*
1019 * ->io_ops is NULL for a thread that has closed its
1020 * io engine
1021 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001022 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001023 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001024 else
1025 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001026
Jens Axboea2f77c92007-02-22 11:53:00 +01001027 if (!td->pid || td->runstate == TD_REAPED)
1028 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001029 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001030 if (td->runstate == TD_EXITED) {
1031 td_set_runstate(td, TD_REAPED);
1032 goto reaped;
1033 }
1034 continue;
1035 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001036
1037 flags = WNOHANG;
1038 if (td->runstate == TD_EXITED)
1039 flags = 0;
1040
1041 /*
1042 * check if someone quit or got killed in an unusual way
1043 */
1044 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001045 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001046 if (errno == ECHILD) {
1047 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
1048 td_set_runstate(td, TD_REAPED);
1049 goto reaped;
1050 }
1051 perror("waitpid");
1052 } else if (ret == td->pid) {
1053 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001054 int sig = WTERMSIG(status);
1055
Jens Axboed9244942007-03-05 12:32:32 +01001056 if (sig != SIGQUIT)
1057 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001058 td_set_runstate(td, TD_REAPED);
1059 goto reaped;
1060 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001061 if (WIFEXITED(status)) {
1062 if (WEXITSTATUS(status) && !td->error)
1063 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001064
Jens Axboea2f77c92007-02-22 11:53:00 +01001065 td_set_runstate(td, TD_REAPED);
1066 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001067 }
1068 }
Jens Axboeebac4652005-12-08 15:25:21 +01001069
Jens Axboea2f77c92007-02-22 11:53:00 +01001070 /*
1071 * thread is not dead, continue
1072 */
gurudas paie48676b2007-04-11 12:44:27 +02001073 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001074 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001075reaped:
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001076 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001077 long ret;
1078
Jens Axboeee56ad52008-02-01 10:30:20 +01001079 dprint(FD_PROCESS, "joining tread %d\n", td->pid);
1080 if (pthread_join(td->thread, (void *) &ret)) {
1081 dprint(FD_PROCESS, "join failed %ld\n", ret);
Jens Axboe3707f452007-02-22 12:26:57 +01001082 perror("pthread_join");
Jens Axboeee56ad52008-02-01 10:30:20 +01001083 }
Jens Axboe3707f452007-02-22 12:26:57 +01001084 }
1085
Jens Axboeebac4652005-12-08 15:25:21 +01001086 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001087 (*m_rate) -= td->o.ratemin;
1088 (*t_rate) -= td->o.rate;
gurudas paie48676b2007-04-11 12:44:27 +02001089 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001090
1091 if (td->error)
1092 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +01001093 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001094
Jens Axboe1f809d12007-10-25 18:34:02 +02001095 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001096 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001097}
1098
Jens Axboe906c8d72006-06-13 09:37:56 +02001099/*
1100 * Main function for kicking off and reaping jobs, as needed.
1101 */
Jens Axboeebac4652005-12-08 15:25:21 +01001102static void run_threads(void)
1103{
Jens Axboeebac4652005-12-08 15:25:21 +01001104 struct thread_data *td;
1105 unsigned long spent;
1106 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001107
Jens Axboe2f9ade32006-10-20 11:25:52 +02001108 if (fio_pin_memory())
1109 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001110
Jens Axboec6ae0a52006-06-12 11:04:44 +02001111 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001112 printf("Starting ");
1113 if (nr_thread)
1114 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1115 if (nr_process) {
1116 if (nr_thread)
1117 printf(" and ");
1118 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1119 }
1120 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001121 fflush(stdout);
1122 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001123
Jens Axboe4efa9702006-05-31 11:56:49 +02001124 signal(SIGINT, sig_handler);
1125 signal(SIGALRM, sig_handler);
1126
Jens Axboeebac4652005-12-08 15:25:21 +01001127 todo = thread_number;
1128 nr_running = 0;
1129 nr_started = 0;
1130 m_rate = t_rate = 0;
1131
Jens Axboe34572e22006-10-20 09:33:18 +02001132 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001133 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001134
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001135 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001136 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001137 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001138 }
Jens Axboeebac4652005-12-08 15:25:21 +01001139
1140 /*
1141 * do file setup here so it happens sequentially,
1142 * we don't want X number of threads getting their
1143 * client data interspersed on disk
1144 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001145 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001146 exit_value++;
1147 if (td->error)
1148 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001149 td_set_runstate(td, TD_REAPED);
1150 todo--;
1151 }
Jens Axboe380cf262007-01-11 14:01:27 +01001152
1153 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001154 }
1155
Jens Axboea2f77c92007-02-22 11:53:00 +01001156 set_genesis_time();
1157
Jens Axboeebac4652005-12-08 15:25:21 +01001158 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001159 struct thread_data *map[MAX_JOBS];
1160 struct timeval this_start;
1161 int this_jobs = 0, left;
1162
Jens Axboeebac4652005-12-08 15:25:21 +01001163 /*
1164 * create threads (TD_NOT_CREATED -> TD_CREATED)
1165 */
Jens Axboe34572e22006-10-20 09:33:18 +02001166 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001167 if (td->runstate != TD_NOT_CREATED)
1168 continue;
1169
1170 /*
1171 * never got a chance to start, killed by other
1172 * thread for some reason
1173 */
1174 if (td->terminate) {
1175 todo--;
1176 continue;
1177 }
1178
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001179 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001180 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001181
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001182 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001183 continue;
1184 }
1185
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001186 if (td->o.stonewall && (nr_started || nr_running))
Jens Axboeebac4652005-12-08 15:25:21 +01001187 break;
1188
Jens Axboe75154842006-06-01 13:56:09 +02001189 /*
1190 * Set state to created. Thread will transition
1191 * to TD_INITIALIZED when it's done setting up.
1192 */
Jens Axboeebac4652005-12-08 15:25:21 +01001193 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001194 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001195 nr_started++;
1196
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001197 if (td->o.use_thread) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001198 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001199 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1200 perror("thread_create");
1201 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001202 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001203 }
1204 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001205 dprint(FD_PROCESS, "will fork\n");
Jens Axboe07739b52007-03-08 20:25:46 +01001206 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001207 int ret = fork_main(shm_id, i);
1208
1209 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001210 }
1211 }
Jens Axboe07739b52007-03-08 20:25:46 +01001212 fio_sem_down(startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001213 }
1214
1215 /*
Jens Axboe75154842006-06-01 13:56:09 +02001216 * Wait for the started threads to transition to
1217 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001218 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001219 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001220 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001221 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001222 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1223 break;
1224
1225 usleep(100000);
1226
1227 for (i = 0; i < this_jobs; i++) {
1228 td = map[i];
1229 if (!td)
1230 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001231 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001232 map[i] = NULL;
1233 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001234 } else if (td->runstate >= TD_EXITED) {
1235 map[i] = NULL;
1236 left--;
1237 todo--;
1238 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001239 }
1240 }
1241 }
1242
1243 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001244 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001245 for (i = 0; i < this_jobs; i++) {
1246 td = map[i];
1247 if (!td)
1248 continue;
1249 kill(td->pid, SIGTERM);
1250 }
1251 break;
1252 }
1253
1254 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001255 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001256 */
Jens Axboe34572e22006-10-20 09:33:18 +02001257 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001258 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001259 continue;
1260
1261 td_set_runstate(td, TD_RUNNING);
1262 nr_running++;
1263 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001264 m_rate += td->o.ratemin;
1265 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001266 todo--;
Jens Axboe07739b52007-03-08 20:25:46 +01001267 fio_sem_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001268 }
1269
1270 reap_threads(&nr_running, &t_rate, &m_rate);
1271
1272 if (todo)
1273 usleep(100000);
1274 }
1275
1276 while (nr_running) {
1277 reap_threads(&nr_running, &t_rate, &m_rate);
1278 usleep(10000);
1279 }
1280
1281 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001282 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001283}
1284
Jens Axboeebac4652005-12-08 15:25:21 +01001285int main(int argc, char *argv[])
1286{
Jens Axboe29d610e2007-02-06 13:25:33 +01001287 long ps;
1288
Jens Axboedbe11252007-02-11 00:19:51 +01001289 /*
1290 * We need locale for number printing, if it isn't set then just
1291 * go with the US format.
1292 */
1293 if (!getenv("LC_NUMERIC"))
1294 setlocale(LC_NUMERIC, "en_US");
1295
Jens Axboeebac4652005-12-08 15:25:21 +01001296 if (parse_options(argc, argv))
1297 return 1;
1298
Jens Axboe4b472fa2007-04-04 11:04:34 +02001299 if (!thread_number)
1300 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001301
Jens Axboe29d610e2007-02-06 13:25:33 +01001302 ps = sysconf(_SC_PAGESIZE);
1303 if (ps < 0) {
1304 log_err("Failed to get page size\n");
1305 return 1;
1306 }
1307
Jens Axboecfc99db2007-03-14 10:34:47 +01001308 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001309 page_mask = ps - 1;
1310
Jens Axboebb3884d2007-01-17 17:23:11 +11001311 if (write_bw_log) {
1312 setup_log(&agg_io_log[DDIR_READ]);
1313 setup_log(&agg_io_log[DDIR_WRITE]);
1314 }
1315
Jens Axboe07739b52007-03-08 20:25:46 +01001316 startup_sem = fio_sem_init(0);
1317
Jens Axboea2f77c92007-02-22 11:53:00 +01001318 set_genesis_time();
1319
Jens Axboeebac4652005-12-08 15:25:21 +01001320 disk_util_timer_arm();
1321
1322 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001323
Jens Axboebb3884d2007-01-17 17:23:11 +11001324 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001325 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001326 if (write_bw_log) {
1327 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1328 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1329 }
1330 }
Jens Axboeebac4652005-12-08 15:25:21 +01001331
Jens Axboe07739b52007-03-08 20:25:46 +01001332 fio_sem_remove(startup_sem);
Jens Axboe437c9b72007-02-13 18:20:37 +01001333 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001334}