blob: cedbfb0d44e61bce100fbe5bf1b902d5b4a91ebe [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 Axboe2e5cdb12008-03-01 18:52:49 +010039#include "smalloc.h"
Jens Axboeebac4652005-12-08 15:25:21 +010040
Jens Axboecfc99db2007-03-14 10:34:47 +010041unsigned long page_mask;
42unsigned long page_size;
Jens Axboe29d610e2007-02-06 13:25:33 +010043#define ALIGN(buf) \
44 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010045
46int groupid = 0;
47int thread_number = 0;
Jens Axboe9cedf162007-03-12 11:29:30 +010048int nr_process = 0;
49int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010050int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020051int temp_stall_ts;
Jens Axboed3eeeab2008-04-06 12:19:05 +020052unsigned long done_secs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010053
Jens Axboecdd18ad2008-02-27 18:58:00 +010054static struct fio_mutex *startup_mutex;
Jens Axboe6ce15a32007-01-12 09:04:41 +010055static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010056static int exit_value;
Jens Axboeccb0fa22008-05-30 23:18:00 +020057static struct itimerval itimer;
Jens Axboeebac4652005-12-08 15:25:21 +010058
Jens Axboebb3884d2007-01-17 17:23:11 +110059struct io_log *agg_io_log[2];
60
Jens Axboeebac4652005-12-08 15:25:21 +010061#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020062#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010063
Jens Axboe6ce15a32007-01-12 09:04:41 +010064static inline void td_set_runstate(struct thread_data *td, int runstate)
65{
Jens Axboed8fab1b2008-03-06 10:25:17 +010066 if (td->runstate == runstate)
67 return;
68
Jens Axboe5921e802008-05-30 15:02:38 +020069 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
70 td->runstate, runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010071 td->runstate = runstate;
72}
73
Jens Axboe390c40e2007-03-05 12:35:29 +010074static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010075{
Jens Axboe34572e22006-10-20 09:33:18 +020076 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010077 int i;
78
Jens Axboe6f88bcb2008-03-19 10:29:07 +010079 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
80
Jens Axboe34572e22006-10-20 09:33:18 +020081 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010082 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboe6f88bcb2008-03-19 10:29:07 +010083 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +020084 td->o.name, (int) td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +010085 td->terminate = 1;
86 td->o.start_delay = 0;
87
Jens Axboe7a93ab12007-04-18 12:25:41 +020088 /*
89 * if the thread is running, just let it exit
90 */
91 if (td->runstate < TD_RUNNING)
Jens Axboec1302d42007-03-05 20:18:31 +010092 kill(td->pid, SIGQUIT);
Jens Axboef63f7f32008-03-01 15:25:24 +010093 else {
94 struct ioengine_ops *ops = td->io_ops;
95
96 if (ops && (ops->flags & FIO_SIGQUIT))
97 kill(td->pid, SIGQUIT);
98 }
Jens Axboeebac4652005-12-08 15:25:21 +010099 }
100 }
101}
102
Jens Axboeccb0fa22008-05-30 23:18:00 +0200103static void status_timer_arm(void)
104{
105 itimer.it_value.tv_sec = 0;
106 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
107 setitimer(ITIMER_REAL, &itimer, NULL);
108}
109
Jens Axboe697a6062008-05-31 00:04:45 +0200110static void sig_alrm(int sig)
Jens Axboeccb0fa22008-05-30 23:18:00 +0200111{
Jens Axboe697a6062008-05-31 00:04:45 +0200112 if (threads) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100113 update_io_ticks();
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100114 print_thread_status();
Jens Axboeccb0fa22008-05-30 23:18:00 +0200115 status_timer_arm();
Jens Axboe697a6062008-05-31 00:04:45 +0200116 }
117}
118
119static void sig_int(int sig)
120{
121 if (threads) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100122 printf("\nfio: terminating on signal %d\n", sig);
123 fflush(stdout);
124 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100125 }
126}
127
Jens Axboe697a6062008-05-31 00:04:45 +0200128static void set_sig_handlers(void)
129{
130 struct sigaction act;
131
132 memset(&act, 0, sizeof(act));
133 act.sa_handler = sig_alrm;
134 act.sa_flags = SA_RESTART;
135 sigaction(SIGALRM, &act, NULL);
136
137 memset(&act, 0, sizeof(act));
138 act.sa_handler = sig_int;
139 act.sa_flags = SA_RESTART;
140 sigaction(SIGINT, &act, NULL);
141}
142
143/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200144 * Check if we are above the minimum rate given.
145 */
Jens Axboeebac4652005-12-08 15:25:21 +0100146static int check_min_rate(struct thread_data *td, struct timeval *now)
147{
Jens Axboe09042002007-02-23 10:56:22 +0100148 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100149 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100150 unsigned long spent;
151 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100152
153 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100154 * No minimum rate set, always ok
155 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100156 if (!td->o.ratemin && !td->o.rate_iops_min)
Jens Axboe780bf1a2007-02-28 11:13:49 +0100157 return 0;
158
159 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100160 * allow a 2 second settle period in the beginning
161 */
162 if (mtime_since(&td->start, now) < 2000)
163 return 0;
164
Jens Axboe4e991c22007-03-15 11:41:11 +0100165 if (td_read(td)) {
166 iops += td->io_blocks[DDIR_READ];
Jens Axboe09042002007-02-23 10:56:22 +0100167 bytes += td->this_io_bytes[DDIR_READ];
Jens Axboe4e991c22007-03-15 11:41:11 +0100168 }
169 if (td_write(td)) {
170 iops += td->io_blocks[DDIR_WRITE];
Jens Axboe09042002007-02-23 10:56:22 +0100171 bytes += td->this_io_bytes[DDIR_WRITE];
Jens Axboe4e991c22007-03-15 11:41:11 +0100172 }
Jens Axboe09042002007-02-23 10:56:22 +0100173
Jens Axboeebac4652005-12-08 15:25:21 +0100174 /*
175 * if rate blocks is set, sample is running
176 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100177 if (td->rate_bytes || td->rate_blocks) {
Jens Axboeebac4652005-12-08 15:25:21 +0100178 spent = mtime_since(&td->lastrate, now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100179 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100180 return 0;
181
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100182 if (td->o.rate) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100183 /*
184 * check bandwidth specified rate
185 */
186 if (bytes < td->rate_bytes) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100187 log_err("%s: min rate %u not met\n", td->o.name,
188 td->o.ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100189 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100190 } else {
191 rate = (bytes - td->rate_bytes) / spent;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100192 if (rate < td->o.ratemin ||
193 bytes < td->rate_bytes) {
194 log_err("%s: min rate %u not met, got"
195 " %luKiB/sec\n", td->o.name,
196 td->o.ratemin, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100197 return 1;
198 }
199 }
200 } else {
201 /*
202 * checks iops specified rate
203 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100204 if (iops < td->o.rate_iops) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100205 log_err("%s: min iops rate %u not met\n",
206 td->o.name, td->o.rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100207 return 1;
208 } else {
209 rate = (iops - td->rate_blocks) / spent;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100210 if (rate < td->o.rate_iops_min ||
211 iops < td->rate_blocks) {
212 log_err("%s: min iops rate %u not met,"
213 " got %lu\n", td->o.name,
214 td->o.rate_iops_min,
215 rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100216 }
Jens Axboe413dd452007-02-23 09:26:09 +0100217 }
Jens Axboeebac4652005-12-08 15:25:21 +0100218 }
219 }
220
Jens Axboe09042002007-02-23 10:56:22 +0100221 td->rate_bytes = bytes;
Jens Axboe4e991c22007-03-15 11:41:11 +0100222 td->rate_blocks = iops;
Jens Axboeebac4652005-12-08 15:25:21 +0100223 memcpy(&td->lastrate, now, sizeof(*now));
224 return 0;
225}
226
227static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
228{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100229 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100230 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100231 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100232 return 1;
233
234 return 0;
235}
236
Jens Axboe906c8d72006-06-13 09:37:56 +0200237/*
238 * When job exits, we can cancel the in-flight IO if we are using async
239 * io. Attempt to do so.
240 */
Jens Axboeebac4652005-12-08 15:25:21 +0100241static void cleanup_pending_aio(struct thread_data *td)
242{
Jens Axboe01743ee2008-06-02 12:19:19 +0200243 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100244 struct io_u *io_u;
245 int r;
246
247 /*
248 * get immediately available events, if any
249 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100250 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100251 if (r < 0)
252 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100253
254 /*
255 * now cancel remaining active events
256 */
Jens Axboe2866c822006-10-09 15:57:48 +0200257 if (td->io_ops->cancel) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200258 flist_for_each_safe(entry, n, &td->io_u_busylist) {
259 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100260
Jens Axboe0c6e7512007-02-22 11:19:39 +0100261 /*
262 * if the io_u isn't in flight, then that generally
263 * means someone leaked an io_u. complain but fix
264 * it up, so we don't stall here.
265 */
266 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
267 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100268 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100269 } else {
270 r = td->io_ops->cancel(td, io_u);
271 if (!r)
272 put_io_u(td, io_u);
273 }
Jens Axboeebac4652005-12-08 15:25:21 +0100274 }
275 }
276
Jens Axboe97601022007-02-18 12:47:29 +0100277 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100278 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100279}
280
Jens Axboe906c8d72006-06-13 09:37:56 +0200281/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200282 * Helper to handle the final sync of a file. Works just like the normal
283 * io path, just does everything sync.
284 */
285static int fio_io_sync(struct thread_data *td, struct fio_file *f)
286{
287 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200288 int ret;
289
290 if (!io_u)
291 return 1;
292
293 io_u->ddir = DDIR_SYNC;
294 io_u->file = f;
295
296 if (td_io_prep(td, io_u)) {
297 put_io_u(td, io_u);
298 return 1;
299 }
300
Jens Axboe755200a2007-02-19 13:08:12 +0100301requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200302 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100303 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100304 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200305 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200306 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100307 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100308 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100309 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100310 } else if (ret == FIO_Q_COMPLETED) {
311 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100312 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100313 return 1;
314 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200315
Jens Axboed7762cf2007-02-23 12:34:57 +0100316 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100317 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100318 } else if (ret == FIO_Q_BUSY) {
319 if (td_io_commit(td))
320 return 1;
321 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200322 }
323
324 return 0;
325}
326
327/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100328 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200329 * reads the blocks back in, and checks the crc/md5 of the data.
330 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100331static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100332{
Jens Axboe53cdc682006-10-18 11:50:58 +0200333 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100334 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100335 int ret, min_events;
336 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200337
338 /*
339 * sync io first and invalidate cache, to make sure we really
340 * read from disk.
341 */
342 for_each_file(td, f, i) {
Jens Axboe3d7b4852007-03-13 14:50:28 +0100343 if (!(f->flags & FIO_FILE_OPEN))
344 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100345 if (fio_io_sync(td, f))
346 break;
347 if (file_invalidate_cache(td, f))
348 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200349 }
Jens Axboeebac4652005-12-08 15:25:21 +0100350
Jens Axboeb2fdda42007-02-20 20:52:51 +0100351 if (td->error)
352 return;
353
Jens Axboeebac4652005-12-08 15:25:21 +0100354 td_set_runstate(td, TD_VERIFYING);
355
Jens Axboe36167d82007-02-18 05:41:31 +0100356 io_u = NULL;
357 while (!td->terminate) {
Jens Axboe49504212008-06-05 09:03:30 +0200358 int ret2, full;
Jens Axboe54517922007-03-05 10:06:06 +0100359
Jens Axboeebac4652005-12-08 15:25:21 +0100360 io_u = __get_io_u(td);
361 if (!io_u)
362 break;
363
Jens Axboe069c2912007-02-21 23:02:39 +0100364 if (runtime_exceeded(td, &io_u->start_time)) {
365 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200366 td->terminate = 1;
Jens Axboe53cdc682006-10-18 11:50:58 +0200367 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100368 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200369
Jens Axboe069c2912007-02-21 23:02:39 +0100370 if (get_next_verify(td, io_u)) {
371 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100372 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100373 }
Jens Axboeebac4652005-12-08 15:25:21 +0100374
Jens Axboe069c2912007-02-21 23:02:39 +0100375 if (td_io_prep(td, io_u)) {
376 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100377 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100378 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100379
380 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100381
Jens Axboe11786802007-03-05 18:33:22 +0100382 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100383 switch (ret) {
384 case FIO_Q_COMPLETED:
385 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100386 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100387 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100388 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200389 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100390
Jens Axboe9e9d1642007-03-12 09:37:46 +0100391 /*
392 * zero read, fail
393 */
394 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200395 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100396 put_io_u(td, io_u);
397 break;
398 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200399
Jens Axboe36167d82007-02-18 05:41:31 +0100400 io_u->xfer_buflen = io_u->resid;
401 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200402 io_u->offset += bytes;
403
Jens Axboe30061b92007-04-17 13:31:34 +0200404 td->ts.short_io_u[io_u->ddir]++;
405
Jens Axboed460eb32007-04-16 21:39:33 +0200406 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200407 goto sync_done;
408
Jens Axboe11786802007-03-05 18:33:22 +0100409 requeue_io_u(td, &io_u);
410 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200411sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100412 ret = io_u_sync_complete(td, io_u);
413 if (ret < 0)
414 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100415 }
Jens Axboe36167d82007-02-18 05:41:31 +0100416 continue;
417 case FIO_Q_QUEUED:
418 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100419 case FIO_Q_BUSY:
420 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100421 ret2 = td_io_commit(td);
422 if (ret2 < 0)
423 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100424 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100425 default:
426 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100427 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100428 break;
429 }
430
Jens Axboe99784632007-02-19 10:06:17 +0100431 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100432 break;
433
Jens Axboe3af6ef32007-02-18 06:57:43 +0100434 /*
435 * if we can queue more, do so. but check if there are
436 * completed io_u's first.
437 */
Jens Axboe49504212008-06-05 09:03:30 +0200438 full = queue_full(td) || ret == FIO_Q_BUSY;
439 if (full || !td->o.iodepth_batch_complete) {
440 min_events = td->o.iodepth_batch_complete;
441 if (full && !min_events)
Jens Axboe838bc702008-05-22 13:08:23 +0200442 min_events = 1;
Jens Axboee916b392007-02-20 14:37:26 +0100443
Jens Axboe49504212008-06-05 09:03:30 +0200444 do {
445 /*
446 * Reap required number of io units, if any,
447 * and do the verification on them through
448 * the callback handler
449 */
450 if (io_u_queued_complete(td, min_events) < 0) {
451 ret = -1;
452 break;
453 }
454 } while (full && (td->cur_depth > td->o.iodepth_low));
455 }
456 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100457 break;
458 }
459
Jens Axboec01c0392007-02-26 12:43:42 +0100460 if (!td->error) {
461 min_events = td->cur_depth;
462
463 if (min_events)
464 ret = io_u_queued_complete(td, min_events);
465 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100466 cleanup_pending_aio(td);
467
468 td_set_runstate(td, TD_RUNNING);
469}
470
Jens Axboe32cd46a2006-06-07 13:40:40 +0200471/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200472 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200473 * and reaps them, checking for rate and errors along the way.
474 */
Jens Axboeebac4652005-12-08 15:25:21 +0100475static void do_io(struct thread_data *td)
476{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100477 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100478 unsigned long usec;
Jens Axboeaf52b342007-03-13 10:07:47 +0100479 unsigned int i;
480 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100481
Jens Axboe5853e5a2006-06-08 14:41:05 +0200482 td_set_runstate(td, TD_RUNNING);
483
Jens Axboe7bb48f82007-03-27 15:30:28 +0200484 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) {
Jens Axboe97601022007-02-18 12:47:29 +0100485 struct timeval comp_time;
486 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200487 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100488 struct io_u *io_u;
Jens Axboe49504212008-06-05 09:03:30 +0200489 int ret2, full;
Jens Axboeebac4652005-12-08 15:25:21 +0100490
491 if (td->terminate)
492 break;
493
Jens Axboe3d7c3912007-02-19 13:16:12 +0100494 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100495 if (!io_u)
496 break;
497
498 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100499
500 if (runtime_exceeded(td, &s)) {
501 put_io_u(td, io_u);
Jens Axboe90a87d42007-04-18 09:02:32 +0200502 td->terminate = 1;
Jens Axboe97601022007-02-18 12:47:29 +0100503 break;
504 }
Jens Axboe36167d82007-02-18 05:41:31 +0100505
Jens Axboeb67740d2007-07-26 12:22:30 +0200506 /*
507 * Add verification end_io handler, if asked to verify
508 * a previously written file.
509 */
Jens Axboecc3fc852008-03-06 11:47:53 +0100510 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ) {
Jens Axboeb67740d2007-07-26 12:22:30 +0200511 io_u->end_io = verify_io_u;
Jens Axboed8fab1b2008-03-06 10:25:17 +0100512 td_set_runstate(td, TD_VERIFYING);
513 } else
514 td_set_runstate(td, TD_RUNNING);
Jens Axboeb67740d2007-07-26 12:22:30 +0200515
Jens Axboe11786802007-03-05 18:33:22 +0100516 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100517 switch (ret) {
518 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100519 if (io_u->error)
520 ret = -io_u->error;
Jens Axboe9e9d1642007-03-12 09:37:46 +0100521 else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100522 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200523 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100524
Jens Axboe9e9d1642007-03-12 09:37:46 +0100525 /*
526 * zero read, fail
527 */
528 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200529 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100530 put_io_u(td, io_u);
531 break;
532 }
533
Jens Axboe36167d82007-02-18 05:41:31 +0100534 io_u->xfer_buflen = io_u->resid;
535 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200536 io_u->offset += bytes;
537
Jens Axboe30061b92007-04-17 13:31:34 +0200538 td->ts.short_io_u[io_u->ddir]++;
539
Jens Axboed460eb32007-04-16 21:39:33 +0200540 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200541 goto sync_done;
542
Jens Axboe11786802007-03-05 18:33:22 +0100543 requeue_io_u(td, &io_u);
544 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200545sync_done:
Jens Axboe11786802007-03-05 18:33:22 +0100546 fio_gettime(&comp_time, NULL);
547 bytes_done = io_u_sync_complete(td, io_u);
548 if (bytes_done < 0)
549 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100550 }
Jens Axboe36167d82007-02-18 05:41:31 +0100551 break;
552 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100553 /*
554 * if the engine doesn't have a commit hook,
555 * the io_u is really queued. if it does have such
556 * a hook, it has to call io_u_queued() itself.
557 */
558 if (td->io_ops->commit == NULL)
559 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100560 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100561 case FIO_Q_BUSY:
562 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100563 ret2 = td_io_commit(td);
564 if (ret2 < 0)
565 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100566 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100567 default:
568 assert(ret < 0);
569 put_io_u(td, io_u);
570 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100571 }
572
Jens Axboe99784632007-02-19 10:06:17 +0100573 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100574 break;
575
Jens Axboe97601022007-02-18 12:47:29 +0100576 /*
577 * See if we need to complete some commands
578 */
Jens Axboe49504212008-06-05 09:03:30 +0200579 full = queue_full(td) || ret == FIO_Q_BUSY;
580 if (full || !td->o.iodepth_batch_complete) {
581 min_evts = td->o.iodepth_batch_complete;
582 if (full && !min_evts)
Jens Axboe36167d82007-02-18 05:41:31 +0100583 min_evts = 1;
Jens Axboe49504212008-06-05 09:03:30 +0200584
Jens Axboe97601022007-02-18 12:47:29 +0100585 fio_gettime(&comp_time, NULL);
Jens Axboe49504212008-06-05 09:03:30 +0200586
587 do {
588 ret = io_u_queued_complete(td, min_evts);
589 if (ret <= 0)
590 break;
591
592 bytes_done += ret;
593 } while (full && (td->cur_depth > td->o.iodepth_low));
Jens Axboeebac4652005-12-08 15:25:21 +0100594 }
595
Jens Axboe49504212008-06-05 09:03:30 +0200596 if (ret < 0)
597 break;
Jens Axboe97601022007-02-18 12:47:29 +0100598 if (!bytes_done)
599 continue;
600
Jens Axboeebac4652005-12-08 15:25:21 +0100601 /*
602 * the rate is batched for now, it should work for batches
603 * of completions except the very first one which may look
604 * a little bursty
605 */
Jens Axboe97601022007-02-18 12:47:29 +0100606 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100607
Jens Axboe413dd452007-02-23 09:26:09 +0100608 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100609
Jens Axboe97601022007-02-18 12:47:29 +0100610 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100611 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +0100612 terminate_threads(td->groupid);
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200613 td_verror(td, EIO, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100614 break;
615 }
616
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100617 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100618 unsigned long long b;
619
620 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100621 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100622 int left;
623
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100624 if (td->o.thinktime_spin)
625 __usec_sleep(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100626
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100627 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100628 if (left)
629 usec_sleep(td, left);
630 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100631 }
Jens Axboeebac4652005-12-08 15:25:21 +0100632 }
633
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100634 if (td->o.fill_device && td->error == ENOSPC) {
635 td->error = 0;
636 td->terminate = 1;
637 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100638 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100639 struct fio_file *f;
640
Jens Axboec01c0392007-02-26 12:43:42 +0100641 i = td->cur_depth;
642 if (i)
643 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100644
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100645 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200646 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100647
648 for_each_file(td, f, i) {
649 if (!(f->flags & FIO_FILE_OPEN))
650 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200651 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100652 }
Jens Axboe84585002006-10-19 20:26:22 +0200653 }
Jens Axboec01c0392007-02-26 12:43:42 +0100654 } else
655 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100656
657 /*
658 * stop job if we failed doing any IO
659 */
660 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
661 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100662}
663
Jens Axboeebac4652005-12-08 15:25:21 +0100664static void cleanup_io_u(struct thread_data *td)
665{
Jens Axboe01743ee2008-06-02 12:19:19 +0200666 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100667 struct io_u *io_u;
668
Jens Axboe01743ee2008-06-02 12:19:19 +0200669 flist_for_each_safe(entry, n, &td->io_u_freelist) {
670 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100671
Jens Axboe01743ee2008-06-02 12:19:19 +0200672 flist_del(&io_u->list);
Jens Axboeebac4652005-12-08 15:25:21 +0100673 free(io_u);
674 }
675
Jens Axboe2f9ade32006-10-20 11:25:52 +0200676 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100677}
678
679static int init_io_u(struct thread_data *td)
680{
681 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100682 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100683 int i, max_units;
684 char *p;
685
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100686 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100687 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100688 td->orig_buffer_size = (unsigned long long) max_bs
689 * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100690
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100691 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
692 unsigned long bs;
693
694 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
695 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
696 }
Jens Axboeebac4652005-12-08 15:25:21 +0100697
Jens Axboec3990642007-07-19 10:17:09 +0200698 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
699 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
700 return 1;
701 }
702
Jens Axboe2f9ade32006-10-20 11:25:52 +0200703 if (allocate_io_mem(td))
704 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100705
Jens Axboeb3f378e2007-07-20 12:39:22 +0200706 if (td->o.odirect)
707 p = ALIGN(td->orig_buffer);
708 else
709 p = td->orig_buffer;
710
Jens Axboeebac4652005-12-08 15:25:21 +0100711 for (i = 0; i < max_units; i++) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200712 if (td->terminate)
713 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100714 io_u = malloc(sizeof(*io_u));
715 memset(io_u, 0, sizeof(*io_u));
Jens Axboe01743ee2008-06-02 12:19:19 +0200716 INIT_FLIST_HEAD(&io_u->list);
Jens Axboeebac4652005-12-08 15:25:21 +0100717
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200718 if (!(td->io_ops->flags & FIO_NOIO)) {
719 io_u->buf = p + max_bs * i;
Jens Axboee9459e52007-04-17 15:46:32 +0200720
Jens Axboe5973caf2008-05-21 19:52:35 +0200721 if (td_write(td) && !td->o.refill_buffers)
722 io_u_fill_buffer(td, io_u, max_bs);
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200723 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100724
Jens Axboeb1ff3402006-02-17 11:35:58 +0100725 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100726 io_u->flags = IO_U_F_FREE;
Jens Axboe01743ee2008-06-02 12:19:19 +0200727 flist_add(&io_u->list, &td->io_u_freelist);
Jens Axboeebac4652005-12-08 15:25:21 +0100728 }
729
Jens Axboe433afcb2007-02-22 10:39:01 +0100730 io_u_init_timeout();
731
Jens Axboeebac4652005-12-08 15:25:21 +0100732 return 0;
733}
734
Jens Axboeda867742006-06-06 10:39:10 -0700735static int switch_ioscheduler(struct thread_data *td)
736{
737 char tmp[256], tmp2[128];
738 FILE *f;
739 int ret;
740
Jens Axboeba0fbe12007-03-09 14:34:23 +0100741 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200742 return 0;
743
Jens Axboeda867742006-06-06 10:39:10 -0700744 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
745
746 f = fopen(tmp, "r+");
747 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200748 if (errno == ENOENT) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100749 log_err("fio: os or kernel doesn't support IO scheduler"
750 " switching\n");
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200751 return 0;
752 }
753 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700754 return 1;
755 }
756
757 /*
758 * Set io scheduler.
759 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100760 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700761 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100762 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700763 fclose(f);
764 return 1;
765 }
766
767 rewind(f);
768
769 /*
770 * Read back and check that the selected scheduler is now the default.
771 */
772 ret = fread(tmp, 1, sizeof(tmp), f);
773 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100774 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700775 fclose(f);
776 return 1;
777 }
778
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100779 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700780 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100781 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100782 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700783 fclose(f);
784 return 1;
785 }
786
787 fclose(f);
788 return 0;
789}
790
Jens Axboe492158c2007-05-24 10:32:47 +0200791static int keep_running(struct thread_data *td)
792{
793 unsigned long long io_done;
794
Jens Axboe20e354e2007-07-23 14:36:16 +0200795 if (td->done)
796 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200797 if (td->o.time_based)
798 return 1;
799 if (td->o.loops) {
800 td->o.loops--;
801 return 1;
802 }
803
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100804 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE]
805 + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200806 if (io_done < td->o.size)
807 return 1;
808
809 return 0;
810}
811
Jens Axboea978ba62007-03-08 14:29:03 +0100812static int clear_io_state(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100813{
Jens Axboe53cdc682006-10-18 11:50:58 +0200814 struct fio_file *f;
Jens Axboeaf52b342007-03-13 10:07:47 +0100815 unsigned int i;
816 int ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100817
Jens Axboe756867b2007-03-06 15:19:24 +0100818 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100819 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100820 td->zone_bytes = 0;
Jens Axboed7d3b492007-03-12 08:02:10 +0100821 td->rate_bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100822 td->rate_blocks = 0;
Jens Axboe38d77ca2007-03-21 14:20:20 +0100823 td->rw_end_set[0] = td->rw_end_set[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100824
Jens Axboec1324df2007-02-19 19:06:41 +0100825 td->last_was_sync = 0;
826
Jens Axboe2ba1c292008-02-01 13:16:38 +0100827 /*
828 * reset file done count if we are to start over
829 */
830 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200831 td->nr_done_files = 0;
Jens Axboe281f9b62007-05-23 09:34:42 +0200832
Jens Axboe24ffd2c2008-03-01 15:47:08 +0100833 close_files(td);
Jens Axboea978ba62007-03-08 14:29:03 +0100834
835 ret = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +0200836 for_each_file(td, f, i) {
Jens Axboe281f9b62007-05-23 09:34:42 +0200837 f->flags &= ~FIO_FILE_DONE;
Jens Axboea978ba62007-03-08 14:29:03 +0100838 ret = td_io_open_file(td, f);
839 if (ret)
840 break;
Jens Axboe53cdc682006-10-18 11:50:58 +0200841 }
Jens Axboea978ba62007-03-08 14:29:03 +0100842
843 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100844}
845
Jens Axboe906c8d72006-06-13 09:37:56 +0200846/*
847 * Entry point for the thread based jobs. The process based jobs end up
848 * here as well, after a little setup.
849 */
Jens Axboeebac4652005-12-08 15:25:21 +0100850static void *thread_main(void *data)
851{
Shawn Lewis10927312007-11-21 09:38:13 +0100852 unsigned long long runtime[2], elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +0100853 struct thread_data *td = data;
Jens Axboea978ba62007-03-08 14:29:03 +0100854 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100855
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100856 if (!td->o.use_thread)
Jens Axboeebac4652005-12-08 15:25:21 +0100857 setsid();
858
859 td->pid = getpid();
860
Jens Axboe5921e802008-05-30 15:02:38 +0200861 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
Jens Axboeee56ad52008-02-01 10:30:20 +0100862
Jens Axboe01743ee2008-06-02 12:19:19 +0200863 INIT_FLIST_HEAD(&td->io_u_freelist);
864 INIT_FLIST_HEAD(&td->io_u_busylist);
865 INIT_FLIST_HEAD(&td->io_u_requeues);
866 INIT_FLIST_HEAD(&td->io_log_list);
867 INIT_FLIST_HEAD(&td->io_hist_list);
Jens Axboebb5d7d02007-03-27 10:21:25 +0200868 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +0200869
Jens Axboe75154842006-06-01 13:56:09 +0200870 td_set_runstate(td, TD_INITIALIZED);
Jens Axboecdd18ad2008-02-27 18:58:00 +0100871 fio_mutex_up(startup_mutex);
872 fio_mutex_down(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100873
Jens Axboe37f56872007-03-09 12:42:35 +0100874 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +0100875 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +0100876 * eating a file descriptor
877 */
Jens Axboecdd18ad2008-02-27 18:58:00 +0100878 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +0100879
Jens Axboed84f8d42007-05-16 08:47:46 +0200880 /*
881 * May alter parameters that init_io_u() will use, so we need to
882 * do this first.
883 */
884 if (init_iolog(td))
885 goto err;
886
Jens Axboedb1cd902007-04-26 13:47:07 +0200887 if (init_io_u(td))
888 goto err;
889
Jens Axboe375b2692007-05-22 09:13:02 +0200890 if (td->o.cpumask_set && fio_setaffinity(td) == -1) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200891 td_verror(td, errno, "cpu_set_affinity");
892 goto err;
893 }
894
Jens Axboeac684782007-11-08 08:29:07 +0100895 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +0200896 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
897 td_verror(td, errno, "ioprio_set");
898 goto err;
899 }
900 }
901
902 if (nice(td->o.nice) == -1) {
903 td_verror(td, errno, "nice");
904 goto err;
905 }
906
907 if (td->o.ioscheduler && switch_ioscheduler(td))
908 goto err;
909
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100910 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100911 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +0100912
913 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +0100914 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100915
Jens Axboeb5af8292007-03-08 12:43:13 +0100916 if (open_files(td))
Jens Axboe7d6c5282007-02-05 10:52:10 +0100917 goto err;
918
Jens Axboe68727072007-03-15 20:49:25 +0100919 if (init_random_map(td))
920 goto err;
921
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100922 if (td->o.exec_prerun) {
923 if (system(td->o.exec_prerun) < 0)
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100924 goto err;
925 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200926
Jens Axboe69008992006-11-24 13:12:56 +0100927 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100928 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe756867b2007-03-06 15:19:24 +0100929 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100930
931 runtime[0] = runtime[1] = 0;
Jens Axboea978ba62007-03-08 14:29:03 +0100932 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200933 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100934 fio_gettime(&td->start, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +0100935 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100936
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100937 if (td->o.ratemin)
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100938 memcpy(&td->lastrate, &td->ts.stat_sample_time,
939 sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100940
Jens Axboea978ba62007-03-08 14:29:03 +0100941 if (clear_state && clear_io_state(td))
942 break;
943
Jens Axboeebac4652005-12-08 15:25:21 +0100944 prune_io_piece_log(td);
945
Jens Axboeba0fbe12007-03-09 14:34:23 +0100946 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100947
Jens Axboea978ba62007-03-08 14:29:03 +0100948 clear_state = 1;
949
Jens Axboe38d77ca2007-03-21 14:20:20 +0100950 if (td_read(td) && td->io_bytes[DDIR_READ]) {
951 if (td->rw_end_set[DDIR_READ])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100952 elapsed = utime_since(&td->start,
953 &td->rw_end[DDIR_READ]);
Jens Axboe38d77ca2007-03-21 14:20:20 +0100954 else
955 elapsed = utime_since_now(&td->start);
956
957 runtime[DDIR_READ] += elapsed;
958 }
959 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
960 if (td->rw_end_set[DDIR_WRITE])
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100961 elapsed = utime_since(&td->start,
962 &td->rw_end[DDIR_WRITE]);
Jens Axboe38d77ca2007-03-21 14:20:20 +0100963 else
964 elapsed = utime_since_now(&td->start);
965
966 runtime[DDIR_WRITE] += elapsed;
967 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100968
Jens Axboeebac4652005-12-08 15:25:21 +0100969 if (td->error || td->terminate)
970 break;
971
Shawn Lewise84c73a2007-08-02 22:19:32 +0200972 if (!td->o.do_verify ||
973 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +0200974 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +0100975 continue;
976
Jens Axboea978ba62007-03-08 14:29:03 +0100977 if (clear_io_state(td))
978 break;
979
Jens Axboe02bcaa82006-11-24 10:42:00 +0100980 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100981
982 do_verify(td);
983
Jens Axboe69008992006-11-24 13:12:56 +0100984 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100985
986 if (td->error || td->terminate)
987 break;
988 }
989
Jens Axboe36dff962006-11-24 13:29:20 +0100990 update_rusage_stat(td);
ljzhang,Yaxin Hu,Jianchao Tang47f0cc42007-07-26 11:00:29 +0200991 td->ts.runtime[0] = (runtime[0] + 999) / 1000;
992 td->ts.runtime[1] = (runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +0100993 td->ts.total_run_time = mtime_since_now(&td->epoch);
994 td->ts.io_bytes[0] = td->io_bytes[0];
995 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +0100996
Jens Axboe756867b2007-03-06 15:19:24 +0100997 if (td->ts.bw_log)
998 finish_log(td, td->ts.bw_log, "bw");
999 if (td->ts.slat_log)
1000 finish_log(td, td->ts.slat_log, "slat");
1001 if (td->ts.clat_log)
1002 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001003 if (td->o.exec_postrun) {
1004 if (system(td->o.exec_postrun) < 0)
1005 log_err("fio: postrun %s failed\n", td->o.exec_postrun);
Jens Axboe69cfd7e2007-02-07 13:58:53 +01001006 }
Jens Axboeebac4652005-12-08 15:25:21 +01001007
1008 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +01001009 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +01001010
1011err:
Jens Axboe5bf13a52007-02-17 01:51:47 +01001012 if (td->error)
Jens Axboe5921e802008-05-30 15:02:38 +02001013 printf("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001014 td->verror);
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001015 close_and_free_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +02001016 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001017 cleanup_io_u(td);
Jens Axboef29b25a2007-07-23 08:56:43 +02001018
1019 /*
1020 * do this very late, it will log file closing as well
1021 */
1022 if (td->o.write_iolog_file)
1023 write_iolog_close(td);
1024
Jens Axboed23bb322007-03-23 15:57:56 +01001025 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001026 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +01001027 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +01001028}
1029
Jens Axboe906c8d72006-06-13 09:37:56 +02001030/*
1031 * We cannot pass the td data into a forked process, so attach the td and
1032 * pass it to the thread worker.
1033 */
Jens Axboea6418142007-02-17 04:47:18 +01001034static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +01001035{
1036 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +01001037 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001038
1039 data = shmat(shmid, NULL, 0);
1040 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +01001041 int __err = errno;
1042
Jens Axboeebac4652005-12-08 15:25:21 +01001043 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +01001044 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +01001045 }
1046
1047 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +01001048 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001049 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001050 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001051}
1052
Jens Axboe906c8d72006-06-13 09:37:56 +02001053/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001054 * Run over the job map and reap the threads that have exited, if any.
1055 */
Jens Axboeebac4652005-12-08 15:25:21 +01001056static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1057{
Jens Axboe34572e22006-10-20 09:33:18 +02001058 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001059 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001060
1061 /*
1062 * reap exited threads (TD_EXITED -> TD_REAPED)
1063 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001064 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001065 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001066 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001067
Jens Axboe84585002006-10-19 20:26:22 +02001068 /*
1069 * ->io_ops is NULL for a thread that has closed its
1070 * io engine
1071 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001072 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001073 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001074 else
1075 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001076
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001077 if (!td->pid) {
1078 pending++;
1079 continue;
1080 }
1081 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001082 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001083 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001084 if (td->runstate == TD_EXITED) {
1085 td_set_runstate(td, TD_REAPED);
1086 goto reaped;
1087 }
1088 continue;
1089 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001090
1091 flags = WNOHANG;
1092 if (td->runstate == TD_EXITED)
1093 flags = 0;
1094
1095 /*
1096 * check if someone quit or got killed in an unusual way
1097 */
1098 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001099 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001100 if (errno == ECHILD) {
Jens Axboe5921e802008-05-30 15:02:38 +02001101 log_err("fio: pid=%d disappeared %d\n",
1102 (int) td->pid, td->runstate);
Jens Axboea2f77c92007-02-22 11:53:00 +01001103 td_set_runstate(td, TD_REAPED);
1104 goto reaped;
1105 }
1106 perror("waitpid");
1107 } else if (ret == td->pid) {
1108 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001109 int sig = WTERMSIG(status);
1110
Jens Axboed9244942007-03-05 12:32:32 +01001111 if (sig != SIGQUIT)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001112 log_err("fio: pid=%d, got signal=%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +02001113 (int) td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001114 td_set_runstate(td, TD_REAPED);
1115 goto reaped;
1116 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001117 if (WIFEXITED(status)) {
1118 if (WEXITSTATUS(status) && !td->error)
1119 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001120
Jens Axboea2f77c92007-02-22 11:53:00 +01001121 td_set_runstate(td, TD_REAPED);
1122 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001123 }
1124 }
Jens Axboeebac4652005-12-08 15:25:21 +01001125
Jens Axboea2f77c92007-02-22 11:53:00 +01001126 /*
1127 * thread is not dead, continue
1128 */
gurudas paie48676b2007-04-11 12:44:27 +02001129 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001130 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001131reaped:
Jens Axboeebac4652005-12-08 15:25:21 +01001132 (*nr_running)--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001133 (*m_rate) -= td->o.ratemin;
1134 (*t_rate) -= td->o.rate;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001135 if (!td->pid)
1136 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001137
1138 if (td->error)
1139 exit_value++;
Jens Axboed3eeeab2008-04-06 12:19:05 +02001140
1141 done_secs += mtime_since_now(&td->epoch) / 1000;
Jens Axboeebac4652005-12-08 15:25:21 +01001142 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001143
Jens Axboe1f809d12007-10-25 18:34:02 +02001144 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001145 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001146}
1147
Jens Axboe906c8d72006-06-13 09:37:56 +02001148/*
1149 * Main function for kicking off and reaping jobs, as needed.
1150 */
Jens Axboeebac4652005-12-08 15:25:21 +01001151static void run_threads(void)
1152{
Jens Axboeebac4652005-12-08 15:25:21 +01001153 struct thread_data *td;
1154 unsigned long spent;
1155 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001156
Jens Axboe2f9ade32006-10-20 11:25:52 +02001157 if (fio_pin_memory())
1158 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001159
Jens Axboec6ae0a52006-06-12 11:04:44 +02001160 if (!terse_output) {
Jens Axboe9cedf162007-03-12 11:29:30 +01001161 printf("Starting ");
1162 if (nr_thread)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001163 printf("%d thread%s", nr_thread,
1164 nr_thread > 1 ? "s" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001165 if (nr_process) {
1166 if (nr_thread)
1167 printf(" and ");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001168 printf("%d process%s", nr_process,
1169 nr_process > 1 ? "es" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001170 }
1171 printf("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001172 fflush(stdout);
1173 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001174
Jens Axboe697a6062008-05-31 00:04:45 +02001175 set_sig_handlers();
Jens Axboe4efa9702006-05-31 11:56:49 +02001176
Jens Axboeebac4652005-12-08 15:25:21 +01001177 todo = thread_number;
1178 nr_running = 0;
1179 nr_started = 0;
1180 m_rate = t_rate = 0;
1181
Jens Axboe34572e22006-10-20 09:33:18 +02001182 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001183 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001184
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001185 if (!td->o.create_serialize) {
Jens Axboe380cf262007-01-11 14:01:27 +01001186 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001187 continue;
Jens Axboe380cf262007-01-11 14:01:27 +01001188 }
Jens Axboeebac4652005-12-08 15:25:21 +01001189
1190 /*
1191 * do file setup here so it happens sequentially,
1192 * we don't want X number of threads getting their
1193 * client data interspersed on disk
1194 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001195 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001196 exit_value++;
1197 if (td->error)
Jens Axboe5921e802008-05-30 15:02:38 +02001198 log_err("fio: pid=%d, err=%d/%s\n",
1199 (int) td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001200 td_set_runstate(td, TD_REAPED);
1201 todo--;
Jens Axboec69e8872008-03-01 18:50:48 +01001202 } else {
1203 struct fio_file *f;
1204 unsigned int i;
1205
1206 /*
1207 * for sharing to work, each job must always open
1208 * its own files. so close them, if we opened them
1209 * for creation
1210 */
1211 for_each_file(td, f, i)
1212 td_io_close_file(td, f);
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001213 }
Jens Axboe380cf262007-01-11 14:01:27 +01001214
1215 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001216 }
1217
Jens Axboea2f77c92007-02-22 11:53:00 +01001218 set_genesis_time();
1219
Jens Axboeebac4652005-12-08 15:25:21 +01001220 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +02001221 struct thread_data *map[MAX_JOBS];
1222 struct timeval this_start;
1223 int this_jobs = 0, left;
1224
Jens Axboeebac4652005-12-08 15:25:21 +01001225 /*
1226 * create threads (TD_NOT_CREATED -> TD_CREATED)
1227 */
Jens Axboe34572e22006-10-20 09:33:18 +02001228 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001229 if (td->runstate != TD_NOT_CREATED)
1230 continue;
1231
1232 /*
1233 * never got a chance to start, killed by other
1234 * thread for some reason
1235 */
1236 if (td->terminate) {
1237 todo--;
1238 continue;
1239 }
1240
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001241 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001242 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001243
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001244 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001245 continue;
1246 }
1247
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001248 if (td->o.stonewall && (nr_started || nr_running)) {
1249 dprint(FD_PROCESS, "%s: stonewall wait\n",
1250 td->o.name);
Jens Axboeebac4652005-12-08 15:25:21 +01001251 break;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001252 }
Jens Axboeebac4652005-12-08 15:25:21 +01001253
Jens Axboe75154842006-06-01 13:56:09 +02001254 /*
1255 * Set state to created. Thread will transition
1256 * to TD_INITIALIZED when it's done setting up.
1257 */
Jens Axboeebac4652005-12-08 15:25:21 +01001258 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001259 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001260 nr_started++;
1261
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001262 if (td->o.use_thread) {
Jens Axboeee56ad52008-02-01 10:30:20 +01001263 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001264 if (pthread_create(&td->thread, NULL,
1265 thread_main, td)) {
Jens Axboef4705a72008-03-10 10:52:22 +01001266 perror("pthread_create");
Jens Axboeebac4652005-12-08 15:25:21 +01001267 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001268 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001269 }
Jens Axboef4705a72008-03-10 10:52:22 +01001270 if (pthread_detach(td->thread) < 0)
1271 perror("pthread_detach");
Jens Axboeebac4652005-12-08 15:25:21 +01001272 } else {
Jens Axboe5e1d3062008-05-23 11:55:53 +02001273 pid_t pid;
Jens Axboeee56ad52008-02-01 10:30:20 +01001274 dprint(FD_PROCESS, "will fork\n");
Jens Axboe5e1d3062008-05-23 11:55:53 +02001275 pid = fork();
1276 if (!pid) {
Jens Axboea6418142007-02-17 04:47:18 +01001277 int ret = fork_main(shm_id, i);
1278
Jens Axboe5e1d3062008-05-23 11:55:53 +02001279 _exit(ret);
1280 } else if (i == fio_debug_jobno)
1281 *fio_debug_jobp = pid;
Jens Axboeebac4652005-12-08 15:25:21 +01001282 }
Jens Axboecdd18ad2008-02-27 18:58:00 +01001283 fio_mutex_down(startup_mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001284 }
1285
1286 /*
Jens Axboe75154842006-06-01 13:56:09 +02001287 * Wait for the started threads to transition to
1288 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001289 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001290 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001291 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001292 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001293 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1294 break;
1295
1296 usleep(100000);
1297
1298 for (i = 0; i < this_jobs; i++) {
1299 td = map[i];
1300 if (!td)
1301 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001302 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001303 map[i] = NULL;
1304 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001305 } else if (td->runstate >= TD_EXITED) {
1306 map[i] = NULL;
1307 left--;
1308 todo--;
1309 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001310 }
1311 }
1312 }
1313
1314 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001315 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001316 for (i = 0; i < this_jobs; i++) {
1317 td = map[i];
1318 if (!td)
1319 continue;
1320 kill(td->pid, SIGTERM);
1321 }
1322 break;
1323 }
1324
1325 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001326 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001327 */
Jens Axboe34572e22006-10-20 09:33:18 +02001328 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001329 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001330 continue;
1331
1332 td_set_runstate(td, TD_RUNNING);
1333 nr_running++;
1334 nr_started--;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001335 m_rate += td->o.ratemin;
1336 t_rate += td->o.rate;
Jens Axboe75154842006-06-01 13:56:09 +02001337 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001338 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001339 }
1340
1341 reap_threads(&nr_running, &t_rate, &m_rate);
1342
1343 if (todo)
1344 usleep(100000);
1345 }
1346
1347 while (nr_running) {
1348 reap_threads(&nr_running, &t_rate, &m_rate);
1349 usleep(10000);
1350 }
1351
1352 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001353 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001354}
1355
Jens Axboeebac4652005-12-08 15:25:21 +01001356int main(int argc, char *argv[])
1357{
Jens Axboe29d610e2007-02-06 13:25:33 +01001358 long ps;
1359
Jens Axboe2e5cdb12008-03-01 18:52:49 +01001360 sinit();
1361
Jens Axboedbe11252007-02-11 00:19:51 +01001362 /*
1363 * We need locale for number printing, if it isn't set then just
1364 * go with the US format.
1365 */
1366 if (!getenv("LC_NUMERIC"))
1367 setlocale(LC_NUMERIC, "en_US");
1368
Jens Axboeebac4652005-12-08 15:25:21 +01001369 if (parse_options(argc, argv))
1370 return 1;
1371
Jens Axboe4b472fa2007-04-04 11:04:34 +02001372 if (!thread_number)
1373 return 0;
Jens Axboeebac4652005-12-08 15:25:21 +01001374
Jens Axboe29d610e2007-02-06 13:25:33 +01001375 ps = sysconf(_SC_PAGESIZE);
1376 if (ps < 0) {
1377 log_err("Failed to get page size\n");
1378 return 1;
1379 }
1380
Jens Axboecfc99db2007-03-14 10:34:47 +01001381 page_size = ps;
Jens Axboe29d610e2007-02-06 13:25:33 +01001382 page_mask = ps - 1;
1383
Jens Axboebb3884d2007-01-17 17:23:11 +11001384 if (write_bw_log) {
1385 setup_log(&agg_io_log[DDIR_READ]);
1386 setup_log(&agg_io_log[DDIR_WRITE]);
1387 }
1388
Jens Axboecdd18ad2008-02-27 18:58:00 +01001389 startup_mutex = fio_mutex_init(0);
Jens Axboe07739b52007-03-08 20:25:46 +01001390
Jens Axboea2f77c92007-02-22 11:53:00 +01001391 set_genesis_time();
1392
Jens Axboeccb0fa22008-05-30 23:18:00 +02001393 status_timer_arm();
Jens Axboeebac4652005-12-08 15:25:21 +01001394
1395 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001396
Jens Axboebb3884d2007-01-17 17:23:11 +11001397 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001398 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001399 if (write_bw_log) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001400 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1401 __finish_log(agg_io_log[DDIR_WRITE],
1402 "agg-write_bw.log");
Jens Axboebb3884d2007-01-17 17:23:11 +11001403 }
1404 }
Jens Axboeebac4652005-12-08 15:25:21 +01001405
Jens Axboecdd18ad2008-02-27 18:58:00 +01001406 fio_mutex_remove(startup_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001407 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001408}