blob: 1046c03630a7d106241ae33505a3faf634f1b1fd [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboeaae22ca2006-09-05 10:46:22 +02005 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027#include <signal.h>
28#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010029#include <locale.h>
Jens Axboe36167d82007-02-18 05:41:31 +010030#include <assert.h>
Jens Axboeebac4652005-12-08 15:25:21 +010031#include <sys/stat.h>
32#include <sys/wait.h>
33#include <sys/ipc.h>
34#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010035#include <sys/mman.h>
36
37#include "fio.h"
Jens Axboe210f43b2007-04-17 19:52:18 +020038#include "hash.h"
Jens Axboeebac4652005-12-08 15:25:21 +010039
Jens Axboecfc99db2007-03-14 10:34:47 +010040unsigned long page_mask;
41unsigned long page_size;
Jens Axboe29d610e2007-02-06 13:25:33 +010042#define ALIGN(buf) \
43 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010044
45int groupid = 0;
46int thread_number = 0;
Jens Axboe9cedf162007-03-12 11:29:30 +010047int nr_process = 0;
48int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010049int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020050int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010051
Jens Axboecdd18ad2008-02-27 18:58:00 +010052static struct fio_mutex *startup_mutex;
Jens Axboe6ce15a32007-01-12 09:04:41 +010053static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010054static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010055
Jens Axboebb3884d2007-01-17 17:23:11 +110056struct io_log *agg_io_log[2];
57
Jens Axboeebac4652005-12-08 15:25:21 +010058#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020059#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010060
Jens Axboe6ce15a32007-01-12 09:04:41 +010061static inline void td_set_runstate(struct thread_data *td, int runstate)
62{
Jens Axboebd6f78b2008-02-01 20:27:52 +010063 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", td->pid, td->runstate,
64 runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010065 td->runstate = runstate;
66}
67
Jens Axboe390c40e2007-03-05 12:35:29 +010068static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010069{
Jens Axboe34572e22006-10-20 09:33:18 +020070 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010071 int i;
72
Jens Axboe34572e22006-10-20 09:33:18 +020073 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010074 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboeee56ad52008-02-01 10:30:20 +010075 dprint(FD_PROCESS, "setting terminate on %d\n",td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +010076
77 td->terminate = 1;
78 td->o.start_delay = 0;
79
Jens Axboe7a93ab12007-04-18 12:25:41 +020080 /*
81 * if the thread is running, just let it exit
82 */
83 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010084 kill(td->pid, SIGQUIT);
Jens Axboef63f7f32008-03-01 15:25:24 +010085 else {
86 struct ioengine_ops *ops = td->io_ops;
87
88 if (ops && (ops->flags & FIO_SIGQUIT))
89 kill(td->pid, SIGQUIT);
90 }
Jens Axboeebac4652005-12-08 15:25:21 +010091 }
92 }
93}
94
95static void sig_handler(int sig)
96{
97 switch (sig) {
98 case SIGALRM:
99 update_io_ticks();
100 disk_util_timer_arm();
101 print_thread_status();
102 break;
103 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +0100104 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +0100105 fflush(stdout);
Jens Axboe390c40e2007-03-05 12:35:29 +0100106 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100107 break;
108 }
109}
110
Jens Axboe906c8d72006-06-13 09:37:56 +0200111/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200112 * Check if we are above the minimum rate given.
113 */
Jens Axboeebac4652005-12-08 15:25:21 +0100114static int check_min_rate(struct thread_data *td, struct timeval *now)
115{
Jens Axboe09042002007-02-23 10:56:22 +0100116 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100117 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100118 unsigned long spent;
119 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100120
121 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100122 * No minimum rate set, always ok
123 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100124 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100125 return 0;
126
127 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100128 * allow a 2 second settle period in the beginning
129 */
130 if (mtime_since(&td->start, now) < 2000)
131 return 0;
132
Jens Axboe4e991c22007-03-15 11:41:11 +0100133 if (td_read(td)) {
134 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100135 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100136 }
137 if (td_write(td)) {
138 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100139 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100140 }
Jens Axboe09042002007-02-23 10:56:22 +0100141
Jens Axboeebac4652005-12-08 15:25:21 +0100142 /*
143 * if rate blocks is set, sample is running
144 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100145 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100146 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100147 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100148 return 0;
149
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100150 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100151 /*
152 * check bandwidth specified rate
153 */
154 if (bytes < td->rate_bytes) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100155 log_err("%s: min rate %u not met\n", td->o.name, td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100156 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100157 } else {
158 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100159 if (rate < td->o.ratemin || bytes < td->rate_bytes) {
160 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 +0100161 return 1;
162 }
163 }
164 } else {
165 /*
166 * checks iops specified rate
167 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100168 if (iops < td->o.rate_iops) {
169 log_err("%s: min iops rate %u not met\n", td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100170 return 1;
171 } else {
172 rate = (iops - td->rate_blocks) / spent;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100173 if (rate < td->o.rate_iops_min || iops < td->rate_blocks) {
174 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 +0100175 }
Jens Axboe413dd452007-02-23 09:26:09 +0100176 }
Jens Axboeebac4652005-12-08 15:25:21 +0100177 }
178 }
179
Jens Axboe09042002007-02-23 10:56:22 +0100180 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100181 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100182 memcpy(&td->lastrate, now, sizeof(*now));
183 return 0;
184}
185
186static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
187{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100188 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100189 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100190 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100191 return 1;
192
193 return 0;
194}
195
Jens Axboe906c8d72006-06-13 09:37:56 +0200196/*
197 * When job exits, we can cancel the in-flight IO if we are using async
198 * io. Attempt to do so.
199 */
Jens Axboeebac4652005-12-08 15:25:21 +0100200static void cleanup_pending_aio(struct thread_data *td)
201{
Jens Axboeebac4652005-12-08 15:25:21 +0100202 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100203 struct io_u *io_u;
204 int r;
205
206 /*
207 * get immediately available events, if any
208 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100209 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100210 if (r < 0)
211 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100212
213 /*
214 * now cancel remaining active events
215 */
Jens Axboe2866c822006-10-09 15:57:48 +0200216 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100217 list_for_each_safe(entry, n, &td->io_u_busylist) {
218 io_u = list_entry(entry, struct io_u, list);
219
Jens Axboe0c6e7512007-02-22 11:19:39 +0100220 /*
221 * if the io_u isn't in flight, then that generally
222 * means someone leaked an io_u. complain but fix
223 * it up, so we don't stall here.
224 */
225 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
226 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100227 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100228 } else {
229 r = td->io_ops->cancel(td, io_u);
230 if (!r)
231 put_io_u(td, io_u);
232 }
Jens Axboeebac4652005-12-08 15:25:21 +0100233 }
234 }
235
Jens Axboe97601022007-02-18 12:47:29 +0100236 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100237 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100238}
239
Jens Axboe906c8d72006-06-13 09:37:56 +0200240/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200241 * Helper to handle the final sync of a file. Works just like the normal
242 * io path, just does everything sync.
243 */
244static int fio_io_sync(struct thread_data *td, struct fio_file *f)
245{
246 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200247 int ret;
248
249 if (!io_u)
250 return 1;
251
252 io_u->ddir = DDIR_SYNC;
253 io_u->file = f;
254
255 if (td_io_prep(td, io_u)) {
256 put_io_u(td, io_u);
257 return 1;
258 }
259
Jens Axboe755200a2007-02-19 13:08:12 +0100260requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200261 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100262 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100263 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200264 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200265 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100266 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100267 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100268 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100269 } else if (ret == FIO_Q_COMPLETED) {
270 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100271 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100272 return 1;
273 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200274
Jens Axboed7762cf2007-02-23 12:34:57 +0100275 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100276 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100277 } else if (ret == FIO_Q_BUSY) {
278 if (td_io_commit(td))
279 return 1;
280 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200281 }
282
283 return 0;
284}
285
286/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100287 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200288 * reads the blocks back in, and checks the crc/md5 of the data.
289 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100290static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100291{
Jens Axboe53cdc682006-10-18 11:50:58 +0200292 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100293 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100294 int ret, min_events;
295 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200296
297 /*
298 * sync io first and invalidate cache, to make sure we really
299 * read from disk.
300 */
301 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100302 if (!(f->flags & FIO_FILE_OPEN))
303 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100304 if (fio_io_sync(td, f))
305 break;
306 if (file_invalidate_cache(td, f))
307 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200308 }
Jens Axboeebac4652005-12-08 15:25:21 +0100309
Jens Axboeb2fdda42007-02-20 20:52:51 +0100310 if (td->error)
311 return;
312
Jens Axboeebac4652005-12-08 15:25:21 +0100313 td_set_runstate(td, TD_VERIFYING);
314
Jens Axboe36167d82007-02-18 05:41:31 +0100315 io_u = NULL;
316 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100317 int ret2;
318
Jens Axboeebac4652005-12-08 15:25:21 +0100319 io_u = __get_io_u(td);
320 if (!io_u)
321 break;
322
Jens Axboe069c2912007-02-21 23:02:39 +0100323 if (runtime_exceeded(td, &io_u->start_time)) {
324 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200325 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200326 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100327 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200328
Jens Axboe069c2912007-02-21 23:02:39 +0100329 if (get_next_verify(td, io_u)) {
330 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100331 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100332 }
Jens Axboeebac4652005-12-08 15:25:21 +0100333
Jens Axboe069c2912007-02-21 23:02:39 +0100334 if (td_io_prep(td, io_u)) {
335 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100336 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100337 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100338
339 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100340
Jens Axboe11786802007-03-05 18:33:22 +0100341 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100342 switch (ret) {
343 case FIO_Q_COMPLETED:
344 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100345 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100346 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100347 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200348 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100349
Jens Axboe9e9d1642007-03-12 09:37:46 +0100350 /*
351 * zero read, fail
352 */
353 if (!bytes) {
354 td_verror(td, ENODATA, "full resid");
355 put_io_u(td, io_u);
356 break;
357 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200358
Jens Axboe36167d82007-02-18 05:41:31 +0100359 io_u->xfer_buflen = io_u->resid;
360 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200361 io_u->offset += bytes;
362
Jens Axboe30061b92007-04-17 13:31:34 +0200363 td->ts.short_io_u[io_u->ddir]++;
364
Jens Axboed460eb32007-04-16 21:39:33 +0200365 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200366 goto sync_done;
367
Jens Axboe11786802007-03-05 18:33:22 +0100368 requeue_io_u(td, &io_u);
369 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200370sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100371 ret = io_u_sync_complete(td, io_u);
372 if (ret < 0)
373 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100374 }
Jens Axboe36167d82007-02-18 05:41:31 +0100375 continue;
376 case FIO_Q_QUEUED:
377 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100378 case FIO_Q_BUSY:
379 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100380 ret2 = td_io_commit(td);
381 if (ret2 < 0)
382 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100383 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100384 default:
385 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100386 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100387 break;
388 }
389
Jens Axboe99784632007-02-19 10:06:17 +0100390 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100391 break;
392
Jens Axboe3af6ef32007-02-18 06:57:43 +0100393 /*
394 * if we can queue more, do so. but check if there are
395 * completed io_u's first.
396 */
Jens Axboe97601022007-02-18 12:47:29 +0100397 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100398 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100399 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100400
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100401 if (td->cur_depth > td->o.iodepth_low)
402 min_events = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100403 }
404
Jens Axboe3af6ef32007-02-18 06:57:43 +0100405 /*
406 * Reap required number of io units, if any, and do the
407 * verification on them through the callback handler
408 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100409 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100410 break;
411 }
412
Jens Axboec01c0392007-02-26 12:43:42 +0100413 if (!td->error) {
414 min_events = td->cur_depth;
415
416 if (min_events)
417 ret = io_u_queued_complete(td, min_events);
418 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100419 cleanup_pending_aio(td);
420
421 td_set_runstate(td, TD_RUNNING);
422}
423
Jens Axboe32cd46a2006-06-07 13:40:40 +0200424/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200425 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200426 * and reaps them, checking for rate and errors along the way.
427 */
Jens Axboeebac4652005-12-08 15:25:21 +0100428static void do_io(struct thread_data *td)
429{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100430 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100431 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100432 unsigned int i;
433 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100434
Jens Axboe5853e5a2006-06-08 14:41:05 +0200435 td_set_runstate(td, TD_RUNNING);
436
Jens Axboe7bb48f82007-03-27 15:30:28 +0200437 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100438 struct timeval comp_time;
439 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200440 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100441 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100442 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100443
444 if (td->terminate)
445 break;
446
Jens Axboe3d7c3912007-02-19 13:16:12 +0100447 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100448 if (!io_u)
449 break;
450
451 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100452
453 if (runtime_exceeded(td, &s)) {
454 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200455 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100456 break;
457 }
Jens Axboe36167d82007-02-18 05:41:31 +0100458
Jens Axboeb67740d2007-07-26 12:22:30 +0200459 /*
460 * Add verification end_io handler, if asked to verify
461 * a previously written file.
462 */
463 if (td->o.verify != VERIFY_NONE)
464 io_u->end_io = verify_io_u;
465
Jens Axboe11786802007-03-05 18:33:22 +0100466 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100467 switch (ret) {
468 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100469 if (io_u->error)
470 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100471 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100472 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200473 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100474
Jens Axboe9e9d1642007-03-12 09:37:46 +0100475 /*
476 * zero read, fail
477 */
478 if (!bytes) {
479 td_verror(td, ENODATA, "full resid");
480 put_io_u(td, io_u);
481 break;
482 }
483
Jens Axboe36167d82007-02-18 05:41:31 +0100484 io_u->xfer_buflen = io_u->resid;
485 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200486 io_u->offset += bytes;
487
Jens Axboe30061b92007-04-17 13:31:34 +0200488 td->ts.short_io_u[io_u->ddir]++;
489
Jens Axboed460eb32007-04-16 21:39:33 +0200490 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200491 goto sync_done;
492
Jens Axboe11786802007-03-05 18:33:22 +0100493 requeue_io_u(td, &io_u);
494 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200495sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100496 fio_gettime(&comp_time, NULL);
497 bytes_done = io_u_sync_complete(td, io_u);
498 if (bytes_done < 0)
499 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100500 }
Jens Axboe36167d82007-02-18 05:41:31 +0100501 break;
502 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100503 /*
504 * if the engine doesn't have a commit hook,
505 * the io_u is really queued. if it does have such
506 * a hook, it has to call io_u_queued() itself.
507 */
508 if (td->io_ops->commit == NULL)
509 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100510 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100511 case FIO_Q_BUSY:
512 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100513 ret2 = td_io_commit(td);
514 if (ret2 < 0)
515 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100516 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100517 default:
518 assert(ret < 0);
519 put_io_u(td, io_u);
520 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100521 }
522
Jens Axboe99784632007-02-19 10:06:17 +0100523 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100524 break;
525
Jens Axboe97601022007-02-18 12:47:29 +0100526 /*
527 * See if we need to complete some commands
528 */
Jens Axboe755200a2007-02-19 13:08:12 +0100529 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100530 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100531 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100532 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100533
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100534 if (td->cur_depth > td->o.iodepth_low)
535 min_evts = td->cur_depth - td->o.iodepth_low;
Jens Axboee916b392007-02-20 14:37:26 +0100536 }
537
Jens Axboe97601022007-02-18 12:47:29 +0100538 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100539 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100540 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100541 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100542 }
543
Jens Axboe97601022007-02-18 12:47:29 +0100544 if (!bytes_done)
545 continue;
546
Jens Axboeebac4652005-12-08 15:25:21 +0100547 /*
548 * the rate is batched for now, it should work for batches
549 * of completions except the very first one which may look
550 * a little bursty
551 */
Jens Axboe97601022007-02-18 12:47:29 +0100552 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100553
Jens Axboe413dd452007-02-23 09:26:09 +0100554 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100555
Jens Axboe97601022007-02-18 12:47:29 +0100556 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100557 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100558 terminate_threads(td->groupid);
Jens Axboee1161c32007-02-22 19:36:48 +0100559 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100560 break;
561 }
562
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100563 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100564 unsigned long long b;
565
566 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100567 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100568 int left;
569
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100570 if (td->o.thinktime_spin)
571 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100572
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100573 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100574 if (left)
575 usec_sleep(td, left);
576 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100577 }
Jens Axboeebac4652005-12-08 15:25:21 +0100578 }
579
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100580 if (td->o.fill_device && td->error == ENOSPC) {
581 td->error = 0;
582 td->terminate = 1;
583 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100584 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100585 struct fio_file *f;
586
Jens Axboec01c0392007-02-26 12:43:42 +0100587 i = td->cur_depth;
588 if (i)
589 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100590
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100591 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200592 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100593
594 for_each_file(td, f, i) {
595 if (!(f->flags & FIO_FILE_OPEN))
596 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200597 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100598 }
Jens Axboe84585002006-10-19 20:26:22 +0200599 }
Jens Axboec01c0392007-02-26 12:43:42 +0100600 } else
601 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100602
603 /*
604 * stop job if we failed doing any IO
605 */
606 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
607 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100608}
609
Jens Axboeebac4652005-12-08 15:25:21 +0100610static void cleanup_io_u(struct thread_data *td)
611{
612 struct list_head *entry, *n;
613 struct io_u *io_u;
614
615 list_for_each_safe(entry, n, &td->io_u_freelist) {
616 io_u = list_entry(entry, struct io_u, list);
617
618 list_del(&io_u->list);
619 free(io_u);
620 }
621
Jens Axboe2f9ade32006-10-20 11:25:52 +0200622 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100623}
624
Jens Axboe6b9cea22006-10-30 17:00:24 +0100625/*
626 * "randomly" fill the buffer contents
627 */
Jens Axboee9459e52007-04-17 15:46:32 +0200628static void fill_io_buf(struct thread_data *td, struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100629{
Jens Axboe210f43b2007-04-17 19:52:18 +0200630 long *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100631
Jens Axboee9459e52007-04-17 15:46:32 +0200632 if (!td->o.zero_buffers) {
633 while ((void *) ptr - io_u->buf < max_bs) {
Jens Axboe210f43b2007-04-17 19:52:18 +0200634 *ptr = rand() * GOLDEN_RATIO_PRIME;
Jens Axboee9459e52007-04-17 15:46:32 +0200635 ptr++;
636 }
637 } else
638 memset(ptr, 0, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100639}
640
Jens Axboeebac4652005-12-08 15:25:21 +0100641static int init_io_u(struct thread_data *td)
642{
643 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100644 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100645 int i, max_units;
646 char *p;
647
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100648 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100649 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboec3990642007-07-19 10:17:09 +0200650 td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100651
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100652 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE)
653 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 +0100654
Jens Axboec3990642007-07-19 10:17:09 +0200655 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
656 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
657 return 1;
658 }
659
Jens Axboe2f9ade32006-10-20 11:25:52 +0200660 if (allocate_io_mem(td))
661 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100662
Jens Axboeb3f378e2007-07-20 12:39:22 +0200663 if (td->o.odirect)
664 p = ALIGN(td->orig_buffer);
665 else
666 p = td->orig_buffer;
667
Jens Axboeebac4652005-12-08 15:25:21 +0100668 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200669 if (td->terminate)
670 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100671 io_u = malloc(sizeof(*io_u));
672 memset(io_u, 0, sizeof(*io_u));
673 INIT_LIST_HEAD(&io_u->list);
674
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200675 if (!(td->io_ops->flags & FIO_NOIO)) {
676 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200677
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200678 if (td_write(td))
679 fill_io_buf(td, io_u, max_bs);
680 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100681
Jens Axboeb1ff3402006-02-17 11:35:58 +0100682 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100683 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100684 list_add(&io_u->list, &td->io_u_freelist);
685 }
686
Jens Axboe433afcb2007-02-22 10:39:01 +0100687 io_u_init_timeout();
688
Jens Axboeebac4652005-12-08 15:25:21 +0100689 return 0;
690}
691
Jens Axboeda867742006-06-06 10:39:10 -0700692static int switch_ioscheduler(struct thread_data *td)
693{
694 char tmp[256], tmp2[128];
695 FILE *f;
696 int ret;
697
Jens Axboeba0fbe12007-03-09 14:34:23 +0100698 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200699 return 0;
700
Jens Axboeda867742006-06-06 10:39:10 -0700701 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
702
703 f = fopen(tmp, "r+");
704 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200705 if (errno == ENOENT) {
706 log_err("fio: os or kernel doesn't support IO scheduler switching\n");
707 return 0;
708 }
709 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700710 return 1;
711 }
712
713 /*
714 * Set io scheduler.
715 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100716 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700717 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100718 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700719 fclose(f);
720 return 1;
721 }
722
723 rewind(f);
724
725 /*
726 * Read back and check that the selected scheduler is now the default.
727 */
728 ret = fread(tmp, 1, sizeof(tmp), f);
729 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100730 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700731 fclose(f);
732 return 1;
733 }
734
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100735 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700736 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100737 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100738 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700739 fclose(f);
740 return 1;
741 }
742
743 fclose(f);
744 return 0;
745}
746
Jens Axboe492158c2007-05-24 10:32:47 +0200747static int keep_running(struct thread_data *td)
748{
749 unsigned long long io_done;
750
Jens Axboe20e354e2007-07-23 14:36:16 +0200751 if (td->done)
752 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200753 if (td->o.time_based)
754 return 1;
755 if (td->o.loops) {
756 td->o.loops--;
757 return 1;
758 }
759
Jens Axboe48f5abd2007-07-20 13:25:04 +0200760 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE] + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200761 if (io_done < td->o.size)
762 return 1;
763
764 return 0;
765}
766
Jens Axboea978ba62007-03-08 14:29:03 +0100767static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100768{
Jens Axboe53cdc682006-10-18 11:50:58 +0200769 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100770 unsigned int i;
771 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100772
Jens Axboe756867b2007-03-06 15:19:24 +0100773 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100774 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100775 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100776 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100777 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100778 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100779
Jens Axboec1324df2007-02-19 19:06:41 +0100780 td->last_was_sync = 0;
781
Jens Axboe2ba1c292008-02-01 13:16:38 +0100782 /*
783 * reset file done count if we are to start over
784 */
785 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200786 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200787
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100788 close_files(td);
Jens Axboea978ba62007-03-08 14:29:03 +0100789
790 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200791 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200792 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100793 ret = td_io_open_file(td, f);
794 if (ret)
795 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200796 }
Jens Axboea978ba62007-03-08 14:29:03 +0100797
798 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100799}
800
Jens Axboe906c8d72006-06-13 09:37:56 +0200801/*
802 * Entry point for the thread based jobs. The process based jobs end up
803 * here as well, after a little setup.
804 */
Jens Axboeebac4652005-12-08 15:25:21 +0100805static void *thread_main(void *data)
806{
Shawn Lewis10927312007-11-21 09:38:13 +0100807 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100808 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100809 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100810
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100811 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100812 setsid();
813
814 td->pid = getpid();
815
Jens Axboeee56ad52008-02-01 10:30:20 +0100816 dprint(FD_PROCESS, "jobs pid=%d started\n", td->pid);
817
Jens Axboeaea47d42006-05-26 19:27:29 +0200818 INIT_LIST_HEAD(&td->io_u_freelist);
819 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100820 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200821 INIT_LIST_HEAD(&td->io_log_list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200822 INIT_LIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200823 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200824
Jens Axboe75154842006-06-01 13:56:09 +0200825 td_set_runstate(td, TD_INITIALIZED);
Jens Axboecdd18ad2008-02-27 18:58:00 +0100826 fio_mutex_up(startup_mutex);
827 fio_mutex_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100828
Jens Axboe37f56872007-03-09 12:42:35 +0100829 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +0100830 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +0100831 * eating a file descriptor
832 */
Jens Axboecdd18ad2008-02-27 18:58:00 +0100833 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +0100834
Jens Axboed84f8d42007-05-16 08:47:46 +0200835 /*
836 * May alter parameters that init_io_u() will use, so we need to
837 * do this first.
838 */
839 if (init_iolog(td))
840 goto err;
841
Jens Axboedb1cd902007-04-26 13:47:07 +0200842 if (init_io_u(td))
843 goto err;
844
Jens Axboe375b2692007-05-22 09:13:02 +0200845 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200846 td_verror(td, errno, "cpu_set_affinity");
847 goto err;
848 }
849
Jens Axboeac684782007-11-08 08:29:07 +0100850 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200851 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
852 td_verror(td, errno, "ioprio_set");
853 goto err;
854 }
855 }
856
857 if (nice(td->o.nice) == -1) {
858 td_verror(td, errno, "nice");
859 goto err;
860 }
861
862 if (td->o.ioscheduler && switch_ioscheduler(td))
863 goto err;
864
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100865 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100866 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100867
868 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100869 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100870
Jens Axboeb5af8292007-03-08 12:43:13 +0100871 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100872 goto err;
873
Jens Axboe68727072007-03-15 20:49:25 +0100874 if (init_random_map(td))
875 goto err;
876
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100877 if (td->o.exec_prerun) {
878 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100879 goto err;
880 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200881
Jens Axboe69008992006-11-24 13:12:56 +0100882 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100883 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100884 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100885
886 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100887 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200888 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100889 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100890 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100891
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100892 if (td->o.ratemin)
Jens Axboe756867b2007-03-06 15:19:24 +0100893 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100894
Jens Axboea978ba62007-03-08 14:29:03 +0100895 if (clear_state && clear_io_state(td))
896 break;
897
Jens Axboeebac4652005-12-08 15:25:21 +0100898 prune_io_piece_log(td);
899
Jens Axboeba0fbe12007-03-09 14:34:23 +0100900 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100901
Jens Axboea978ba62007-03-08 14:29:03 +0100902 clear_state = 1;
903
Jens Axboe38d77ca2007-03-21 14:20:20 +0100904 if (td_read(td) && td->io_bytes[DDIR_READ]) {
905 if (td->rw_end_set[DDIR_READ])
906 elapsed = utime_since(&td->start, &td->rw_end[DDIR_READ]);
907 else
908 elapsed = utime_since_now(&td->start);
909
910 runtime[DDIR_READ] += elapsed;
911 }
912 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
913 if (td->rw_end_set[DDIR_WRITE])
914 elapsed = utime_since(&td->start, &td->rw_end[DDIR_WRITE]);
915 else
916 elapsed = utime_since_now(&td->start);
917
918 runtime[DDIR_WRITE] += elapsed;
919 }
Jens Axboe413dd452007-02-23 09:26:09 +0100920
Jens Axboeebac4652005-12-08 15:25:21 +0100921 if (td->error || td->terminate)
922 break;
923
Shawn Lewise84c73a2007-08-02 22:19:32 +0200924 if (!td->o.do_verify ||
925 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200926 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100927 continue;
928
Jens Axboea978ba62007-03-08 14:29:03 +0100929 if (clear_io_state(td))
930 break;
931
Jens Axboe02bcaa82006-11-24 10:42:00 +0100932 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100933
934 do_verify(td);
935
Jens Axboe69008992006-11-24 13:12:56 +0100936 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100937
938 if (td->error || td->terminate)
939 break;
940 }
941
Jens Axboe36dff962006-11-24 13:29:20 +0100942 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200943 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
944 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100945 td->ts.total_run_time = mtime_since_now(&td->epoch);
946 td->ts.io_bytes[0] = td->io_bytes[0];
947 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100948
Jens Axboe756867b2007-03-06 15:19:24 +0100949 if (td->ts.bw_log)
950 finish_log(td, td->ts.bw_log, "bw");
951 if (td->ts.slat_log)
952 finish_log(td, td->ts.slat_log, "slat");
953 if (td->ts.clat_log)
954 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100955 if (td->o.exec_postrun) {
956 if (system(td->o.exec_postrun) < 0)
957 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100958 }
Jens Axboeebac4652005-12-08 15:25:21 +0100959
960 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100961 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +0100962
963err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100964 if (td->error)
965 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100966 close_and_free_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200967 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100968 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +0200969
970 /*
971 * do this very late, it will log file closing as well
972 */
973 if (td->o.write_iolog_file)
974 write_iolog_close(td);
975
Jens Axboed23bb322007-03-23 15:57:56 +0100976 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100977 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100978 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100979}
980
Jens Axboe906c8d72006-06-13 09:37:56 +0200981/*
982 * We cannot pass the td data into a forked process, so attach the td and
983 * pass it to the thread worker.
984 */
Jens Axboea6418142007-02-17 04:47:18 +0100985static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100986{
987 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100988 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100989
990 data = shmat(shmid, NULL, 0);
991 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100992 int __err = errno;
993
Jens Axboeebac4652005-12-08 15:25:21 +0100994 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100995 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100996 }
997
998 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100999 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001000 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001001 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001002}
1003
Jens Axboe906c8d72006-06-13 09:37:56 +02001004/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001005 * Run over the job map and reap the threads that have exited, if any.
1006 */
Jens Axboeebac4652005-12-08 15:25:21 +01001007static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1008{
Jens Axboe34572e22006-10-20 09:33:18 +02001009 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001010 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001011
1012 /*
1013 * reap exited threads (TD_EXITED -> TD_REAPED)
1014 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001015 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001016 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001017 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001018
Jens Axboe84585002006-10-19 20:26:22 +02001019 /*
1020 * ->io_ops is NULL for a thread that has closed its
1021 * io engine
1022 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001023 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001024 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001025 else
1026 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001027
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001028 if (!td->pid) {
1029 pending++;
1030 continue;
1031 }
1032 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001033 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001034 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001035 if (td->runstate == TD_EXITED) {
1036 td_set_runstate(td, TD_REAPED);
1037 goto reaped;
1038 }
1039 continue;
1040 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001041
1042 flags = WNOHANG;
1043 if (td->runstate == TD_EXITED)
1044 flags = 0;
1045
1046 /*
1047 * check if someone quit or got killed in an unusual way
1048 */
1049 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001050 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001051 if (errno == ECHILD) {
1052 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
1053 td_set_runstate(td, TD_REAPED);
1054 goto reaped;
1055 }
1056 perror("waitpid");
1057 } else if (ret == td->pid) {
1058 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001059 int sig = WTERMSIG(status);
1060
Jens Axboed9244942007-03-05 12:32:32 +01001061 if (sig != SIGQUIT)
1062 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001063 td_set_runstate(td, TD_REAPED);
1064 goto reaped;
1065 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001066 if (WIFEXITED(status)) {
1067 if (WEXITSTATUS(status) && !td->error)
1068 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001069
Jens Axboea2f77c92007-02-22 11:53:00 +01001070 td_set_runstate(td, TD_REAPED);
1071 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001072 }
1073 }
Jens Axboeebac4652005-12-08 15:25:21 +01001074
Jens Axboea2f77c92007-02-22 11:53:00 +01001075 /*
1076 * thread is not dead, continue
1077 */
gurudas paie48676b2007-04-11 12:44:27 +02001078 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001079 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001080reaped:
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001081 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001082 long ret;
1083
Jens Axboeee56ad52008-02-01 10:30:20 +01001084 dprint(FD_PROCESS, "joining tread %d\n", td->pid);
1085 if (pthread_join(td->thread, (void *) &ret)) {
1086 dprint(FD_PROCESS, "join failed %ld\n", ret);
Jens Axboe3707f452007-02-22 12:26:57 +01001087 perror("pthread_join");
Jens Axboeee56ad52008-02-01 10:30:20 +01001088 }
Jens Axboe3707f452007-02-22 12:26:57 +01001089 }
1090
Jens Axboeebac4652005-12-08 15:25:21 +01001091 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001092 (*m_rate) -= td->o.ratemin;
1093 (*t_rate) -= td->o.rate;
gurudas paie48676b2007-04-11 12:44:27 +02001094 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001095
1096 if (td->error)
1097 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +01001098 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001099
Jens Axboe1f809d12007-10-25 18:34:02 +02001100 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001101 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001102}
1103
Jens Axboe906c8d72006-06-13 09:37:56 +02001104/*
1105 * Main function for kicking off and reaping jobs, as needed.
1106 */
Jens Axboeebac4652005-12-08 15:25:21 +01001107static void run_threads(void)
1108{
Jens Axboeebac4652005-12-08 15:25:21 +01001109 struct thread_data *td;
1110 unsigned long spent;
1111 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001112
Jens Axboe2f9ade32006-10-20 11:25:52 +02001113 if (fio_pin_memory())
1114 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001115
Jens Axboec6ae0a52006-06-12 11:04:44 +02001116 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001117 printf("Starting ");
1118 if (nr_thread)
1119 printf("%d thread%s", nr_thread, nr_thread > 1 ? "s" : "");
1120 if (nr_process) {
1121 if (nr_thread)
1122 printf(" and ");
1123 printf("%d process%s", nr_process, nr_process > 1 ? "es" : "");
1124 }
1125 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001126 fflush(stdout);
1127 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001128
Jens Axboe4efa9702006-05-31 11:56:49 +02001129 signal(SIGINT, sig_handler);
1130 signal(SIGALRM, sig_handler);
1131
Jens Axboeebac4652005-12-08 15:25:21 +01001132 todo = thread_number;
1133 nr_running = 0;
1134 nr_started = 0;
1135 m_rate = t_rate = 0;
1136
Jens Axboe34572e22006-10-20 09:33:18 +02001137 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001138 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001139
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001140 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001141 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001142 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001143 }
Jens Axboeebac4652005-12-08 15:25:21 +01001144
1145 /*
1146 * do file setup here so it happens sequentially,
1147 * we don't want X number of threads getting their
1148 * client data interspersed on disk
1149 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001150 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001151 exit_value++;
1152 if (td->error)
1153 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001154 td_set_runstate(td, TD_REAPED);
1155 todo--;
Jens Axboec69e8872008-03-01 18:50:48 +01001156 } else {
1157 struct fio_file *f;
1158 unsigned int i;
1159
1160 /*
1161 * for sharing to work, each job must always open
1162 * its own files. so close them, if we opened them
1163 * for creation
1164 */
1165 for_each_file(td, f, i)
1166 td_io_close_file(td, f);
1167 }
Jens Axboe380cf262007-01-11 14:01:27 +01001168
1169 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001170 }
1171
Jens Axboea2f77c92007-02-22 11:53:00 +01001172 set_genesis_time();
1173
Jens Axboeebac4652005-12-08 15:25:21 +01001174 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001175 struct thread_data *map[MAX_JOBS];
1176 struct timeval this_start;
1177 int this_jobs = 0, left;
1178
Jens Axboeebac4652005-12-08 15:25:21 +01001179 /*
1180 * create threads (TD_NOT_CREATED -> TD_CREATED)
1181 */
Jens Axboe34572e22006-10-20 09:33:18 +02001182 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001183 if (td->runstate != TD_NOT_CREATED)
1184 continue;
1185
1186 /*
1187 * never got a chance to start, killed by other
1188 * thread for some reason
1189 */
1190 if (td->terminate) {
1191 todo--;
1192 continue;
1193 }
1194
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001195 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001196 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001197
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001198 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001199 continue;
1200 }
1201
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001202 if (td->o.stonewall && (nr_started || nr_running))
Jens Axboeebac4652005-12-08 15:25:21 +01001203 break;
1204
Jens Axboe75154842006-06-01 13:56:09 +02001205 /*
1206 * Set state to created. Thread will transition
1207 * to TD_INITIALIZED when it's done setting up.
1208 */
Jens Axboeebac4652005-12-08 15:25:21 +01001209 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001210 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001211 nr_started++;
1212
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001213 if (td->o.use_thread) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001214 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001215 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1216 perror("thread_create");
1217 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001218 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001219 }
1220 } else {
Jens Axboeee56ad52008-02-01 10:30:20 +01001221 dprint(FD_PROCESS, "will fork\n");
Jens Axboe07739b52007-03-08 20:25:46 +01001222 if (!fork()) {
Jens Axboea6418142007-02-17 04:47:18 +01001223 int ret = fork_main(shm_id, i);
1224
1225 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001226 }
1227 }
Jens Axboecdd18ad2008-02-27 18:58:00 +01001228 fio_mutex_down(startup_mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001229 }
1230
1231 /*
Jens Axboe75154842006-06-01 13:56:09 +02001232 * Wait for the started threads to transition to
1233 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001234 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001235 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001236 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001237 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001238 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1239 break;
1240
1241 usleep(100000);
1242
1243 for (i = 0; i < this_jobs; i++) {
1244 td = map[i];
1245 if (!td)
1246 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001247 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001248 map[i] = NULL;
1249 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001250 } else if (td->runstate >= TD_EXITED) {
1251 map[i] = NULL;
1252 left--;
1253 todo--;
1254 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001255 }
1256 }
1257 }
1258
1259 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001260 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001261 for (i = 0; i < this_jobs; i++) {
1262 td = map[i];
1263 if (!td)
1264 continue;
1265 kill(td->pid, SIGTERM);
1266 }
1267 break;
1268 }
1269
1270 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001271 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001272 */
Jens Axboe34572e22006-10-20 09:33:18 +02001273 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001274 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001275 continue;
1276
1277 td_set_runstate(td, TD_RUNNING);
1278 nr_running++;
1279 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001280 m_rate += td->o.ratemin;
1281 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001282 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001283 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001284 }
1285
1286 reap_threads(&nr_running, &t_rate, &m_rate);
1287
1288 if (todo)
1289 usleep(100000);
1290 }
1291
1292 while (nr_running) {
1293 reap_threads(&nr_running, &t_rate, &m_rate);
1294 usleep(10000);
1295 }
1296
1297 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001298 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001299}
1300
Jens Axboeebac4652005-12-08 15:25:21 +01001301int main(int argc, char *argv[])
1302{
Jens Axboe29d610e2007-02-06 13:25:33 +01001303 long ps;
1304
Jens Axboedbe11252007-02-11 00:19:51 +01001305 /*
1306 * We need locale for number printing, if it isn't set then just
1307 * go with the US format.
1308 */
1309 if (!getenv("LC_NUMERIC"))
1310 setlocale(LC_NUMERIC, "en_US");
1311
Jens Axboeebac4652005-12-08 15:25:21 +01001312 if (parse_options(argc, argv))
1313 return 1;
1314
Jens Axboe4b472fa2007-04-04 11:04:34 +02001315 if (!thread_number)
1316 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001317
Jens Axboe29d610e2007-02-06 13:25:33 +01001318 ps = sysconf(_SC_PAGESIZE);
1319 if (ps < 0) {
1320 log_err("Failed to get page size\n");
1321 return 1;
1322 }
1323
Jens Axboecfc99db2007-03-14 10:34:47 +01001324 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001325 page_mask = ps - 1;
1326
Jens Axboebb3884d2007-01-17 17:23:11 +11001327 if (write_bw_log) {
1328 setup_log(&agg_io_log[DDIR_READ]);
1329 setup_log(&agg_io_log[DDIR_WRITE]);
1330 }
1331
Jens Axboecdd18ad2008-02-27 18:58:00 +01001332 startup_mutex = fio_mutex_init(0);
Jens Axboe07739b52007-03-08 20:25:46 +01001333
Jens Axboea2f77c92007-02-22 11:53:00 +01001334 set_genesis_time();
1335
Jens Axboeebac4652005-12-08 15:25:21 +01001336 disk_util_timer_arm();
1337
1338 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001339
Jens Axboebb3884d2007-01-17 17:23:11 +11001340 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001341 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001342 if (write_bw_log) {
1343 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1344 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1345 }
1346 }
Jens Axboeebac4652005-12-08 15:25:21 +01001347
Jens Axboecdd18ad2008-02-27 18:58:00 +01001348 fio_mutex_remove(startup_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001349 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001350}