blob: 58e03f9a6b94687011d720235decc238ffaf106b [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) {
70 td->terminate = 1;
71 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010072 if (forced_kill)
73 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010074 }
75 }
76}
77
78static void sig_handler(int sig)
79{
80 switch (sig) {
81 case SIGALRM:
82 update_io_ticks();
83 disk_util_timer_arm();
84 print_thread_status();
85 break;
86 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010088 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010089 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010090 break;
91 }
92}
93
Jens Axboe906c8d72006-06-13 09:37:56 +020094/*
Jens Axboe906c8d72006-06-13 09:37:56 +020095 * Check if we are above the minimum rate given.
96 */
Jens Axboeebac4652005-12-08 15:25:21 +010097static int check_min_rate(struct thread_data *td, struct timeval *now)
98{
99 unsigned long spent;
100 unsigned long rate;
Jens Axboeebac4652005-12-08 15:25:21 +0100101
102 /*
103 * allow a 2 second settle period in the beginning
104 */
105 if (mtime_since(&td->start, now) < 2000)
106 return 0;
107
108 /*
109 * if rate blocks is set, sample is running
110 */
111 if (td->rate_bytes) {
Jens Axboe413dd452007-02-23 09:26:09 +0100112 unsigned long long bytes = 0;
113
Jens Axboeebac4652005-12-08 15:25:21 +0100114 spent = mtime_since(&td->lastrate, now);
115 if (spent < td->ratecycle)
116 return 0;
117
Jens Axboe413dd452007-02-23 09:26:09 +0100118 if (td_read(td))
119 bytes += td->this_io_bytes[DDIR_READ];
120 if (td_write(td))
121 bytes += td->this_io_bytes[DDIR_WRITE];
122
123 if (bytes < td->rate_bytes) {
124 fprintf(f_out, "%s: min rate %u not met\n", td->name, td->ratemin);
Jens Axboeebac4652005-12-08 15:25:21 +0100125 return 1;
Jens Axboe413dd452007-02-23 09:26:09 +0100126 } else {
127 rate = (bytes - td->rate_bytes) / spent;
128 if (rate < td->ratemin || bytes < td->rate_bytes) {
129 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
130 return 1;
131 }
Jens Axboeebac4652005-12-08 15:25:21 +0100132 }
Jens Axboe413dd452007-02-23 09:26:09 +0100133 td->rate_bytes = bytes;
Jens Axboeebac4652005-12-08 15:25:21 +0100134 }
135
Jens Axboeebac4652005-12-08 15:25:21 +0100136 memcpy(&td->lastrate, now, sizeof(*now));
137 return 0;
138}
139
140static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
141{
142 if (!td->timeout)
143 return 0;
144 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
145 return 1;
146
147 return 0;
148}
149
Jens Axboe906c8d72006-06-13 09:37:56 +0200150/*
151 * When job exits, we can cancel the in-flight IO if we are using async
152 * io. Attempt to do so.
153 */
Jens Axboeebac4652005-12-08 15:25:21 +0100154static void cleanup_pending_aio(struct thread_data *td)
155{
Jens Axboeebac4652005-12-08 15:25:21 +0100156 struct list_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100157 struct io_u *io_u;
158 int r;
159
160 /*
161 * get immediately available events, if any
162 */
Jens Axboeb2fdda42007-02-20 20:52:51 +0100163 r = io_u_queued_complete(td, 0, NULL);
164 if (r < 0)
165 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100166
167 /*
168 * now cancel remaining active events
169 */
Jens Axboe2866c822006-10-09 15:57:48 +0200170 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100171 list_for_each_safe(entry, n, &td->io_u_busylist) {
172 io_u = list_entry(entry, struct io_u, list);
173
Jens Axboe0c6e7512007-02-22 11:19:39 +0100174 /*
175 * if the io_u isn't in flight, then that generally
176 * means someone leaked an io_u. complain but fix
177 * it up, so we don't stall here.
178 */
179 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
180 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100181 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100182 } else {
183 r = td->io_ops->cancel(td, io_u);
184 if (!r)
185 put_io_u(td, io_u);
186 }
Jens Axboeebac4652005-12-08 15:25:21 +0100187 }
188 }
189
Jens Axboe97601022007-02-18 12:47:29 +0100190 if (td->cur_depth)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100191 r = io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100192}
193
Jens Axboe906c8d72006-06-13 09:37:56 +0200194/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200195 * Helper to handle the final sync of a file. Works just like the normal
196 * io path, just does everything sync.
197 */
198static int fio_io_sync(struct thread_data *td, struct fio_file *f)
199{
200 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200201 int ret;
202
203 if (!io_u)
204 return 1;
205
206 io_u->ddir = DDIR_SYNC;
207 io_u->file = f;
208
209 if (td_io_prep(td, io_u)) {
210 put_io_u(td, io_u);
211 return 1;
212 }
213
Jens Axboe755200a2007-02-19 13:08:12 +0100214requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200215 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100216 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100217 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200218 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200219 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100220 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe49db69a2007-02-21 20:28:14 +0100221 if (io_u_queued_complete(td, 1, NULL) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100222 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100223 } else if (ret == FIO_Q_COMPLETED) {
224 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100225 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100226 return 1;
227 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200228
Jens Axboeb2fdda42007-02-20 20:52:51 +0100229 if (io_u_sync_complete(td, io_u, NULL) < 0)
230 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100231 } else if (ret == FIO_Q_BUSY) {
232 if (td_io_commit(td))
233 return 1;
234 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200235 }
236
237 return 0;
238}
239
240/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200241 * The main verify engine. Runs over the writes we previusly submitted,
242 * reads the blocks back in, and checks the crc/md5 of the data.
243 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100244static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100245{
Jens Axboe53cdc682006-10-18 11:50:58 +0200246 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100247 struct io_u *io_u;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100248 int ret, i, min_events;
Jens Axboee5b401d2006-10-18 16:03:40 +0200249
250 /*
251 * sync io first and invalidate cache, to make sure we really
252 * read from disk.
253 */
254 for_each_file(td, f, i) {
Jens Axboeb2fdda42007-02-20 20:52:51 +0100255 if (fio_io_sync(td, f))
256 break;
257 if (file_invalidate_cache(td, f))
258 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200259 }
Jens Axboeebac4652005-12-08 15:25:21 +0100260
Jens Axboeb2fdda42007-02-20 20:52:51 +0100261 if (td->error)
262 return;
263
Jens Axboeebac4652005-12-08 15:25:21 +0100264 td_set_runstate(td, TD_VERIFYING);
265
Jens Axboe36167d82007-02-18 05:41:31 +0100266 io_u = NULL;
267 while (!td->terminate) {
Jens Axboeebac4652005-12-08 15:25:21 +0100268 io_u = __get_io_u(td);
269 if (!io_u)
270 break;
271
Jens Axboe069c2912007-02-21 23:02:39 +0100272 if (runtime_exceeded(td, &io_u->start_time)) {
273 put_io_u(td, io_u);
Jens Axboe53cdc682006-10-18 11:50:58 +0200274 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100275 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200276
Jens Axboe069c2912007-02-21 23:02:39 +0100277 if (get_next_verify(td, io_u)) {
278 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100279 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100280 }
Jens Axboeebac4652005-12-08 15:25:21 +0100281
Jens Axboe069c2912007-02-21 23:02:39 +0100282 if (td_io_prep(td, io_u)) {
283 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100284 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100285 }
Jens Axboe36167d82007-02-18 05:41:31 +0100286requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200287 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100288
289 switch (ret) {
290 case FIO_Q_COMPLETED:
291 if (io_u->error)
Jens Axboe22819ec2007-02-18 07:47:14 +0100292 ret = -io_u->error;
Jens Axboe36167d82007-02-18 05:41:31 +0100293 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
294 int bytes = io_u->xfer_buflen - io_u->resid;
295
296 io_u->xfer_buflen = io_u->resid;
297 io_u->xfer_buf += bytes;
298 goto requeue;
299 }
Jens Axboe99784632007-02-19 10:06:17 +0100300 ret = io_u_sync_complete(td, io_u, verify_io_u);
Jens Axboe49db69a2007-02-21 20:28:14 +0100301 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100302 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100303 continue;
304 case FIO_Q_QUEUED:
305 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100306 case FIO_Q_BUSY:
307 requeue_io_u(td, &io_u);
308 ret = td_io_commit(td);
309 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100310 default:
311 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100312 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100313 break;
314 }
315
Jens Axboe99784632007-02-19 10:06:17 +0100316 if (ret < 0 || td->error)
Jens Axboeebac4652005-12-08 15:25:21 +0100317 break;
318
Jens Axboe3af6ef32007-02-18 06:57:43 +0100319 /*
320 * if we can queue more, do so. but check if there are
321 * completed io_u's first.
322 */
Jens Axboe97601022007-02-18 12:47:29 +0100323 min_events = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100324 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe3af6ef32007-02-18 06:57:43 +0100325 min_events = 1;
Jens Axboe3af6ef32007-02-18 06:57:43 +0100326
Jens Axboee916b392007-02-20 14:37:26 +0100327 if (td->cur_depth > td->iodepth_low)
328 min_events = td->cur_depth - td->iodepth_low;
329 }
330
Jens Axboe3af6ef32007-02-18 06:57:43 +0100331 /*
332 * Reap required number of io units, if any, and do the
333 * verification on them through the callback handler
334 */
Jens Axboe49db69a2007-02-21 20:28:14 +0100335 if (io_u_queued_complete(td, min_events, verify_io_u) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100336 break;
337 }
338
Jens Axboeebac4652005-12-08 15:25:21 +0100339 if (td->cur_depth)
340 cleanup_pending_aio(td);
341
342 td_set_runstate(td, TD_RUNNING);
343}
344
Jens Axboe32cd46a2006-06-07 13:40:40 +0200345/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200346 * Not really an io thread, all it does is burn CPU cycles in the specified
347 * manner.
348 */
349static void do_cpuio(struct thread_data *td)
350{
351 struct timeval e;
352 int split = 100 / td->cpuload;
353 int i = 0;
354
355 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100356 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200357
358 if (runtime_exceeded(td, &e))
359 break;
360
361 if (!(i % split))
362 __usec_sleep(10000);
363 else
364 usec_sleep(td, 10000);
365
366 i++;
367 }
368}
369
370/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200371 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200372 * and reaps them, checking for rate and errors along the way.
373 */
Jens Axboeebac4652005-12-08 15:25:21 +0100374static void do_io(struct thread_data *td)
375{
Jens Axboe02bcaa82006-11-24 10:42:00 +0100376 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100377 unsigned long usec;
Jens Axboe84585002006-10-19 20:26:22 +0200378 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100379
Jens Axboe5853e5a2006-06-08 14:41:05 +0200380 td_set_runstate(td, TD_RUNNING);
381
Jens Axboe39514142007-02-12 18:49:58 +0100382 while ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->io_size) {
Jens Axboe97601022007-02-18 12:47:29 +0100383 struct timeval comp_time;
384 long bytes_done = 0;
Jens Axboe84585002006-10-19 20:26:22 +0200385 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100386 struct io_u *io_u;
387
388 if (td->terminate)
389 break;
390
Jens Axboe3d7c3912007-02-19 13:16:12 +0100391 io_u = get_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100392 if (!io_u)
393 break;
394
395 memcpy(&s, &io_u->start_time, sizeof(s));
Jens Axboe97601022007-02-18 12:47:29 +0100396
397 if (runtime_exceeded(td, &s)) {
398 put_io_u(td, io_u);
399 break;
400 }
Jens Axboecec6b552007-02-06 20:15:38 +0100401requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200402 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100403
404 switch (ret) {
405 case FIO_Q_COMPLETED:
406 if (io_u->error) {
407 ret = io_u->error;
Jens Axboecec6b552007-02-06 20:15:38 +0100408 break;
409 }
Jens Axboe36167d82007-02-18 05:41:31 +0100410 if (io_u->xfer_buflen != io_u->resid && io_u->resid) {
411 int bytes = io_u->xfer_buflen - io_u->resid;
412
413 io_u->xfer_buflen = io_u->resid;
414 io_u->xfer_buf += bytes;
415 goto requeue;
416 }
Jens Axboe97601022007-02-18 12:47:29 +0100417 fio_gettime(&comp_time, NULL);
418 bytes_done = io_u_sync_complete(td, io_u, NULL);
Jens Axboe99784632007-02-19 10:06:17 +0100419 if (bytes_done < 0)
420 ret = bytes_done;
Jens Axboe36167d82007-02-18 05:41:31 +0100421 break;
422 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100423 /*
424 * if the engine doesn't have a commit hook,
425 * the io_u is really queued. if it does have such
426 * a hook, it has to call io_u_queued() itself.
427 */
428 if (td->io_ops->commit == NULL)
429 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100430 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100431 case FIO_Q_BUSY:
432 requeue_io_u(td, &io_u);
433 ret = td_io_commit(td);
434 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100435 default:
436 assert(ret < 0);
437 put_io_u(td, io_u);
438 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100439 }
440
Jens Axboe99784632007-02-19 10:06:17 +0100441 if (ret < 0 || td->error)
Jens Axboe36167d82007-02-18 05:41:31 +0100442 break;
443
Jens Axboe97601022007-02-18 12:47:29 +0100444 /*
445 * See if we need to complete some commands
446 */
Jens Axboe755200a2007-02-19 13:08:12 +0100447 if (ret == FIO_Q_QUEUED || ret == FIO_Q_BUSY) {
Jens Axboe97601022007-02-18 12:47:29 +0100448 min_evts = 0;
Jens Axboee916b392007-02-20 14:37:26 +0100449 if (queue_full(td) || ret == FIO_Q_BUSY) {
Jens Axboe36167d82007-02-18 05:41:31 +0100450 min_evts = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100451
Jens Axboee916b392007-02-20 14:37:26 +0100452 if (td->cur_depth > td->iodepth_low)
453 min_evts = td->cur_depth - td->iodepth_low;
454 }
455
Jens Axboe97601022007-02-18 12:47:29 +0100456 fio_gettime(&comp_time, NULL);
457 bytes_done = io_u_queued_complete(td, min_evts, NULL);
458 if (bytes_done < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100459 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100460 }
461
Jens Axboe97601022007-02-18 12:47:29 +0100462 if (!bytes_done)
463 continue;
464
Jens Axboeebac4652005-12-08 15:25:21 +0100465 /*
466 * the rate is batched for now, it should work for batches
467 * of completions except the very first one which may look
468 * a little bursty
469 */
Jens Axboe97601022007-02-18 12:47:29 +0100470 usec = utime_since(&s, &comp_time);
Jens Axboeebac4652005-12-08 15:25:21 +0100471
Jens Axboe413dd452007-02-23 09:26:09 +0100472 rate_throttle(td, usec, bytes_done);
Jens Axboeebac4652005-12-08 15:25:21 +0100473
Jens Axboe97601022007-02-18 12:47:29 +0100474 if (check_min_rate(td, &comp_time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100475 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100476 terminate_threads(td->groupid, 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100477 td_verror(td, ENODATA, "check_min_rate");
Jens Axboeebac4652005-12-08 15:25:21 +0100478 break;
479 }
480
Jens Axboe9c1f7432007-01-03 20:43:19 +0100481 if (td->thinktime) {
482 unsigned long long b;
483
484 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe48097d52007-02-17 06:30:44 +0100485 if (!(b % td->thinktime_blocks)) {
486 int left;
487
488 if (td->thinktime_spin)
489 __usec_sleep(td->thinktime_spin);
490
491 left = td->thinktime - td->thinktime_spin;
492 if (left)
493 usec_sleep(td, left);
494 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100495 }
Jens Axboeebac4652005-12-08 15:25:21 +0100496 }
497
Jens Axboe4d2413c2006-11-23 11:58:59 +0100498 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100499 struct fio_file *f;
500
Jens Axboe84585002006-10-19 20:26:22 +0200501 if (td->cur_depth)
502 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100503
Jens Axboe84585002006-10-19 20:26:22 +0200504 if (should_fsync(td) && td->end_fsync) {
505 td_set_runstate(td, TD_FSYNCING);
506 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200507 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200508 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200509 }
Jens Axboeebac4652005-12-08 15:25:21 +0100510}
511
Jens Axboeebac4652005-12-08 15:25:21 +0100512static void cleanup_io_u(struct thread_data *td)
513{
514 struct list_head *entry, *n;
515 struct io_u *io_u;
516
517 list_for_each_safe(entry, n, &td->io_u_freelist) {
518 io_u = list_entry(entry, struct io_u, list);
519
520 list_del(&io_u->list);
521 free(io_u);
522 }
523
Jens Axboe2f9ade32006-10-20 11:25:52 +0200524 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100525}
526
Jens Axboe6b9cea22006-10-30 17:00:24 +0100527/*
528 * "randomly" fill the buffer contents
529 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100530static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100531{
Jens Axboe66eeb292006-11-01 08:35:44 +0100532 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100533
534 while ((void *) ptr - io_u->buf < max_bs) {
535 *ptr = rand() * 0x9e370001;
536 ptr++;
537 }
538}
539
Jens Axboeebac4652005-12-08 15:25:21 +0100540static int init_io_u(struct thread_data *td)
541{
542 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100543 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100544 int i, max_units;
545 char *p;
546
Jens Axboe2866c822006-10-09 15:57:48 +0200547 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200548 return 0;
549
Jens Axboe2866c822006-10-09 15:57:48 +0200550 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100551 max_units = 1;
552 else
553 max_units = td->iodepth;
554
Jens Axboea00735e2006-11-03 08:58:08 +0100555 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100556 td->orig_buffer_size = max_bs * max_units;
557
Jens Axboed0bdaf42006-12-20 14:40:44 +0100558 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100559 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100560 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100561 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100562
Jens Axboe2f9ade32006-10-20 11:25:52 +0200563 if (allocate_io_mem(td))
564 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100565
Jens Axboeebac4652005-12-08 15:25:21 +0100566 p = ALIGN(td->orig_buffer);
567 for (i = 0; i < max_units; i++) {
568 io_u = malloc(sizeof(*io_u));
569 memset(io_u, 0, sizeof(*io_u));
570 INIT_LIST_HEAD(&io_u->list);
571
Jens Axboea00735e2006-11-03 08:58:08 +0100572 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100573 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100574 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100575
Jens Axboeb1ff3402006-02-17 11:35:58 +0100576 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100577 io_u->flags = IO_U_F_FREE;
Jens Axboeebac4652005-12-08 15:25:21 +0100578 list_add(&io_u->list, &td->io_u_freelist);
579 }
580
Jens Axboe433afcb2007-02-22 10:39:01 +0100581 io_u_init_timeout();
582
Jens Axboeebac4652005-12-08 15:25:21 +0100583 return 0;
584}
585
Jens Axboeda867742006-06-06 10:39:10 -0700586static int switch_ioscheduler(struct thread_data *td)
587{
588 char tmp[256], tmp2[128];
589 FILE *f;
590 int ret;
591
Jens Axboef48b4672006-10-27 11:30:07 +0200592 if (td->io_ops->flags & FIO_CPUIO)
593 return 0;
594
Jens Axboeda867742006-06-06 10:39:10 -0700595 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
596
597 f = fopen(tmp, "r+");
598 if (!f) {
Jens Axboee1161c32007-02-22 19:36:48 +0100599 td_verror(td, errno, "fopen");
Jens Axboeda867742006-06-06 10:39:10 -0700600 return 1;
601 }
602
603 /*
604 * Set io scheduler.
605 */
606 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
607 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100608 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700609 fclose(f);
610 return 1;
611 }
612
613 rewind(f);
614
615 /*
616 * Read back and check that the selected scheduler is now the default.
617 */
618 ret = fread(tmp, 1, sizeof(tmp), f);
619 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100620 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700621 fclose(f);
622 return 1;
623 }
624
625 sprintf(tmp2, "[%s]", td->ioscheduler);
626 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200627 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100628 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700629 fclose(f);
630 return 1;
631 }
632
633 fclose(f);
634 return 0;
635}
636
Jens Axboeebac4652005-12-08 15:25:21 +0100637static void clear_io_state(struct thread_data *td)
638{
Jens Axboe53cdc682006-10-18 11:50:58 +0200639 struct fio_file *f;
640 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100641
Jens Axboe079ad092007-02-20 13:58:20 +0100642 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100643 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100644 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100645
Jens Axboec1324df2007-02-19 19:06:41 +0100646 td->last_was_sync = 0;
647
Jens Axboe53cdc682006-10-18 11:50:58 +0200648 for_each_file(td, f, i) {
Jens Axboec1324df2007-02-19 19:06:41 +0100649 f->last_completed_pos = 0;
650
Jens Axboe53cdc682006-10-18 11:50:58 +0200651 f->last_pos = 0;
652 if (td->io_ops->flags & FIO_SYNCIO)
653 lseek(f->fd, SEEK_SET, 0);
654
655 if (f->file_map)
656 memset(f->file_map, 0, f->num_maps * sizeof(long));
657 }
Jens Axboeebac4652005-12-08 15:25:21 +0100658}
659
Jens Axboe906c8d72006-06-13 09:37:56 +0200660/*
661 * Entry point for the thread based jobs. The process based jobs end up
662 * here as well, after a little setup.
663 */
Jens Axboeebac4652005-12-08 15:25:21 +0100664static void *thread_main(void *data)
665{
Jens Axboe69008992006-11-24 13:12:56 +0100666 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100667 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100668
669 if (!td->use_thread)
670 setsid();
671
672 td->pid = getpid();
673
Jens Axboeaea47d42006-05-26 19:27:29 +0200674 INIT_LIST_HEAD(&td->io_u_freelist);
675 INIT_LIST_HEAD(&td->io_u_busylist);
Jens Axboe755200a2007-02-19 13:08:12 +0100676 INIT_LIST_HEAD(&td->io_u_requeues);
Jens Axboeaea47d42006-05-26 19:27:29 +0200677 INIT_LIST_HEAD(&td->io_hist_list);
678 INIT_LIST_HEAD(&td->io_log_list);
679
Jens Axboeebac4652005-12-08 15:25:21 +0100680 if (init_io_u(td))
681 goto err;
682
683 if (fio_setaffinity(td) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100684 td_verror(td, errno, "cpu_set_affinity");
Jens Axboeebac4652005-12-08 15:25:21 +0100685 goto err;
686 }
687
Jens Axboeaea47d42006-05-26 19:27:29 +0200688 if (init_iolog(td))
689 goto err;
690
Jens Axboeebac4652005-12-08 15:25:21 +0100691 if (td->ioprio) {
692 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100693 td_verror(td, errno, "ioprio_set");
Jens Axboeebac4652005-12-08 15:25:21 +0100694 goto err;
695 }
696 }
697
Jens Axboe1056eaa2006-07-13 10:33:45 -0700698 if (nice(td->nice) == -1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100699 td_verror(td, errno, "nice");
Jens Axboeb6f4d882006-06-02 10:32:51 +0200700 goto err;
701 }
702
Jens Axboe75154842006-06-01 13:56:09 +0200703 if (init_random_state(td))
704 goto err;
705
Jens Axboe56f94982006-10-24 09:33:42 +0200706 if (td->ioscheduler && switch_ioscheduler(td))
707 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700708
Jens Axboe75154842006-06-01 13:56:09 +0200709 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200710 fio_sem_up(&startup_sem);
711 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100712
Jens Axboe53cdc682006-10-18 11:50:58 +0200713 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100714 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100715 if (open_files(td))
716 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100717
Jens Axboe7d6c5282007-02-05 10:52:10 +0100718 /*
719 * Do this late, as some IO engines would like to have the
720 * files setup prior to initializing structures.
721 */
722 if (td_io_init(td))
723 goto err;
724
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100725 if (td->exec_prerun) {
726 if (system(td->exec_prerun) < 0)
727 goto err;
728 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200729
Jens Axboe69008992006-11-24 13:12:56 +0100730 fio_gettime(&td->epoch, NULL);
Jens Axboe433afcb2007-02-22 10:39:01 +0100731 memcpy(&td->timeout_end, &td->epoch, sizeof(td->epoch));
Jens Axboe079ad092007-02-20 13:58:20 +0100732 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100733
734 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100735 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100736 fio_gettime(&td->start, NULL);
Jens Axboe079ad092007-02-20 13:58:20 +0100737 memcpy(&td->ts.stat_sample_time, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +0100738
739 if (td->ratemin)
Jens Axboe079ad092007-02-20 13:58:20 +0100740 memcpy(&td->lastrate, &td->ts.stat_sample_time, sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +0100741
742 clear_io_state(td);
743 prune_io_piece_log(td);
744
Jens Axboe2866c822006-10-09 15:57:48 +0200745 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200746 do_cpuio(td);
747 else
748 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100749
Jens Axboe413dd452007-02-23 09:26:09 +0100750 if (td_read(td) && td->io_bytes[DDIR_READ])
751 runtime[DDIR_READ] += utime_since_now(&td->start);
752 if (td_write(td) && td->io_bytes[DDIR_WRITE])
753 runtime[DDIR_WRITE] += utime_since_now(&td->start);
754
Jens Axboeebac4652005-12-08 15:25:21 +0100755 if (td->error || td->terminate)
756 break;
757
758 if (td->verify == VERIFY_NONE)
759 continue;
760
761 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100762 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100763
764 do_verify(td);
765
Jens Axboe69008992006-11-24 13:12:56 +0100766 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100767
768 if (td->error || td->terminate)
769 break;
770 }
771
Jens Axboe36dff962006-11-24 13:29:20 +0100772 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100773 fio_gettime(&td->end_time, NULL);
774 td->runtime[0] = runtime[0] / 1000;
775 td->runtime[1] = runtime[1] / 1000;
776
Jens Axboe079ad092007-02-20 13:58:20 +0100777 if (td->ts.bw_log)
778 finish_log(td, td->ts.bw_log, "bw");
779 if (td->ts.slat_log)
780 finish_log(td, td->ts.slat_log, "slat");
781 if (td->ts.clat_log)
782 finish_log(td, td->ts.clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200783 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700784 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100785 if (td->exec_postrun) {
786 if (system(td->exec_postrun) < 0)
787 log_err("fio: postrun %s failed\n", td->exec_postrun);
788 }
Jens Axboeebac4652005-12-08 15:25:21 +0100789
790 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100791 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100792
793err:
Jens Axboe5bf13a52007-02-17 01:51:47 +0100794 if (td->error)
795 printf("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboe53cdc682006-10-18 11:50:58 +0200796 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200797 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100798 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100799 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +0100800 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +0100801}
802
Jens Axboe906c8d72006-06-13 09:37:56 +0200803/*
804 * We cannot pass the td data into a forked process, so attach the td and
805 * pass it to the thread worker.
806 */
Jens Axboea6418142007-02-17 04:47:18 +0100807static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +0100808{
809 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +0100810 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100811
812 data = shmat(shmid, NULL, 0);
813 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +0100814 int __err = errno;
815
Jens Axboeebac4652005-12-08 15:25:21 +0100816 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +0100817 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +0100818 }
819
820 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +0100821 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100822 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +0100823 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100824}
825
Jens Axboe906c8d72006-06-13 09:37:56 +0200826/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200827 * Run over the job map and reap the threads that have exited, if any.
828 */
Jens Axboeebac4652005-12-08 15:25:21 +0100829static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
830{
Jens Axboe34572e22006-10-20 09:33:18 +0200831 struct thread_data *td;
Jens Axboefab6aa72007-02-17 06:19:24 +0100832 int i, cputhreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100833
834 /*
835 * reap exited threads (TD_EXITED -> TD_REAPED)
836 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100837 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200838 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +0100839 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +0100840
Jens Axboe84585002006-10-19 20:26:22 +0200841 /*
842 * ->io_ops is NULL for a thread that has closed its
843 * io engine
844 */
845 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200846 cputhreads++;
847
Jens Axboea2f77c92007-02-22 11:53:00 +0100848 if (!td->pid || td->runstate == TD_REAPED)
849 continue;
Jens Axboe3707f452007-02-22 12:26:57 +0100850 if (td->use_thread) {
851 if (td->runstate == TD_EXITED) {
852 td_set_runstate(td, TD_REAPED);
853 goto reaped;
854 }
855 continue;
856 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100857
858 flags = WNOHANG;
859 if (td->runstate == TD_EXITED)
860 flags = 0;
861
862 /*
863 * check if someone quit or got killed in an unusual way
864 */
865 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +0100866 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +0100867 if (errno == ECHILD) {
868 log_err("fio: pid=%d disappeared %d\n", td->pid, td->runstate);
869 td_set_runstate(td, TD_REAPED);
870 goto reaped;
871 }
872 perror("waitpid");
873 } else if (ret == td->pid) {
874 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +0100875 int sig = WTERMSIG(status);
876
877 log_err("fio: pid=%d, got signal=%d\n", td->pid, sig);
878 td_set_runstate(td, TD_REAPED);
879 goto reaped;
880 }
Jens Axboea2f77c92007-02-22 11:53:00 +0100881 if (WIFEXITED(status)) {
882 if (WEXITSTATUS(status) && !td->error)
883 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +0100884
Jens Axboea2f77c92007-02-22 11:53:00 +0100885 td_set_runstate(td, TD_REAPED);
886 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +0100887 }
888 }
Jens Axboeebac4652005-12-08 15:25:21 +0100889
Jens Axboea2f77c92007-02-22 11:53:00 +0100890 /*
891 * thread is not dead, continue
892 */
893 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +0100894reaped:
Jens Axboe3707f452007-02-22 12:26:57 +0100895 if (td->use_thread) {
896 long ret;
897
898 if (pthread_join(td->thread, (void *) &ret))
899 perror("pthread_join");
900 }
901
Jens Axboeebac4652005-12-08 15:25:21 +0100902 (*nr_running)--;
903 (*m_rate) -= td->ratemin;
904 (*t_rate) -= td->rate;
Jens Axboea2f77c92007-02-22 11:53:00 +0100905
906 if (td->error)
907 exit_value++;
Jens Axboeebac4652005-12-08 15:25:21 +0100908 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200909
Jens Axboe4d2413c2006-11-23 11:58:59 +0100910 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100911 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100912}
913
Jens Axboe906c8d72006-06-13 09:37:56 +0200914/*
915 * Main function for kicking off and reaping jobs, as needed.
916 */
Jens Axboeebac4652005-12-08 15:25:21 +0100917static void run_threads(void)
918{
Jens Axboeebac4652005-12-08 15:25:21 +0100919 struct thread_data *td;
920 unsigned long spent;
921 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200922
Jens Axboe2f9ade32006-10-20 11:25:52 +0200923 if (fio_pin_memory())
924 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100925
Jens Axboec6ae0a52006-06-12 11:04:44 +0200926 if (!terse_output) {
927 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
928 fflush(stdout);
929 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200930
Jens Axboe4efa9702006-05-31 11:56:49 +0200931 signal(SIGINT, sig_handler);
932 signal(SIGALRM, sig_handler);
933
Jens Axboeebac4652005-12-08 15:25:21 +0100934 todo = thread_number;
935 nr_running = 0;
936 nr_started = 0;
937 m_rate = t_rate = 0;
938
Jens Axboe34572e22006-10-20 09:33:18 +0200939 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200940 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100941
Jens Axboe380cf262007-01-11 14:01:27 +0100942 if (!td->create_serialize) {
943 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100944 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100945 }
Jens Axboeebac4652005-12-08 15:25:21 +0100946
947 /*
948 * do file setup here so it happens sequentially,
949 * we don't want X number of threads getting their
950 * client data interspersed on disk
951 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200952 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +0100953 exit_value++;
954 if (td->error)
955 log_err("fio: pid=%d, err=%d/%s\n", td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +0100956 td_set_runstate(td, TD_REAPED);
957 todo--;
958 }
Jens Axboe380cf262007-01-11 14:01:27 +0100959
960 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100961 }
962
Jens Axboea2f77c92007-02-22 11:53:00 +0100963 set_genesis_time();
964
Jens Axboeebac4652005-12-08 15:25:21 +0100965 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200966 struct thread_data *map[MAX_JOBS];
967 struct timeval this_start;
968 int this_jobs = 0, left;
969
Jens Axboeebac4652005-12-08 15:25:21 +0100970 /*
971 * create threads (TD_NOT_CREATED -> TD_CREATED)
972 */
Jens Axboe34572e22006-10-20 09:33:18 +0200973 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100974 if (td->runstate != TD_NOT_CREATED)
975 continue;
976
977 /*
978 * never got a chance to start, killed by other
979 * thread for some reason
980 */
981 if (td->terminate) {
982 todo--;
983 continue;
984 }
985
986 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200987 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100988
989 if (td->start_delay * 1000 > spent)
990 continue;
991 }
992
993 if (td->stonewall && (nr_started || nr_running))
994 break;
995
Jens Axboe75154842006-06-01 13:56:09 +0200996 /*
997 * Set state to created. Thread will transition
998 * to TD_INITIALIZED when it's done setting up.
999 */
Jens Axboeebac4652005-12-08 15:25:21 +01001000 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001001 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001002 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001003 nr_started++;
1004
1005 if (td->use_thread) {
1006 if (pthread_create(&td->thread, NULL, thread_main, td)) {
1007 perror("thread_create");
1008 nr_started--;
1009 }
1010 } else {
1011 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +02001012 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +01001013 else {
Jens Axboea6418142007-02-17 04:47:18 +01001014 int ret = fork_main(shm_id, i);
1015
1016 exit(ret);
Jens Axboeebac4652005-12-08 15:25:21 +01001017 }
1018 }
1019 }
1020
1021 /*
Jens Axboe75154842006-06-01 13:56:09 +02001022 * Wait for the started threads to transition to
1023 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001024 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001025 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001026 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001027 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001028 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1029 break;
1030
1031 usleep(100000);
1032
1033 for (i = 0; i < this_jobs; i++) {
1034 td = map[i];
1035 if (!td)
1036 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001037 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001038 map[i] = NULL;
1039 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001040 } else if (td->runstate >= TD_EXITED) {
1041 map[i] = NULL;
1042 left--;
1043 todo--;
1044 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001045 }
1046 }
1047 }
1048
1049 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001050 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001051 for (i = 0; i < this_jobs; i++) {
1052 td = map[i];
1053 if (!td)
1054 continue;
1055 kill(td->pid, SIGTERM);
1056 }
1057 break;
1058 }
1059
1060 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001061 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001062 */
Jens Axboe34572e22006-10-20 09:33:18 +02001063 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001064 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001065 continue;
1066
1067 td_set_runstate(td, TD_RUNNING);
1068 nr_running++;
1069 nr_started--;
1070 m_rate += td->ratemin;
1071 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +02001072 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +02001073 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001074 }
1075
1076 reap_threads(&nr_running, &t_rate, &m_rate);
1077
1078 if (todo)
1079 usleep(100000);
1080 }
1081
1082 while (nr_running) {
1083 reap_threads(&nr_running, &t_rate, &m_rate);
1084 usleep(10000);
1085 }
1086
1087 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001088 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001089}
1090
Jens Axboeebac4652005-12-08 15:25:21 +01001091int main(int argc, char *argv[])
1092{
Jens Axboe29d610e2007-02-06 13:25:33 +01001093 long ps;
1094
Jens Axboedbe11252007-02-11 00:19:51 +01001095 /*
1096 * We need locale for number printing, if it isn't set then just
1097 * go with the US format.
1098 */
1099 if (!getenv("LC_NUMERIC"))
1100 setlocale(LC_NUMERIC, "en_US");
1101
Jens Axboeebac4652005-12-08 15:25:21 +01001102 if (parse_options(argc, argv))
1103 return 1;
1104
1105 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001106 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001107 return 1;
1108 }
1109
Jens Axboe29d610e2007-02-06 13:25:33 +01001110 ps = sysconf(_SC_PAGESIZE);
1111 if (ps < 0) {
1112 log_err("Failed to get page size\n");
1113 return 1;
1114 }
1115
1116 page_mask = ps - 1;
1117
Jens Axboebb3884d2007-01-17 17:23:11 +11001118 if (write_bw_log) {
1119 setup_log(&agg_io_log[DDIR_READ]);
1120 setup_log(&agg_io_log[DDIR_WRITE]);
1121 }
1122
Jens Axboea2f77c92007-02-22 11:53:00 +01001123 set_genesis_time();
1124
Jens Axboeebac4652005-12-08 15:25:21 +01001125 disk_util_timer_arm();
1126
1127 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001128
Jens Axboebb3884d2007-01-17 17:23:11 +11001129 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001130 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001131 if (write_bw_log) {
1132 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1133 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1134 }
1135 }
Jens Axboeebac4652005-12-08 15:25:21 +01001136
Jens Axboe437c9b72007-02-13 18:20:37 +01001137 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001138}