blob: d426ad66f9439a4d5da5f14092d3db8f5b4d628d [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"
38#include "os.h"
39
Jens Axboe29d610e2007-02-06 13:25:33 +010040static unsigned long page_mask;
41#define ALIGN(buf) \
42 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010043
44int groupid = 0;
45int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010046int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020047int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010048
Jens Axboebbfd6b02006-06-07 19:42:54 +020049static volatile int startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010050static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010051static int exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +010052
Jens Axboebb3884d2007-01-17 17:23:11 +110053struct io_log *agg_io_log[2];
54
Jens Axboeebac4652005-12-08 15:25:21 +010055#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020056#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010057
Jens Axboe6ce15a32007-01-12 09:04:41 +010058static inline void td_set_runstate(struct thread_data *td, int runstate)
59{
60 td->runstate = runstate;
61}
62
63static void terminate_threads(int group_id, int forced_kill)
Jens Axboeebac4652005-12-08 15:25:21 +010064{
Jens Axboe34572e22006-10-20 09:33:18 +020065 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010066 int i;
67
Jens Axboe34572e22006-10-20 09:33:18 +020068 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010069 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboed9244942007-03-05 12:32:32 +010070 kill(td->pid, SIGQUIT);
Jens Axboeebac4652005-12-08 15:25:21 +010071 td->terminate = 1;
72 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010073 if (forced_kill)
74 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010075 }
76 }
77}
78
79static void sig_handler(int sig)
80{
81 switch (sig) {
82 case SIGALRM:
83 update_io_ticks();
84 disk_util_timer_arm();
85 print_thread_status();
86 break;
87 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010088 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010089 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010090 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010091 break;
92 }
93}
94
Jens Axboe906c8d72006-06-13 09:37:56 +020095/*
Jens Axboe906c8d72006-06-13 09:37:56 +020096 * Check if we are above the minimum rate given.
97 */
Jens Axboeebac4652005-12-08 15:25:21 +010098static int check_min_rate(struct thread_data *td, struct timeval *now)
99{
Jens Axboe09042002007-02-23 10:56:22 +0100100 unsigned long long bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100101 unsigned long spent;
102 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100103
104 /*
Jens Axboe780bf1a2007-02-28 11:13:49 +0100105 * No minimum rate set, always ok
106 */
107 if (!td->ratemin)
108 return 0;
109
110 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100111 * allow a 2 second settle period in the beginning
112 */
113 if (mtime_since(&td->start, now) < 2000)
114 return 0;
115
Jens Axboe09042002007-02-23 10:56:22 +0100116 if (td_read(td))
117 bytes += td->this_io_bytes[DDIR_READ];
118 if (td_write(td))
119 bytes += td->this_io_bytes[DDIR_WRITE];
120
Jens Axboeebac4652005-12-08 15:25:21 +0100121 /*
122 * if rate blocks is set, sample is running
123 */
124 if (td->rate_bytes) {
125 spent = mtime_since(&td->lastrate, now);
126 if (spent < td->ratecycle)
127 return 0;
128
Jens Axboe413dd452007-02-23 09:26:09 +0100129 if (bytes < td->rate_bytes) {
130 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100131 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100132 } else {
133 rate = (bytes - td->rate_bytes) / spent;
134 if (rate < td->ratemin || bytes < td->rate_bytes) {
135 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
136 return 1;
137 }
Jens Axboeebac4652005-12-08 15:25:21 +0100138 }
139 }
140
Jens Axboe09042002007-02-23 10:56:22 +0100141 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100142 memcpy(&td->lastrate, now, sizeof(*now));
143 return 0;
144}
145
146static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
147{
148 if (!td->timeout)
149 return 0;
150 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
151 return 1;
152
153 return 0;
154}
155
Jens Axboe906c8d72006-06-13 09:37:56 +0200156/*
157 * When job exits, we can cancel the in-flight IO if we are using async
158 * io. Attempt to do so.
159 */
Jens Axboeebac4652005-12-08 15:25:21 +0100160static void cleanup_pending_aio(struct thread_data *td)
161{
Jens Axboeebac4652005-12-08 15:25:21 +0100162 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100163 struct io_u *io_u;
164 int r;
165
166 /*
167 * get immediately available events, if any
168 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100169 r = io_u_queued_complete(td, 0);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100170 if (r < 0)
171 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100172
173 /*
174 * now cancel remaining active events
175 */
Jens Axboe2866c822006-10-09 15:57:48 +0200176 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100177 list_for_each_safe(entry, n, &td->io_u_busylist) {
178 io_u = list_entry(entry, struct io_u, list);
179
Jens Axboe0c6e7512007-02-22 11:19:39 +0100180 /*
181 * if the io_u isn't in flight, then that generally
182 * means someone leaked an io_u. complain but fix
183 * it up, so we don't stall here.
184 */
185 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
186 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100187 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100188 } else {
189 r = td->io_ops->cancel(td, io_u);
190 if (!r)
191 put_io_u(td, io_u);
192 }
Jens Axboeebac4652005-12-08 15:25:21 +0100193 }
194 }
195
Jens Axboe97601022007-02-18 12:47:29 +0100196 if (td->cur_depth)
Jens Axboed7762cf2007-02-23 12:34:57 +0100197 r = io_u_queued_complete(td, td->cur_depth);
Jens Axboeebac4652005-12-08 15:25:21 +0100198}
199
Jens Axboe906c8d72006-06-13 09:37:56 +0200200/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200201 * Helper to handle the final sync of a file. Works just like the normal
202 * io path, just does everything sync.
203 */
204static int fio_io_sync(struct thread_data *td, struct fio_file *f)
205{
206 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200207 int ret;
208
209 if (!io_u)
210 return 1;
211
212 io_u->ddir = DDIR_SYNC;
213 io_u->file = f;
214
215 if (td_io_prep(td, io_u)) {
216 put_io_u(td, io_u);
217 return 1;
218 }
219
Jens Axboe755200a2007-02-19 13:08:12 +0100220requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200221 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100222 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100223 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200224 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200225 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100226 } else if (ret == FIO_Q_QUEUED) {
Jens Axboed7762cf2007-02-23 12:34:57 +0100227 if (io_u_queued_complete(td, 1) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100228 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100229 } else if (ret == FIO_Q_COMPLETED) {
230 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100231 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100232 return 1;
233 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200234
Jens Axboed7762cf2007-02-23 12:34:57 +0100235 if (io_u_sync_complete(td, io_u) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100236 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100237 } else if (ret == FIO_Q_BUSY) {
238 if (td_io_commit(td))
239 return 1;
240 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200241 }
242
243 return 0;
244}
245
246/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100247 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200248 * reads the blocks back in, and checks the crc/md5 of the data.
249 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100250static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100251{
Jens Axboe53cdc682006-10-18 11:50:58 +0200252 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100253 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100254 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200255
256 /*
257 * sync io first and invalidate cache, to make sure we really
258 * read from disk.
259 */
260 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100261 if (fio_io_sync(td, f))
262 break;
263 if (file_invalidate_cache(td, f))
264 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200265 }
Jens Axboeebac4652005-12-08 15:25:21 +0100266
Jens Axboeb2fdda42007-02-20 20:52:51 +0100267 if (td->error)
268 return;
269
Jens Axboeebac4652005-12-08 15:25:21 +0100270 td_set_runstate(td, TD_VERIFYING);
271
Jens Axboe36167d82007-02-18 05:41:31 +0100272 io_u = NULL;
273 while (!td->terminate) {
Jens Axboe54517922007-03-05 10:06:06 +0100274 int ret2;
275
Jens Axboeebac4652005-12-08 15:25:21 +0100276 io_u = __get_io_u(td);
277 if (!io_u)
278 break;
279
Jens Axboe069c2912007-02-21 23:02:39 +0100280 if (runtime_exceeded(td, &io_u->start_time)) {
281 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200282 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100283 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200284
Jens Axboe069c2912007-02-21 23:02:39 +0100285 if (get_next_verify(td, io_u)) {
286 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100287 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100288 }
Jens Axboeebac4652005-12-08 15:25:21 +0100289
Jens Axboe069c2912007-02-21 23:02:39 +0100290 if (td_io_prep(td, io_u)) {
291 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100292 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100293 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100294
295 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100296requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200297 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100298
299 switch (ret) {
300 case FIO_Q_COMPLETED:
301 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100302 ret = -io_u->error;
Jens Axboe54517922007-03-05 10:06:06 +0100303 else if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100304 int bytes = io_u->xfer_buflen - io_u->resid;
305
306 io_u->xfer_buflen = io_u->resid;
307 io_u->xfer_buf += bytes;
308 goto requeue;
309 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100310 ret = io_u_sync_complete(td, io_u);
Jens Axboe49db69a2007-02-21 20:28:14 +0100311 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100312 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100313 continue;
314 case FIO_Q_QUEUED:
315 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100316 case FIO_Q_BUSY:
317 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100318 ret2 = td_io_commit(td);
319 if (ret2 < 0)
320 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100321 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100322 default:
323 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100324 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100325 break;
326 }
327
Jens Axboe99784632007-02-19 10:06:17 +0100328 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100329 break;
330
Jens Axboe3af6ef32007-02-18 06:57:43 +0100331 /*
332 * if we can queue more, do so. but check if there are
333 * completed io_u's first.
334 */
Jens Axboe97601022007-02-18 12:47:29 +0100335 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100336 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100337 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100338
Jens Axboee916b392007-02-20 14:37:26 +0100339 if (td->cur_depth > td->iodepth_low)
340 min_events = td->cur_depth - td->iodepth_low;
341 }
342
Jens Axboe3af6ef32007-02-18 06:57:43 +0100343 /*
344 * Reap required number of io units, if any, and do the
345 * verification on them through the callback handler
346 */
Jens Axboed7762cf2007-02-23 12:34:57 +0100347 if (io_u_queued_complete(td, min_events) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100348 break;
349 }
350
Jens Axboec01c0392007-02-26 12:43:42 +0100351 if (!td->error) {
352 min_events = td->cur_depth;
353
354 if (min_events)
355 ret = io_u_queued_complete(td, min_events);
356 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100357 cleanup_pending_aio(td);
358
359 td_set_runstate(td, TD_RUNNING);
360}
361
Jens Axboe32cd46a2006-06-07 13:40:40 +0200362/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200363 * Not really an io thread, all it does is burn CPU cycles in the specified
364 * manner.
365 */
366static void do_cpuio(struct thread_data *td)
367{
368 struct timeval e;
369 int split = 100 / td->cpuload;
370 int i = 0;
371
372 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100373 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200374
375 if (runtime_exceeded(td, &e))
376 break;
377
378 if (!(i % split))
379 __usec_sleep(10000);
380 else
381 usec_sleep(td, 10000);
382
383 i++;
384 }
385}
386
387/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200388 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200389 * and reaps them, checking for rate and errors along the way.
390 */
Jens Axboeebac4652005-12-08 15:25:21 +0100391static void do_io(struct thread_data *td)
392{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100393 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100394 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200395 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100396
Jens Axboe5853e5a2006-06-08 14:41:05 +0200397 td_set_runstate(td, TD_RUNNING);
398
Jens Axboe39514142007-02-12 18:49:58 +0100399 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100400 struct timeval comp_time;
401 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200402 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100403 struct io_u *io_u;
Jens Axboe54517922007-03-05 10:06:06 +0100404 int ret2;
Jens Axboeebac4652005-12-08 15:25:21 +0100405
406 if (td->terminate)
407 break;
408
Jens Axboe3d7c3912007-02-19 13:16:12 +0100409 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100410 if (!io_u)
411 break;
412
413 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100414
415 if (runtime_exceeded(td, &s)) {
416 put_io_u(td, io_u);
417 break;
418 }
Jens Axboecec6b552007-02-06 20:15:38 +0100419requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200420 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100421
422 switch (ret) {
423 case FIO_Q_COMPLETED:
Jens Axboe54517922007-03-05 10:06:06 +0100424 if (io_u->error)
425 ret = -io_u->error;
426 else if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100427 int bytes = io_u->xfer_buflen - io_u->resid;
428
429 io_u->xfer_buflen = io_u->resid;
430 io_u->xfer_buf += bytes;
431 goto requeue;
432 }
Jens Axboe97601022007-02-18 12:47:29 +0100433 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100434 bytes_done = io_u_sync_complete(td, io_u);
Jens Axboe99784632007-02-19 10:06:17 +0100435 if (bytes_done < 0)
436 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100437 break;
438 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100439 /*
440 * if the engine doesn't have a commit hook,
441 * the io_u is really queued. if it does have such
442 * a hook, it has to call io_u_queued() itself.
443 */
444 if (td->io_ops->commit == NULL)
445 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100446 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100447 case FIO_Q_BUSY:
448 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100449 ret2 = td_io_commit(td);
450 if (ret2 < 0)
451 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100452 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100453 default:
454 assert(ret < 0);
455 put_io_u(td, io_u);
456 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100457 }
458
Jens Axboe99784632007-02-19 10:06:17 +0100459 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100460 break;
461
Jens Axboe97601022007-02-18 12:47:29 +0100462 /*
463 * See if we need to complete some commands
464 */
Jens Axboe755200a2007-02-19 13:08:12 +0100465 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100466 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100467 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100468 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100469
Jens Axboee916b392007-02-20 14:37:26 +0100470 if (td->cur_depth > td->iodepth_low)
471 min_evts = td->cur_depth - td->iodepth_low;
472 }
473
Jens Axboe97601022007-02-18 12:47:29 +0100474 fio_gettime(&comp_time, NULL);
Jens Axboed7762cf2007-02-23 12:34:57 +0100475 bytes_done = io_u_queued_complete(td, min_evts);
Jens Axboe97601022007-02-18 12:47:29 +0100476 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100477 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100478 }
479
Jens Axboe97601022007-02-18 12:47:29 +0100480 if (!bytes_done)
481 continue;
482
Jens Axboeebac4652005-12-08 15:25:21 +0100483 /*
484 * the rate is batched for now, it should work for batches
485 * of completions except the very first one which may look
486 * a little bursty
487 */
Jens Axboe97601022007-02-18 12:47:29 +0100488 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100489
Jens Axboe413dd452007-02-23 09:26:09 +0100490 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100491
Jens Axboe97601022007-02-18 12:47:29 +0100492 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100493 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100494 terminate_threads(td->groupid, 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100495 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100496 break;
497 }
498
Jens Axboe9c1f7432007-01-03 20:43:19 +0100499 if (td->thinktime) {
500 unsigned long long b;
501
502 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100503 if (!(b % td->thinktime_blocks)) {
504 int left;
505
506 if (td->thinktime_spin)
507 __usec_sleep(td->thinktime_spin);
508
509 left = td->thinktime - td->thinktime_spin;
510 if (left)
511 usec_sleep(td, left);
512 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100513 }
Jens Axboeebac4652005-12-08 15:25:21 +0100514 }
515
Jens Axboe4d2413c2006-11-23 11:58:59 +0100516 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100517 struct fio_file *f;
518
Jens Axboec01c0392007-02-26 12:43:42 +0100519 i = td->cur_depth;
520 if (i)
521 ret = io_u_queued_complete(td, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100522
Jens Axboe84585002006-10-19 20:26:22 +0200523 if (should_fsync(td) && td->end_fsync) {
524 td_set_runstate(td, TD_FSYNCING);
525 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200526 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200527 }
Jens Axboec01c0392007-02-26 12:43:42 +0100528 } else
529 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100530}
531
Jens Axboeebac4652005-12-08 15:25:21 +0100532static void cleanup_io_u(struct thread_data *td)
533{
534 struct list_head *entry, *n;
535 struct io_u *io_u;
536
537 list_for_each_safe(entry, n, &td->io_u_freelist) {
538 io_u = list_entry(entry, struct io_u, list);
539
540 list_del(&io_u->list);
541 free(io_u);
542 }
543
Jens Axboe2f9ade32006-10-20 11:25:52 +0200544 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100545}
546
Jens Axboe6b9cea22006-10-30 17:00:24 +0100547/*
548 * "randomly" fill the buffer contents
549 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100550static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100551{
Jens Axboe66eeb292006-11-01 08:35:44 +0100552 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100553
554 while ((void *) ptr - io_u->buf < max_bs) {
555 *ptr = rand() * 0x9e370001;
556 ptr++;
557 }
558}
559
Jens Axboeebac4652005-12-08 15:25:21 +0100560static int init_io_u(struct thread_data *td)
561{
562 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100563 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100564 int i, max_units;
565 char *p;
566
Jens Axboe2866c822006-10-09 15:57:48 +0200567 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200568 return 0;
569
Jens Axboe2866c822006-10-09 15:57:48 +0200570 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100571 max_units = 1;
572 else
573 max_units = td->iodepth;
574
Jens Axboea00735e2006-11-03 08:58:08 +0100575 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100576 td->orig_buffer_size = max_bs * max_units;
577
Jens Axboed0bdaf42006-12-20 14:40:44 +0100578 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100579 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100580 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100581 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100582
Jens Axboe2f9ade32006-10-20 11:25:52 +0200583 if (allocate_io_mem(td))
584 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100585
Jens Axboeebac4652005-12-08 15:25:21 +0100586 p = ALIGN(td->orig_buffer);
587 for (i = 0; i < max_units; i++) {
588 io_u = malloc(sizeof(*io_u));
589 memset(io_u, 0, sizeof(*io_u));
590 INIT_LIST_HEAD(&io_u->list);
591
Jens Axboea00735e2006-11-03 08:58:08 +0100592 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100593 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100594 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100595
Jens Axboeb1ff3402006-02-17 11:35:58 +0100596 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100597 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100598 list_add(&io_u->list, &td->io_u_freelist);
599 }
600
Jens Axboe433afcb2007-02-22 10:39:01 +0100601 io_u_init_timeout();
602
Jens Axboeebac4652005-12-08 15:25:21 +0100603 return 0;
604}
605
Jens Axboeda867742006-06-06 10:39:10 -0700606static int switch_ioscheduler(struct thread_data *td)
607{
608 char tmp[256], tmp2[128];
609 FILE *f;
610 int ret;
611
Jens Axboef48b4672006-10-27 11:30:07 +0200612 if (td->io_ops->flags & FIO_CPUIO)
613 return 0;
614
Jens Axboeda867742006-06-06 10:39:10 -0700615 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
616
617 f = fopen(tmp, "r+");
618 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100619 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700620 return 1;
621 }
622
623 /*
624 * Set io scheduler.
625 */
626 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
627 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100628 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700629 fclose(f);
630 return 1;
631 }
632
633 rewind(f);
634
635 /*
636 * Read back and check that the selected scheduler is now the default.
637 */
638 ret = fread(tmp, 1, sizeof(tmp), f);
639 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100640 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700641 fclose(f);
642 return 1;
643 }
644
645 sprintf(tmp2, "[%s]", td->ioscheduler);
646 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200647 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100648 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700649 fclose(f);
650 return 1;
651 }
652
653 fclose(f);
654 return 0;
655}
656
Jens Axboeebac4652005-12-08 15:25:21 +0100657static void clear_io_state(struct thread_data *td)
658{
Jens Axboe53cdc682006-10-18 11:50:58 +0200659 struct fio_file *f;
660 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100661
Jens Axboe079ad092007-02-20 13:58:20 +0100662 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100663 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100664 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100665
Jens Axboec1324df2007-02-19 19:06:41 +0100666 td->last_was_sync = 0;
667
Jens Axboe53cdc682006-10-18 11:50:58 +0200668 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100669 f->last_completed_pos = 0;
670
Jens Axboe53cdc682006-10-18 11:50:58 +0200671 f->last_pos = 0;
672 if (td->io_ops->flags & FIO_SYNCIO)
673 lseek(f->fd, SEEK_SET, 0);
674
675 if (f->file_map)
676 memset(f->file_map, 0, f->num_maps * sizeof(long));
677 }
Jens Axboeebac4652005-12-08 15:25:21 +0100678}
679
Jens Axboe906c8d72006-06-13 09:37:56 +0200680/*
681 * Entry point for the thread based jobs. The process based jobs end up
682 * here as well, after a little setup.
683 */
Jens Axboeebac4652005-12-08 15:25:21 +0100684static void *thread_main(void *data)
685{
Jens Axboe69008992006-11-24 13:12:56 +0100686 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100687 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100688
689 if (!td->use_thread)
690 setsid();
691
692 td->pid = getpid();
693
Jens Axboeaea47d42006-05-26 19:27:29 +0200694 INIT_LIST_HEAD(&td->io_u_freelist);
695 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100696 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200697 INIT_LIST_HEAD(&td->io_hist_list);
698 INIT_LIST_HEAD(&td->io_log_list);
699
Jens Axboeebac4652005-12-08 15:25:21 +0100700 if (init_io_u(td))
701 goto err;
702
703 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100704 td_verror(td, errno, "cpu_set_affinity");
Jens Axboeebac4652005-12-08 15:25:21 +0100705 goto err;
706 }
707
Jens Axboeaea47d42006-05-26 19:27:29 +0200708 if (init_iolog(td))
709 goto err;
710
Jens Axboeebac4652005-12-08 15:25:21 +0100711 if (td->ioprio) {
712 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100713 td_verror(td, errno, "ioprio_set");
Jens Axboeebac4652005-12-08 15:25:21 +0100714 goto err;
715 }
716 }
717
Jens Axboe1056eaa2006-07-13 10:33:45 -0700718 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100719 td_verror(td, errno, "nice");
Jens Axboeb6f4d882006-06-02 10:32:51 +0200720 goto err;
721 }
722
Jens Axboe75154842006-06-01 13:56:09 +0200723 if (init_random_state(td))
724 goto err;
725
Jens Axboe56f94982006-10-24 09:33:42 +0200726 if (td->ioscheduler && switch_ioscheduler(td))
727 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700728
Jens Axboe75154842006-06-01 13:56:09 +0200729 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200730 fio_sem_up(&startup_sem);
731 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100732
Jens Axboe53cdc682006-10-18 11:50:58 +0200733 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100734 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100735 if (open_files(td))
736 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100737
Jens Axboe7d6c5282007-02-05 10:52:10 +0100738 /*
739 * Do this late, as some IO engines would like to have the
740 * files setup prior to initializing structures.
741 */
742 if (td_io_init(td))
743 goto err;
744
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100745 if (td->exec_prerun) {
746 if (system(td->exec_prerun) < 0)
747 goto err;
748 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200749
Jens Axboe69008992006-11-24 13:12:56 +0100750 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100751 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe079ad092007-02-20 13:58:20 +0100752 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100753
754 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100755 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100756 fio_gettime(&td->start, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100757 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100758
759 if (td->ratemin)
Jens Axboe079ad092007-02-20 13:58:20 +0100760 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100761
762 clear_io_state(td);
763 prune_io_piece_log(td);
764
Jens Axboe2866c822006-10-09 15:57:48 +0200765 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200766 do_cpuio(td);
767 else
768 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100769
Jens Axboe413dd452007-02-23 09:26:09 +0100770 if (td_read(td) && td->io_bytes[DDIR_READ])
771 runtime[DDIR_READ] += utime_since_now(&td->start);
772 if (td_write(td) && td->io_bytes[DDIR_WRITE])
773 runtime[DDIR_WRITE] += utime_since_now(&td->start);
774
Jens Axboeebac4652005-12-08 15:25:21 +0100775 if (td->error || td->terminate)
776 break;
777
778 if (td->verify == VERIFY_NONE)
779 continue;
780
781 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100782 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100783
784 do_verify(td);
785
Jens Axboe69008992006-11-24 13:12:56 +0100786 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100787
788 if (td->error || td->terminate)
789 break;
790 }
791
Jens Axboe36dff962006-11-24 13:29:20 +0100792 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100793 fio_gettime(&td->end_time, NULL);
794 td->runtime[0] = runtime[0] / 1000;
795 td->runtime[1] = runtime[1] / 1000;
796
Jens Axboe079ad092007-02-20 13:58:20 +0100797 if (td->ts.bw_log)
798 finish_log(td, td->ts.bw_log, "bw");
799 if (td->ts.slat_log)
800 finish_log(td, td->ts.slat_log, "slat");
801 if (td->ts.clat_log)
802 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200803 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700804 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100805 if (td->exec_postrun) {
806 if (system(td->exec_postrun) < 0)
807 log_err("fio: postrun %s failed\n", td->exec_postrun);
808 }
Jens Axboeebac4652005-12-08 15:25:21 +0100809
810 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100811 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100812
813err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100814 if (td->error)
815 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200816 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200817 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100818 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100819 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100820 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100821}
822
Jens Axboe906c8d72006-06-13 09:37:56 +0200823/*
824 * We cannot pass the td data into a forked process, so attach the td and
825 * pass it to the thread worker.
826 */
Jens Axboea6418142007-02-17 04:47:18 +0100827static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100828{
829 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100830 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100831
832 data = shmat(shmid, NULL, 0);
833 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100834 int __err = errno;
835
Jens Axboeebac4652005-12-08 15:25:21 +0100836 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100837 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100838 }
839
840 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100841 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100842 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100843 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100844}
845
Jens Axboe906c8d72006-06-13 09:37:56 +0200846/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200847 * Run over the job map and reap the threads that have exited, if any.
848 */
Jens Axboeebac4652005-12-08 15:25:21 +0100849static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
850{
Jens Axboe34572e22006-10-20 09:33:18 +0200851 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100852 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100853
854 /*
855 * reap exited threads (TD_EXITED -> TD_REAPED)
856 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100857 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200858 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100859 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100860
Jens Axboe84585002006-10-19 20:26:22 +0200861 /*
862 * ->io_ops is NULL for a thread that has closed its
863 * io engine
864 */
865 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200866 cputhreads++;
867
Jens Axboea2f77c92007-02-22 11:53:00 +0100868 if (!td->pid || td->runstate == TD_REAPED)
869 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100870 if (td->use_thread) {
871 if (td->runstate == TD_EXITED) {
872 td_set_runstate(td, TD_REAPED);
873 goto reaped;
874 }
875 continue;
876 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100877
878 flags = WNOHANG;
879 if (td->runstate == TD_EXITED)
880 flags = 0;
881
882 /*
883 * check if someone quit or got killed in an unusual way
884 */
885 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100886 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100887 if (errno == ECHILD) {
888 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
889 td_set_runstate(td, TD_REAPED);
890 goto reaped;
891 }
892 perror("waitpid");
893 } else if (ret == td->pid) {
894 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100895 int sig = WTERMSIG(status);
896
Jens Axboed9244942007-03-05 12:32:32 +0100897 if (sig != SIGQUIT)
898 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +0100899 td_set_runstate(td, TD_REAPED);
900 goto reaped;
901 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100902 if (WIFEXITED(status)) {
903 if (WEXITSTATUS(status) && !td->error)
904 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100905
Jens Axboea2f77c92007-02-22 11:53:00 +0100906 td_set_runstate(td, TD_REAPED);
907 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100908 }
909 }
Jens Axboeebac4652005-12-08 15:25:21 +0100910
Jens Axboea2f77c92007-02-22 11:53:00 +0100911 /*
912 * thread is not dead, continue
913 */
914 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100915reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100916 if (td->use_thread) {
917 long ret;
918
919 if (pthread_join(td->thread, (void *) &ret))
920 perror("pthread_join");
921 }
922
Jens Axboeebac4652005-12-08 15:25:21 +0100923 (*nr_running)--;
924 (*m_rate) -= td->ratemin;
925 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100926
927 if (td->error)
928 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100929 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200930
Jens Axboe4d2413c2006-11-23 11:58:59 +0100931 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100932 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100933}
934
Jens Axboe906c8d72006-06-13 09:37:56 +0200935/*
936 * Main function for kicking off and reaping jobs, as needed.
937 */
Jens Axboeebac4652005-12-08 15:25:21 +0100938static void run_threads(void)
939{
Jens Axboeebac4652005-12-08 15:25:21 +0100940 struct thread_data *td;
941 unsigned long spent;
942 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200943
Jens Axboe2f9ade32006-10-20 11:25:52 +0200944 if (fio_pin_memory())
945 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100946
Jens Axboec6ae0a52006-06-12 11:04:44 +0200947 if (!terse_output) {
948 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
949 fflush(stdout);
950 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200951
Jens Axboe4efa9702006-05-31 11:56:49 +0200952 signal(SIGINT, sig_handler);
953 signal(SIGALRM, sig_handler);
954
Jens Axboeebac4652005-12-08 15:25:21 +0100955 todo = thread_number;
956 nr_running = 0;
957 nr_started = 0;
958 m_rate = t_rate = 0;
959
Jens Axboe34572e22006-10-20 09:33:18 +0200960 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200961 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100962
Jens Axboe380cf262007-01-11 14:01:27 +0100963 if (!td->create_serialize) {
964 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100965 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100966 }
Jens Axboeebac4652005-12-08 15:25:21 +0100967
968 /*
969 * do file setup here so it happens sequentially,
970 * we don't want X number of threads getting their
971 * client data interspersed on disk
972 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200973 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100974 exit_value++;
975 if (td->error)
976 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100977 td_set_runstate(td, TD_REAPED);
978 todo--;
979 }
Jens Axboe380cf262007-01-11 14:01:27 +0100980
981 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100982 }
983
Jens Axboea2f77c92007-02-22 11:53:00 +0100984 set_genesis_time();
985
Jens Axboeebac4652005-12-08 15:25:21 +0100986 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200987 struct thread_data *map[MAX_JOBS];
988 struct timeval this_start;
989 int this_jobs = 0, left;
990
Jens Axboeebac4652005-12-08 15:25:21 +0100991 /*
992 * create threads (TD_NOT_CREATED -> TD_CREATED)
993 */
Jens Axboe34572e22006-10-20 09:33:18 +0200994 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100995 if (td->runstate != TD_NOT_CREATED)
996 continue;
997
998 /*
999 * never got a chance to start, killed by other
1000 * thread for some reason
1001 */
1002 if (td->terminate) {
1003 todo--;
1004 continue;
1005 }
1006
1007 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001008 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001009
1010 if (td->start_delay * 1000 > spent)
1011 continue;
1012 }
1013
1014 if (td->stonewall && (nr_started || nr_running))
1015 break;
1016
Jens Axboe75154842006-06-01 13:56:09 +02001017 /*
1018 * Set state to created. Thread will transition
1019 * to TD_INITIALIZED when it's done setting up.
1020 */
Jens Axboeebac4652005-12-08 15:25:21 +01001021 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001022 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001023 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001024 nr_started++;
1025
1026 if (td->use_thread) {
1027 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1028 perror("thread_create");
1029 nr_started--;
1030 }
1031 } else {
1032 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +02001033 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001034 else {
Jens Axboea6418142007-02-17 04:47:18 +01001035 int ret = fork_main(shm_id, i);
1036
1037 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001038 }
1039 }
1040 }
1041
1042 /*
Jens Axboe75154842006-06-01 13:56:09 +02001043 * Wait for the started threads to transition to
1044 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001045 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001046 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001047 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001048 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001049 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1050 break;
1051
1052 usleep(100000);
1053
1054 for (i = 0; i < this_jobs; i++) {
1055 td = map[i];
1056 if (!td)
1057 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001058 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001059 map[i] = NULL;
1060 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001061 } else if (td->runstate >= TD_EXITED) {
1062 map[i] = NULL;
1063 left--;
1064 todo--;
1065 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001066 }
1067 }
1068 }
1069
1070 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001071 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001072 for (i = 0; i < this_jobs; i++) {
1073 td = map[i];
1074 if (!td)
1075 continue;
1076 kill(td->pid, SIGTERM);
1077 }
1078 break;
1079 }
1080
1081 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001082 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001083 */
Jens Axboe34572e22006-10-20 09:33:18 +02001084 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001085 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001086 continue;
1087
1088 td_set_runstate(td, TD_RUNNING);
1089 nr_running++;
1090 nr_started--;
1091 m_rate += td->ratemin;
1092 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001093 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001094 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001095 }
1096
1097 reap_threads(&nr_running, &t_rate, &m_rate);
1098
1099 if (todo)
1100 usleep(100000);
1101 }
1102
1103 while (nr_running) {
1104 reap_threads(&nr_running, &t_rate, &m_rate);
1105 usleep(10000);
1106 }
1107
1108 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001109 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001110}
1111
Jens Axboeebac4652005-12-08 15:25:21 +01001112int main(int argc, char *argv[])
1113{
Jens Axboe29d610e2007-02-06 13:25:33 +01001114 long ps;
1115
Jens Axboedbe11252007-02-11 00:19:51 +01001116 /*
1117 * We need locale for number printing, if it isn't set then just
1118 * go with the US format.
1119 */
1120 if (!getenv("LC_NUMERIC"))
1121 setlocale(LC_NUMERIC, "en_US");
1122
Jens Axboeebac4652005-12-08 15:25:21 +01001123 if (parse_options(argc, argv))
1124 return 1;
1125
1126 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001127 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001128 return 1;
1129 }
1130
Jens Axboe29d610e2007-02-06 13:25:33 +01001131 ps = sysconf(_SC_PAGESIZE);
1132 if (ps < 0) {
1133 log_err("Failed to get page size\n");
1134 return 1;
1135 }
1136
1137 page_mask = ps - 1;
1138
Jens Axboebb3884d2007-01-17 17:23:11 +11001139 if (write_bw_log) {
1140 setup_log(&agg_io_log[DDIR_READ]);
1141 setup_log(&agg_io_log[DDIR_WRITE]);
1142 }
1143
Jens Axboea2f77c92007-02-22 11:53:00 +01001144 set_genesis_time();
1145
Jens Axboeebac4652005-12-08 15:25:21 +01001146 disk_util_timer_arm();
1147
1148 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001149
Jens Axboebb3884d2007-01-17 17:23:11 +11001150 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001151 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001152 if (write_bw_log) {
1153 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1154 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1155 }
1156 }
Jens Axboeebac4652005-12-08 15:25:21 +01001157
Jens Axboe437c9b72007-02-13 18:20:37 +01001158 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001159}