blob: d6802e0aea4c702cf6f591fb768ff96b49123f0d [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>
Bruce Cran9b836562011-01-08 19:49:54 +010027#include <limits.h>
Jens Axboeebac4652005-12-08 15:25:21 +010028#include <signal.h>
29#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010030#include <locale.h>
Jens Axboe36167d82007-02-18 05:41:31 +010031#include <assert.h>
Jens Axboea5b01f12010-11-11 09:19:49 +010032#include <time.h>
Jens Axboeebac4652005-12-08 15:25:21 +010033#include <sys/stat.h>
34#include <sys/wait.h>
35#include <sys/ipc.h>
36#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010037#include <sys/mman.h>
38
39#include "fio.h"
Jens Axboe210f43b2007-04-17 19:52:18 +020040#include "hash.h"
Jens Axboe2e5cdb12008-03-01 18:52:49 +010041#include "smalloc.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020042#include "verify.h"
Jens Axboea917a8b2010-09-02 13:23:20 +020043#include "trim.h"
Jens Axboe7c9b1bc2009-06-03 09:25:57 +020044#include "diskutil.h"
Jens Axboea696fa22009-12-04 10:05:02 +010045#include "cgroup.h"
Jens Axboe07b32322010-03-05 09:48:44 +010046#include "profile.h"
Jens Axboed54a1442010-03-25 23:07:35 +010047#include "lib/rand.h"
Jens Axboe91aea6e2011-04-25 20:46:58 +020048#include "memalign.h"
Jens Axboe009b1be2011-09-29 18:27:02 -060049#include "server.h"
Jens Axboeebac4652005-12-08 15:25:21 +010050
Jens Axboecfc99db2007-03-14 10:34:47 +010051unsigned long page_mask;
52unsigned long page_size;
Jens Axboed529ee12009-07-01 10:33:03 +020053
54#define PAGE_ALIGN(buf) \
Jens Axboe29d610e2007-02-06 13:25:33 +010055 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010056
57int groupid = 0;
58int thread_number = 0;
Jens Axboe9cedf162007-03-12 11:29:30 +010059int nr_process = 0;
60int nr_thread = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010061int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020062int temp_stall_ts;
Jens Axboed3eeeab2008-04-06 12:19:05 +020063unsigned long done_secs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010064
Jens Axboecdd18ad2008-02-27 18:58:00 +010065static struct fio_mutex *startup_mutex;
Fabio Checconid2bbb8d2009-05-18 12:54:50 +020066static struct fio_mutex *writeout_mutex;
Jens Axboe6ce15a32007-01-12 09:04:41 +010067static volatile int fio_abort;
Jens Axboe437c9b72007-02-13 18:20:37 +010068static int exit_value;
Jens Axboebe4ecfd2008-12-08 14:10:52 +010069static pthread_t gtod_thread;
Jens Axboe79857012011-01-14 14:14:58 +010070static pthread_t disk_util_thread;
Jens Axboedae53412009-12-04 19:54:18 +010071static struct flist_head *cgroup_list;
Jens Axboe6adb38a2009-12-07 08:01:26 +010072static char *cgroup_mnt;
Jens Axboeebac4652005-12-08 15:25:21 +010073
Jens Axboed3cc4eb2011-08-25 14:24:03 +020074unsigned long arch_flags = 0;
75
Jens Axboebb3884d2007-01-17 17:23:11 +110076struct io_log *agg_io_log[2];
77
Jens Axboe75154842006-06-01 13:56:09 +020078#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010079
Jens Axboeb29ee5b2008-09-11 10:17:26 +020080void td_set_runstate(struct thread_data *td, int runstate)
Jens Axboe6ce15a32007-01-12 09:04:41 +010081{
Jens Axboed8fab1b2008-03-06 10:25:17 +010082 if (td->runstate == runstate)
83 return;
84
Jens Axboe5921e802008-05-30 15:02:38 +020085 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
86 td->runstate, runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 td->runstate = runstate;
88}
89
Jens Axboecc0df002011-10-03 20:53:32 +020090void fio_terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010091{
Jens Axboe34572e22006-10-20 09:33:18 +020092 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010093 int i;
94
Jens Axboe6f88bcb2008-03-19 10:29:07 +010095 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
96
Jens Axboe34572e22006-10-20 09:33:18 +020097 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010098 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboe6f88bcb2008-03-19 10:29:07 +010099 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +0200100 td->o.name, (int) td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +0100101 td->terminate = 1;
102 td->o.start_delay = 0;
103
Jens Axboe7a93ab12007-04-18 12:25:41 +0200104 /*
105 * if the thread is running, just let it exit
106 */
Michael Callahan6aa27812011-07-14 07:56:37 +0200107 if (!td->pid)
108 continue;
109 else if (td->runstate < TD_RAMP)
Bruce Cran03e20d62011-01-02 20:14:54 +0100110 kill(td->pid, SIGTERM);
Jens Axboef63f7f32008-03-01 15:25:24 +0100111 else {
112 struct ioengine_ops *ops = td->io_ops;
113
Bruce Cran03e20d62011-01-02 20:14:54 +0100114 if (ops && (ops->flags & FIO_SIGTERM))
115 kill(td->pid, SIGTERM);
Jens Axboef63f7f32008-03-01 15:25:24 +0100116 }
Jens Axboeebac4652005-12-08 15:25:21 +0100117 }
118 }
119}
120
Jens Axboe697a6062008-05-31 00:04:45 +0200121static void sig_int(int sig)
122{
123 if (threads) {
Jens Axboe4ceb30d2010-02-24 09:19:14 +0100124 log_info("\nfio: terminating on signal %d\n", sig);
Jens Axboe009b1be2011-09-29 18:27:02 -0600125 exit_backend = 1;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100126 fflush(stdout);
Jens Axboedeaa1af2011-05-05 08:17:03 -0600127 exit_value = 128;
Jens Axboecc0df002011-10-03 20:53:32 +0200128 fio_terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100129 }
130}
131
Jens Axboe79857012011-01-14 14:14:58 +0100132static void *disk_thread_main(void *data)
Jens Axboea5b01f12010-11-11 09:19:49 +0100133{
Jens Axboe79857012011-01-14 14:14:58 +0100134 fio_mutex_up(startup_mutex);
135
136 while (threads) {
137 usleep(DISK_UTIL_MSEC * 1000);
Jens Axboe9a793c22011-01-14 15:22:14 +0100138 if (!threads)
139 break;
Jens Axboe79857012011-01-14 14:14:58 +0100140 update_io_ticks();
Jens Axboecf451d12011-10-03 16:48:30 +0200141
142 if (is_backend)
143 fio_server_send_status();
144 else
145 print_thread_status();
Jens Axboe79857012011-01-14 14:14:58 +0100146 }
147
148 return NULL;
Jens Axboea5b01f12010-11-11 09:19:49 +0100149}
150
Jens Axboe79857012011-01-14 14:14:58 +0100151static int create_disk_util_thread(void)
Jens Axboea5b01f12010-11-11 09:19:49 +0100152{
Jens Axboe79857012011-01-14 14:14:58 +0100153 int ret;
Jens Axboea5b01f12010-11-11 09:19:49 +0100154
Jens Axboe69204d62011-01-14 18:29:19 +0100155 ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
Jens Axboe79857012011-01-14 14:14:58 +0100156 if (ret) {
157 log_err("Can't create disk util thread: %s\n", strerror(ret));
158 return 1;
159 }
Jens Axboea5b01f12010-11-11 09:19:49 +0100160
Jens Axboe79857012011-01-14 14:14:58 +0100161 ret = pthread_detach(disk_util_thread);
162 if (ret) {
163 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
164 return 1;
165 }
Bruce Cran03e20d62011-01-02 20:14:54 +0100166
Jens Axboe79857012011-01-14 14:14:58 +0100167 dprint(FD_MUTEX, "wait on startup_mutex\n");
168 fio_mutex_down(startup_mutex);
169 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
170 return 0;
Jens Axboea5b01f12010-11-11 09:19:49 +0100171}
172
Jens Axboe697a6062008-05-31 00:04:45 +0200173static void set_sig_handlers(void)
174{
175 struct sigaction act;
176
177 memset(&act, 0, sizeof(act));
Jens Axboe697a6062008-05-31 00:04:45 +0200178 act.sa_handler = sig_int;
179 act.sa_flags = SA_RESTART;
180 sigaction(SIGINT, &act, NULL);
Jens Axboede79c912008-08-04 21:43:55 +0200181
182 memset(&act, 0, sizeof(act));
Jens Axboeb20b6be2011-05-11 13:23:01 +0200183 act.sa_handler = sig_int;
Jens Axboe5f8f9722008-11-18 19:10:21 +0100184 act.sa_flags = SA_RESTART;
Bruce Cran03e20d62011-01-02 20:14:54 +0100185 sigaction(SIGTERM, &act, NULL);
Jens Axboecc0df002011-10-03 20:53:32 +0200186
187 if (is_backend) {
188 memset(&act, 0, sizeof(act));
189 act.sa_handler = sig_int;
190 act.sa_flags = SA_RESTART;
191 sigaction(SIGPIPE, &act, NULL);
192 }
Jens Axboe697a6062008-05-31 00:04:45 +0200193}
194
195/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200196 * Check if we are above the minimum rate given.
197 */
Jens Axboe581e7142009-06-09 12:47:16 +0200198static int __check_min_rate(struct thread_data *td, struct timeval *now,
Steven Langbd93e342011-06-03 21:15:50 +0200199 enum fio_ddir ddir)
Jens Axboeebac4652005-12-08 15:25:21 +0100200{
Jens Axboe09042002007-02-23 10:56:22 +0100201 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100202 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100203 unsigned long spent;
204 unsigned long rate;
Jens Axboe581e7142009-06-09 12:47:16 +0200205 unsigned int ratemin = 0;
206 unsigned int rate_iops = 0;
207 unsigned int rate_iops_min = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100208
Jens Axboeff58fce2010-08-25 12:02:08 +0200209 assert(ddir_rw(ddir));
210
Jens Axboed982d872009-06-10 06:35:48 +0200211 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
212 return 0;
213
Jens Axboeebac4652005-12-08 15:25:21 +0100214 /*
215 * allow a 2 second settle period in the beginning
216 */
217 if (mtime_since(&td->start, now) < 2000)
218 return 0;
219
Jens Axboec8eeb9d2011-10-05 14:02:22 +0200220 iops += td->this_io_blocks[ddir];
Jens Axboe581e7142009-06-09 12:47:16 +0200221 bytes += td->this_io_bytes[ddir];
222 ratemin += td->o.ratemin[ddir];
223 rate_iops += td->o.rate_iops[ddir];
224 rate_iops_min += td->o.rate_iops_min[ddir];
Jens Axboe09042002007-02-23 10:56:22 +0100225
Jens Axboeebac4652005-12-08 15:25:21 +0100226 /*
227 * if rate blocks is set, sample is running
228 */
Jens Axboe581e7142009-06-09 12:47:16 +0200229 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
230 spent = mtime_since(&td->lastrate[ddir], now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100231 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100232 return 0;
233
Jens Axboe581e7142009-06-09 12:47:16 +0200234 if (td->o.rate[ddir]) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100235 /*
236 * check bandwidth specified rate
237 */
Jens Axboe581e7142009-06-09 12:47:16 +0200238 if (bytes < td->rate_bytes[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100239 log_err("%s: min rate %u not met\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200240 ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100241 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100242 } else {
Jens Axboe581e7142009-06-09 12:47:16 +0200243 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
244 if (rate < ratemin ||
245 bytes < td->rate_bytes[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100246 log_err("%s: min rate %u not met, got"
Jens Axboeb22989b2009-07-17 22:29:23 +0200247 " %luKB/sec\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200248 ratemin, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100249 return 1;
250 }
251 }
252 } else {
253 /*
254 * checks iops specified rate
255 */
Jens Axboe581e7142009-06-09 12:47:16 +0200256 if (iops < rate_iops) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100257 log_err("%s: min iops rate %u not met\n",
Jens Axboe581e7142009-06-09 12:47:16 +0200258 td->o.name, rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100259 return 1;
260 } else {
Jens Axboe581e7142009-06-09 12:47:16 +0200261 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
262 if (rate < rate_iops_min ||
263 iops < td->rate_blocks[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100264 log_err("%s: min iops rate %u not met,"
265 " got %lu\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200266 rate_iops_min, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100267 }
Jens Axboe413dd452007-02-23 09:26:09 +0100268 }
Jens Axboeebac4652005-12-08 15:25:21 +0100269 }
270 }
271
Jens Axboe581e7142009-06-09 12:47:16 +0200272 td->rate_bytes[ddir] = bytes;
273 td->rate_blocks[ddir] = iops;
274 memcpy(&td->lastrate[ddir], now, sizeof(*now));
Jens Axboeebac4652005-12-08 15:25:21 +0100275 return 0;
276}
277
Jens Axboe581e7142009-06-09 12:47:16 +0200278static int check_min_rate(struct thread_data *td, struct timeval *now,
279 unsigned long *bytes_done)
280{
281 int ret = 0;
282
283 if (bytes_done[0])
284 ret |= __check_min_rate(td, now, 0);
285 if (bytes_done[1])
286 ret |= __check_min_rate(td, now, 1);
287
288 return ret;
289}
290
Jens Axboeebac4652005-12-08 15:25:21 +0100291static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
292{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100294 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100295 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100296 return 1;
297
298 return 0;
299}
300
Jens Axboe906c8d72006-06-13 09:37:56 +0200301/*
302 * When job exits, we can cancel the in-flight IO if we are using async
303 * io. Attempt to do so.
304 */
Jens Axboeebac4652005-12-08 15:25:21 +0100305static void cleanup_pending_aio(struct thread_data *td)
306{
Jens Axboe01743ee2008-06-02 12:19:19 +0200307 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100308 struct io_u *io_u;
309 int r;
310
311 /*
312 * get immediately available events, if any
313 */
Jens Axboe581e7142009-06-09 12:47:16 +0200314 r = io_u_queued_complete(td, 0, NULL);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100315 if (r < 0)
316 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100317
318 /*
319 * now cancel remaining active events
320 */
Jens Axboe2866c822006-10-09 15:57:48 +0200321 if (td->io_ops->cancel) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200322 flist_for_each_safe(entry, n, &td->io_u_busylist) {
323 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100324
Jens Axboe0c6e7512007-02-22 11:19:39 +0100325 /*
326 * if the io_u isn't in flight, then that generally
327 * means someone leaked an io_u. complain but fix
328 * it up, so we don't stall here.
329 */
330 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
331 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100332 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100333 } else {
334 r = td->io_ops->cancel(td, io_u);
335 if (!r)
336 put_io_u(td, io_u);
337 }
Jens Axboeebac4652005-12-08 15:25:21 +0100338 }
339 }
340
Jens Axboe97601022007-02-18 12:47:29 +0100341 if (td->cur_depth)
Jens Axboe581e7142009-06-09 12:47:16 +0200342 r = io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100343}
344
Jens Axboe906c8d72006-06-13 09:37:56 +0200345/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200346 * Helper to handle the final sync of a file. Works just like the normal
347 * io path, just does everything sync.
348 */
349static int fio_io_sync(struct thread_data *td, struct fio_file *f)
350{
351 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200352 int ret;
353
354 if (!io_u)
355 return 1;
356
357 io_u->ddir = DDIR_SYNC;
358 io_u->file = f;
359
360 if (td_io_prep(td, io_u)) {
361 put_io_u(td, io_u);
362 return 1;
363 }
364
Jens Axboe755200a2007-02-19 13:08:12 +0100365requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200366 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100367 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100368 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200369 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200370 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100371 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe581e7142009-06-09 12:47:16 +0200372 if (io_u_queued_complete(td, 1, NULL) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100373 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100374 } else if (ret == FIO_Q_COMPLETED) {
375 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100376 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100377 return 1;
378 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200379
Jens Axboe581e7142009-06-09 12:47:16 +0200380 if (io_u_sync_complete(td, io_u, NULL) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100381 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100382 } else if (ret == FIO_Q_BUSY) {
383 if (td_io_commit(td))
384 return 1;
385 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200386 }
387
388 return 0;
389}
390
Jens Axboe687c6a22011-07-07 12:36:59 +0200391static inline void __update_tv_cache(struct thread_data *td)
392{
393 fio_gettime(&td->tv_cache, NULL);
394}
395
Jens Axboe993bf482008-11-14 13:04:53 +0100396static inline void update_tv_cache(struct thread_data *td)
397{
398 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
Jens Axboe687c6a22011-07-07 12:36:59 +0200399 __update_tv_cache(td);
Jens Axboe993bf482008-11-14 13:04:53 +0100400}
401
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200402static int break_on_this_error(struct thread_data *td, int *retptr)
403{
404 int ret = *retptr;
405
406 if (ret < 0 || td->error) {
407 int err;
408
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200409 if (!td->o.continue_on_error)
410 return 1;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200411
412 if (ret < 0)
413 err = -ret;
414 else
415 err = td->error;
416
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200417 if (td_non_fatal_error(err)) {
418 /*
419 * Continue with the I/Os in case of
420 * a non fatal error.
421 */
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200422 update_error_count(td, err);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200423 td_clear_error(td);
424 *retptr = 0;
425 return 0;
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200426 } else if (td->o.fill_device && err == ENOSPC) {
427 /*
428 * We expect to hit this error if
429 * fill_device option is set.
430 */
431 td_clear_error(td);
432 td->terminate = 1;
433 return 1;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200434 } else {
435 /*
436 * Stop the I/O in case of a fatal
437 * error.
438 */
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200439 update_error_count(td, err);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200440 return 1;
441 }
442 }
443
444 return 0;
445}
446
Jens Axboe858a3d42006-10-24 14:54:44 +0200447/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100448 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200449 * reads the blocks back in, and checks the crc/md5 of the data.
450 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100451static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100452{
Jens Axboe53cdc682006-10-18 11:50:58 +0200453 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100454 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100455 int ret, min_events;
456 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200457
Jens Axboe008618a2010-03-18 19:29:45 +0100458 dprint(FD_VERIFY, "starting loop\n");
459
Jens Axboee5b401d2006-10-18 16:03:40 +0200460 /*
461 * sync io first and invalidate cache, to make sure we really
462 * read from disk.
463 */
464 for_each_file(td, f, i) {
Jens Axboed6aed792009-06-03 08:41:15 +0200465 if (!fio_file_open(f))
Jens Axboe3d7b4852007-03-13 14:50:28 +0100466 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100467 if (fio_io_sync(td, f))
468 break;
469 if (file_invalidate_cache(td, f))
470 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200471 }
Jens Axboeebac4652005-12-08 15:25:21 +0100472
Jens Axboeb2fdda42007-02-20 20:52:51 +0100473 if (td->error)
474 return;
475
Jens Axboeebac4652005-12-08 15:25:21 +0100476 td_set_runstate(td, TD_VERIFYING);
477
Jens Axboe36167d82007-02-18 05:41:31 +0100478 io_u = NULL;
479 while (!td->terminate) {
Jens Axboe49504212008-06-05 09:03:30 +0200480 int ret2, full;
Jens Axboe54517922007-03-05 10:06:06 +0100481
Jens Axboe993bf482008-11-14 13:04:53 +0100482 update_tv_cache(td);
483
484 if (runtime_exceeded(td, &td->tv_cache)) {
Jens Axboe687c6a22011-07-07 12:36:59 +0200485 __update_tv_cache(td);
486 if (runtime_exceeded(td, &td->tv_cache)) {
487 td->terminate = 1;
488 break;
489 }
Jens Axboe069c2912007-02-21 23:02:39 +0100490 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200491
Radha Ramachandrandcb48302009-06-16 08:31:29 +0200492 io_u = __get_io_u(td);
493 if (!io_u)
494 break;
495
Jens Axboe069c2912007-02-21 23:02:39 +0100496 if (get_next_verify(td, io_u)) {
497 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100498 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100499 }
Jens Axboeebac4652005-12-08 15:25:21 +0100500
Jens Axboe069c2912007-02-21 23:02:39 +0100501 if (td_io_prep(td, io_u)) {
502 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100503 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100504 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100505
Jens Axboee8462bd2009-07-06 12:59:04 +0200506 if (td->o.verify_async)
507 io_u->end_io = verify_io_u_async;
508 else
509 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100510
Jens Axboe11786802007-03-05 18:33:22 +0100511 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100512 switch (ret) {
513 case FIO_Q_COMPLETED:
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200514 if (io_u->error) {
Jens Axboe22819ec2007-02-18 07:47:14 +0100515 ret = -io_u->error;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200516 clear_io_u(td, io_u);
517 } else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100518 int bytes = io_u->xfer_buflen - io_u->resid;
519
Jens Axboe9e9d1642007-03-12 09:37:46 +0100520 /*
521 * zero read, fail
522 */
523 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200524 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100525 put_io_u(td, io_u);
526 break;
527 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200528
Jens Axboe36167d82007-02-18 05:41:31 +0100529 io_u->xfer_buflen = io_u->resid;
530 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200531 io_u->offset += bytes;
532
Jens Axboeff58fce2010-08-25 12:02:08 +0200533 if (ddir_rw(io_u->ddir))
534 td->ts.short_io_u[io_u->ddir]++;
Jens Axboe30061b92007-04-17 13:31:34 +0200535
Jens Axboe2b13e712011-01-19 14:04:16 -0700536 f = io_u->file;
Jens Axboed460eb32007-04-16 21:39:33 +0200537 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200538 goto sync_done;
539
Jens Axboe11786802007-03-05 18:33:22 +0100540 requeue_io_u(td, &io_u);
541 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200542sync_done:
Jens Axboe581e7142009-06-09 12:47:16 +0200543 ret = io_u_sync_complete(td, io_u, NULL);
Jens Axboe11786802007-03-05 18:33:22 +0100544 if (ret < 0)
545 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100546 }
Jens Axboe36167d82007-02-18 05:41:31 +0100547 continue;
548 case FIO_Q_QUEUED:
549 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100550 case FIO_Q_BUSY:
551 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100552 ret2 = td_io_commit(td);
553 if (ret2 < 0)
554 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100555 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100556 default:
557 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100558 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100559 break;
560 }
561
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200562 if (break_on_this_error(td, &ret))
Jens Axboeebac4652005-12-08 15:25:21 +0100563 break;
564
Jens Axboe3af6ef32007-02-18 06:57:43 +0100565 /*
566 * if we can queue more, do so. but check if there are
Jens Axboeccc02052011-07-14 12:45:13 +0200567 * completed io_u's first. Note that we can get BUSY even
568 * without IO queued, if the system is resource starved.
Jens Axboe3af6ef32007-02-18 06:57:43 +0100569 */
Jens Axboeccc02052011-07-14 12:45:13 +0200570 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
Jens Axboe49504212008-06-05 09:03:30 +0200571 if (full || !td->o.iodepth_batch_complete) {
Radha Ramachandran6a962762009-11-05 08:33:49 +0100572 min_events = min(td->o.iodepth_batch_complete,
573 td->cur_depth);
Dan Ehrenberg1f84f1d2011-07-23 13:36:44 +0200574 if (full && !min_events && td->o.iodepth_batch_complete != 0)
Jens Axboe838bc702008-05-22 13:08:23 +0200575 min_events = 1;
Jens Axboee916b392007-02-20 14:37:26 +0100576
Jens Axboe49504212008-06-05 09:03:30 +0200577 do {
578 /*
579 * Reap required number of io units, if any,
580 * and do the verification on them through
581 * the callback handler
582 */
Jens Axboe581e7142009-06-09 12:47:16 +0200583 if (io_u_queued_complete(td, min_events, NULL) < 0) {
Jens Axboe49504212008-06-05 09:03:30 +0200584 ret = -1;
585 break;
586 }
587 } while (full && (td->cur_depth > td->o.iodepth_low));
588 }
589 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100590 break;
591 }
592
Jens Axboec01c0392007-02-26 12:43:42 +0100593 if (!td->error) {
594 min_events = td->cur_depth;
595
596 if (min_events)
Jens Axboe581e7142009-06-09 12:47:16 +0200597 ret = io_u_queued_complete(td, min_events, NULL);
Jens Axboec01c0392007-02-26 12:43:42 +0100598 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100599 cleanup_pending_aio(td);
600
601 td_set_runstate(td, TD_RUNNING);
Jens Axboe008618a2010-03-18 19:29:45 +0100602
603 dprint(FD_VERIFY, "exiting loop\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100604}
605
Jens Axboe32cd46a2006-06-07 13:40:40 +0200606/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200607 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200608 * and reaps them, checking for rate and errors along the way.
609 */
Jens Axboeebac4652005-12-08 15:25:21 +0100610static void do_io(struct thread_data *td)
611{
Jens Axboeaf52b342007-03-13 10:07:47 +0100612 unsigned int i;
613 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100614
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200615 if (in_ramp_time(td))
616 td_set_runstate(td, TD_RAMP);
617 else
618 td_set_runstate(td, TD_RUNNING);
Jens Axboe5853e5a2006-06-08 14:41:05 +0200619
Glen Ogilvie457bf392009-11-03 21:52:36 +0100620 while ( (td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
Jens Axboea917a8b2010-09-02 13:23:20 +0200621 (!flist_empty(&td->trim_list)) ||
Glen Ogilvie457bf392009-11-03 21:52:36 +0100622 ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) ) {
Jens Axboe97601022007-02-18 12:47:29 +0100623 struct timeval comp_time;
Jens Axboe581e7142009-06-09 12:47:16 +0200624 unsigned long bytes_done[2] = { 0, 0 };
Jens Axboe84585002006-10-19 20:26:22 +0200625 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100626 struct io_u *io_u;
Jens Axboe49504212008-06-05 09:03:30 +0200627 int ret2, full;
Jens Axboeebac4652005-12-08 15:25:21 +0100628
629 if (td->terminate)
630 break;
631
Jens Axboe993bf482008-11-14 13:04:53 +0100632 update_tv_cache(td);
Jens Axboe97601022007-02-18 12:47:29 +0100633
Jens Axboe993bf482008-11-14 13:04:53 +0100634 if (runtime_exceeded(td, &td->tv_cache)) {
Jens Axboe687c6a22011-07-07 12:36:59 +0200635 __update_tv_cache(td);
636 if (runtime_exceeded(td, &td->tv_cache)) {
637 td->terminate = 1;
638 break;
639 }
Jens Axboe97601022007-02-18 12:47:29 +0100640 }
Jens Axboe36167d82007-02-18 05:41:31 +0100641
Radha Ramachandrandcb48302009-06-16 08:31:29 +0200642 io_u = get_io_u(td);
643 if (!io_u)
644 break;
645
Jens Axboeb67740d2007-07-26 12:22:30 +0200646 /*
647 * Add verification end_io handler, if asked to verify
648 * a previously written file.
649 */
Jens Axboe715d2b32009-09-04 20:53:53 +0200650 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
651 !td_rw(td)) {
Jens Axboee8462bd2009-07-06 12:59:04 +0200652 if (td->o.verify_async)
653 io_u->end_io = verify_io_u_async;
654 else
655 io_u->end_io = verify_io_u;
Jens Axboed8fab1b2008-03-06 10:25:17 +0100656 td_set_runstate(td, TD_VERIFYING);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200657 } else if (in_ramp_time(td))
658 td_set_runstate(td, TD_RAMP);
659 else
Jens Axboed8fab1b2008-03-06 10:25:17 +0100660 td_set_runstate(td, TD_RUNNING);
Jens Axboeb67740d2007-07-26 12:22:30 +0200661
Jens Axboe11786802007-03-05 18:33:22 +0100662 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100663 switch (ret) {
664 case FIO_Q_COMPLETED:
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200665 if (io_u->error) {
Jens Axboe54517922007-03-05 10:06:06 +0100666 ret = -io_u->error;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200667 clear_io_u(td, io_u);
668 } else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100669 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200670 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100671
Jens Axboe9e9d1642007-03-12 09:37:46 +0100672 /*
673 * zero read, fail
674 */
675 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200676 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100677 put_io_u(td, io_u);
678 break;
679 }
680
Jens Axboe36167d82007-02-18 05:41:31 +0100681 io_u->xfer_buflen = io_u->resid;
682 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200683 io_u->offset += bytes;
684
Jens Axboeff58fce2010-08-25 12:02:08 +0200685 if (ddir_rw(io_u->ddir))
686 td->ts.short_io_u[io_u->ddir]++;
Jens Axboe30061b92007-04-17 13:31:34 +0200687
Jens Axboed460eb32007-04-16 21:39:33 +0200688 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200689 goto sync_done;
690
Jens Axboe11786802007-03-05 18:33:22 +0100691 requeue_io_u(td, &io_u);
692 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200693sync_done:
Jens Axboe581e7142009-06-09 12:47:16 +0200694 if (__should_check_rate(td, 0) ||
695 __should_check_rate(td, 1))
Jens Axboe993bf482008-11-14 13:04:53 +0100696 fio_gettime(&comp_time, NULL);
697
Jens Axboe581e7142009-06-09 12:47:16 +0200698 ret = io_u_sync_complete(td, io_u, bytes_done);
699 if (ret < 0)
700 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100701 }
Jens Axboe36167d82007-02-18 05:41:31 +0100702 break;
703 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100704 /*
705 * if the engine doesn't have a commit hook,
706 * the io_u is really queued. if it does have such
707 * a hook, it has to call io_u_queued() itself.
708 */
709 if (td->io_ops->commit == NULL)
710 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100711 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100712 case FIO_Q_BUSY:
713 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100714 ret2 = td_io_commit(td);
715 if (ret2 < 0)
716 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100717 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100718 default:
719 assert(ret < 0);
720 put_io_u(td, io_u);
721 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100722 }
723
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200724 if (break_on_this_error(td, &ret))
Jens Axboe36167d82007-02-18 05:41:31 +0100725 break;
726
Jens Axboe97601022007-02-18 12:47:29 +0100727 /*
Jens Axboeccc02052011-07-14 12:45:13 +0200728 * See if we need to complete some commands. Note that we
729 * can get BUSY even without IO queued, if the system is
730 * resource starved.
Jens Axboe97601022007-02-18 12:47:29 +0100731 */
Jens Axboeccc02052011-07-14 12:45:13 +0200732 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
Jens Axboe49504212008-06-05 09:03:30 +0200733 if (full || !td->o.iodepth_batch_complete) {
Radha Ramachandran6a962762009-11-05 08:33:49 +0100734 min_evts = min(td->o.iodepth_batch_complete,
735 td->cur_depth);
Dan Ehrenberg1f84f1d2011-07-23 13:36:44 +0200736 if (full && !min_evts && td->o.iodepth_batch_complete != 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100737 min_evts = 1;
Jens Axboe49504212008-06-05 09:03:30 +0200738
Jens Axboe581e7142009-06-09 12:47:16 +0200739 if (__should_check_rate(td, 0) ||
740 __should_check_rate(td, 1))
Jens Axboe993bf482008-11-14 13:04:53 +0100741 fio_gettime(&comp_time, NULL);
Jens Axboe49504212008-06-05 09:03:30 +0200742
743 do {
Jens Axboe581e7142009-06-09 12:47:16 +0200744 ret = io_u_queued_complete(td, min_evts, bytes_done);
745 if (ret < 0)
Jens Axboe49504212008-06-05 09:03:30 +0200746 break;
747
Jens Axboe49504212008-06-05 09:03:30 +0200748 } while (full && (td->cur_depth > td->o.iodepth_low));
Jens Axboeebac4652005-12-08 15:25:21 +0100749 }
750
Jens Axboe49504212008-06-05 09:03:30 +0200751 if (ret < 0)
752 break;
Jens Axboe581e7142009-06-09 12:47:16 +0200753 if (!(bytes_done[0] + bytes_done[1]))
Jens Axboe97601022007-02-18 12:47:29 +0100754 continue;
755
Jens Axboe581e7142009-06-09 12:47:16 +0200756 if (!in_ramp_time(td) && should_check_rate(td, bytes_done)) {
757 if (check_min_rate(td, &comp_time, bytes_done)) {
Jens Axboe721938a2008-09-10 09:46:16 +0200758 if (exitall_on_terminate)
Jens Axboecc0df002011-10-03 20:53:32 +0200759 fio_terminate_threads(td->groupid);
Jens Axboe721938a2008-09-10 09:46:16 +0200760 td_verror(td, EIO, "check_min_rate");
761 break;
762 }
Jens Axboeebac4652005-12-08 15:25:21 +0100763 }
764
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100765 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100766 unsigned long long b;
767
768 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100769 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100770 int left;
771
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100772 if (td->o.thinktime_spin)
Jens Axboe6dd6f2c2008-12-10 13:24:12 +0100773 usec_spin(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100774
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100775 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100776 if (left)
777 usec_sleep(td, left);
778 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100779 }
Jens Axboeebac4652005-12-08 15:25:21 +0100780 }
781
Jens Axboed708ac52010-09-02 13:29:55 +0200782 if (td->trim_entries)
783 printf("trim entries %ld\n", td->trim_entries);
Jens Axboea917a8b2010-09-02 13:23:20 +0200784
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100785 if (td->o.fill_device && td->error == ENOSPC) {
786 td->error = 0;
787 td->terminate = 1;
788 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100789 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100790 struct fio_file *f;
791
Jens Axboec01c0392007-02-26 12:43:42 +0100792 i = td->cur_depth;
Steven Langd06093e2011-06-13 09:47:36 +0200793 if (i) {
Jens Axboe581e7142009-06-09 12:47:16 +0200794 ret = io_u_queued_complete(td, i, NULL);
Steven Langd06093e2011-06-13 09:47:36 +0200795 if (td->o.fill_device && td->error == ENOSPC)
796 td->error = 0;
797 }
Jens Axboeebac4652005-12-08 15:25:21 +0100798
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100799 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200800 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100801
802 for_each_file(td, f, i) {
Jens Axboed6aed792009-06-03 08:41:15 +0200803 if (!fio_file_open(f))
Jens Axboe3d7b4852007-03-13 14:50:28 +0100804 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200805 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100806 }
Jens Axboe84585002006-10-19 20:26:22 +0200807 }
Jens Axboec01c0392007-02-26 12:43:42 +0100808 } else
809 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100810
811 /*
812 * stop job if we failed doing any IO
813 */
814 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
815 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100816}
817
Jens Axboeebac4652005-12-08 15:25:21 +0100818static void cleanup_io_u(struct thread_data *td)
819{
Jens Axboe01743ee2008-06-02 12:19:19 +0200820 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100821 struct io_u *io_u;
822
Jens Axboe01743ee2008-06-02 12:19:19 +0200823 flist_for_each_safe(entry, n, &td->io_u_freelist) {
824 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100825
Jens Axboe01743ee2008-06-02 12:19:19 +0200826 flist_del(&io_u->list);
Jens Axboe91aea6e2011-04-25 20:46:58 +0200827 fio_memfree(io_u, sizeof(*io_u));
Jens Axboeebac4652005-12-08 15:25:21 +0100828 }
829
Jens Axboe2f9ade32006-10-20 11:25:52 +0200830 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100831}
832
833static int init_io_u(struct thread_data *td)
834{
835 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100836 unsigned int max_bs;
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200837 int cl_align, i, max_units;
Jens Axboeebac4652005-12-08 15:25:21 +0100838 char *p;
839
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100840 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100841 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100842 td->orig_buffer_size = (unsigned long long) max_bs
843 * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100844
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100845 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
846 unsigned long bs;
847
848 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
849 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
850 }
Jens Axboeebac4652005-12-08 15:25:21 +0100851
Jens Axboec3990642007-07-19 10:17:09 +0200852 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
853 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
854 return 1;
855 }
856
Jens Axboe2f9ade32006-10-20 11:25:52 +0200857 if (allocate_io_mem(td))
858 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100859
Jens Axboe1c04bf72010-09-07 13:28:17 +0200860 if (td->o.odirect || td->o.mem_align ||
861 (td->io_ops->flags & FIO_RAWIO))
Jens Axboed529ee12009-07-01 10:33:03 +0200862 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
Jens Axboeb3f378e2007-07-20 12:39:22 +0200863 else
864 p = td->orig_buffer;
865
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200866 cl_align = os_cache_line_size();
867
Jens Axboeebac4652005-12-08 15:25:21 +0100868 for (i = 0; i < max_units; i++) {
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200869 void *ptr;
870
Jens Axboedb1cd902007-04-26 13:47:07 +0200871 if (td->terminate)
872 return 1;
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200873
Jens Axboe91aea6e2011-04-25 20:46:58 +0200874 ptr = fio_memalign(cl_align, sizeof(*io_u));
875 if (!ptr) {
876 log_err("fio: unable to allocate aligned memory\n");
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200877 break;
878 }
879
880 io_u = ptr;
Jens Axboeebac4652005-12-08 15:25:21 +0100881 memset(io_u, 0, sizeof(*io_u));
Jens Axboe01743ee2008-06-02 12:19:19 +0200882 INIT_FLIST_HEAD(&io_u->list);
Jens Axboed529ee12009-07-01 10:33:03 +0200883 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100884
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200885 if (!(td->io_ops->flags & FIO_NOIO)) {
886 io_u->buf = p + max_bs * i;
Jens Axboed529ee12009-07-01 10:33:03 +0200887 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
Jens Axboee9459e52007-04-17 15:46:32 +0200888
Jens Axboe3545a102011-08-31 15:20:15 -0600889 if (td_write(td))
Jens Axboe5973caf2008-05-21 19:52:35 +0200890 io_u_fill_buffer(td, io_u, max_bs);
Jens Axboe3545a102011-08-31 15:20:15 -0600891 if (td_write(td) && td->o.verify_pattern_bytes) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +0200892 /*
893 * Fill the buffer with the pattern if we are
894 * going to be doing writes.
895 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100896 fill_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +0200897 }
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200898 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100899
Jens Axboeb1ff3402006-02-17 11:35:58 +0100900 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100901 io_u->flags = IO_U_F_FREE;
Jens Axboe01743ee2008-06-02 12:19:19 +0200902 flist_add(&io_u->list, &td->io_u_freelist);
Jens Axboeebac4652005-12-08 15:25:21 +0100903 }
904
905 return 0;
906}
907
Jens Axboeda867742006-06-06 10:39:10 -0700908static int switch_ioscheduler(struct thread_data *td)
909{
910 char tmp[256], tmp2[128];
911 FILE *f;
912 int ret;
913
Jens Axboeba0fbe12007-03-09 14:34:23 +0100914 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200915 return 0;
916
Jens Axboeda867742006-06-06 10:39:10 -0700917 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
918
919 f = fopen(tmp, "r+");
920 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200921 if (errno == ENOENT) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100922 log_err("fio: os or kernel doesn't support IO scheduler"
923 " switching\n");
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200924 return 0;
925 }
926 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700927 return 1;
928 }
929
930 /*
931 * Set io scheduler.
932 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100933 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700934 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100935 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700936 fclose(f);
937 return 1;
938 }
939
940 rewind(f);
941
942 /*
943 * Read back and check that the selected scheduler is now the default.
944 */
945 ret = fread(tmp, 1, sizeof(tmp), f);
946 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100947 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700948 fclose(f);
949 return 1;
950 }
951
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100952 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700953 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100954 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100955 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700956 fclose(f);
957 return 1;
958 }
959
960 fclose(f);
961 return 0;
962}
963
Jens Axboe492158c2007-05-24 10:32:47 +0200964static int keep_running(struct thread_data *td)
965{
966 unsigned long long io_done;
967
Jens Axboe20e354e2007-07-23 14:36:16 +0200968 if (td->done)
969 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200970 if (td->o.time_based)
971 return 1;
972 if (td->o.loops) {
973 td->o.loops--;
974 return 1;
975 }
976
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100977 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE]
978 + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200979 if (io_done < td->o.size)
980 return 1;
981
982 return 0;
983}
984
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200985static void reset_io_counters(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100986{
Jens Axboef0505a12011-10-03 12:12:03 +0200987 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100988 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboec8eeb9d2011-10-05 14:02:22 +0200989 td->stat_io_blocks[0] = td->stat_io_blocks[1] = 0;
990 td->this_io_blocks[0] = td->this_io_blocks[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100991 td->zone_bytes = 0;
Jens Axboe581e7142009-06-09 12:47:16 +0200992 td->rate_bytes[0] = td->rate_bytes[1] = 0;
993 td->rate_blocks[0] = td->rate_blocks[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100994
Jens Axboec1324df2007-02-19 19:06:41 +0100995 td->last_was_sync = 0;
996
Jens Axboe2ba1c292008-02-01 13:16:38 +0100997 /*
998 * reset file done count if we are to start over
999 */
1000 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +02001001 td->nr_done_files = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001002}
1003
1004void reset_all_stats(struct thread_data *td)
1005{
1006 struct timeval tv;
1007 int i;
1008
1009 reset_io_counters(td);
1010
1011 for (i = 0; i < 2; i++) {
1012 td->io_bytes[i] = 0;
1013 td->io_blocks[i] = 0;
1014 td->io_issues[i] = 0;
1015 td->ts.total_io_u[i] = 0;
1016 }
Bruce Cran9b836562011-01-08 19:49:54 +01001017
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001018 fio_gettime(&tv, NULL);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001019 td->ts.runtime[0] = 0;
1020 td->ts.runtime[1] = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001021 memcpy(&td->epoch, &tv, sizeof(tv));
1022 memcpy(&td->start, &tv, sizeof(tv));
1023}
1024
Jens Axboedf9c26b2009-03-05 10:13:58 +01001025static void clear_io_state(struct thread_data *td)
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001026{
1027 struct fio_file *f;
1028 unsigned int i;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001029
1030 reset_io_counters(td);
Jens Axboe281f9b62007-05-23 09:34:42 +02001031
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001032 close_files(td);
Jens Axboedf9c26b2009-03-05 10:13:58 +01001033 for_each_file(td, f, i)
Jens Axboed6aed792009-06-03 08:41:15 +02001034 fio_file_clear_done(f);
Jens Axboef0153942011-07-07 15:35:27 +02001035
1036 /*
1037 * Set the same seed to get repeatable runs
1038 */
1039 td_fill_rand_seeds(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001040}
1041
Jens Axboe398e8c42009-05-20 12:10:02 +02001042static int exec_string(const char *string)
1043{
1044 int ret, newlen = strlen(string) + 1 + 8;
1045 char *str;
1046
1047 str = malloc(newlen);
1048 sprintf(str, "sh -c %s", string);
1049
1050 ret = system(str);
1051 if (ret == -1)
1052 log_err("fio: exec of cmd <%s> failed\n", str);
1053
1054 free(str);
1055 return ret;
1056}
1057
Jens Axboe906c8d72006-06-13 09:37:56 +02001058/*
1059 * Entry point for the thread based jobs. The process based jobs end up
1060 * here as well, after a little setup.
1061 */
Jens Axboeebac4652005-12-08 15:25:21 +01001062static void *thread_main(void *data)
1063{
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001064 unsigned long long elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +01001065 struct thread_data *td = data;
Jens Axboee8462bd2009-07-06 12:59:04 +02001066 pthread_condattr_t attr;
Jens Axboea978ba62007-03-08 14:29:03 +01001067 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +01001068
Jens Axboe47f767c2011-07-12 21:17:49 +02001069 if (!td->o.use_thread) {
Jens Axboeebac4652005-12-08 15:25:21 +01001070 setsid();
Jens Axboe47f767c2011-07-12 21:17:49 +02001071 td->pid = getpid();
1072 } else
1073 td->pid = gettid();
Jens Axboeebac4652005-12-08 15:25:21 +01001074
Jens Axboe5921e802008-05-30 15:02:38 +02001075 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
Jens Axboeee56ad52008-02-01 10:30:20 +01001076
Jens Axboe01743ee2008-06-02 12:19:19 +02001077 INIT_FLIST_HEAD(&td->io_u_freelist);
1078 INIT_FLIST_HEAD(&td->io_u_busylist);
1079 INIT_FLIST_HEAD(&td->io_u_requeues);
1080 INIT_FLIST_HEAD(&td->io_log_list);
1081 INIT_FLIST_HEAD(&td->io_hist_list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001082 INIT_FLIST_HEAD(&td->verify_list);
Jens Axboe0d29de82010-09-01 13:54:15 +02001083 INIT_FLIST_HEAD(&td->trim_list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001084 pthread_mutex_init(&td->io_u_lock, NULL);
Jens Axboebb5d7d02007-03-27 10:21:25 +02001085 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +02001086
Jens Axboee8462bd2009-07-06 12:59:04 +02001087 pthread_condattr_init(&attr);
1088 pthread_cond_init(&td->verify_cond, &attr);
1089 pthread_cond_init(&td->free_cond, &attr);
1090
Jens Axboe75154842006-06-01 13:56:09 +02001091 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe29adda32009-01-05 19:06:39 +01001092 dprint(FD_MUTEX, "up startup_mutex\n");
Jens Axboecdd18ad2008-02-27 18:58:00 +01001093 fio_mutex_up(startup_mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001094 dprint(FD_MUTEX, "wait on td->mutex\n");
Jens Axboecdd18ad2008-02-27 18:58:00 +01001095 fio_mutex_down(td->mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001096 dprint(FD_MUTEX, "done waiting on td->mutex\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001097
Jens Axboe37f56872007-03-09 12:42:35 +01001098 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +01001099 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +01001100 * eating a file descriptor
1101 */
Jens Axboecdd18ad2008-02-27 18:58:00 +01001102 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +01001103
Stefan Hajnoczidfc6e752011-01-07 20:58:05 +00001104 /*
1105 * A new gid requires privilege, so we need to do this before setting
1106 * the uid.
1107 */
Jens Axboee0b0d892009-12-08 10:10:14 +01001108 if (td->o.gid != -1U && setgid(td->o.gid)) {
1109 td_verror(td, errno, "setgid");
1110 goto err;
1111 }
Stefan Hajnoczidfc6e752011-01-07 20:58:05 +00001112 if (td->o.uid != -1U && setuid(td->o.uid)) {
1113 td_verror(td, errno, "setuid");
1114 goto err;
1115 }
Jens Axboee0b0d892009-12-08 10:10:14 +01001116
Jens Axboed84f8d42007-05-16 08:47:46 +02001117 /*
Jens Axboebe18a942011-07-08 19:25:04 +02001118 * If we have a gettimeofday() thread, make sure we exclude that
1119 * thread from this job
1120 */
1121 if (td->o.gtod_cpu)
1122 fio_cpu_clear(&td->o.cpumask, td->o.gtod_cpu);
1123
1124 /*
1125 * Set affinity first, in case it has an impact on the memory
1126 * allocations.
1127 */
1128 if (td->o.cpumask_set && fio_setaffinity(td->pid, td->o.cpumask) == -1) {
1129 td_verror(td, errno, "cpu_set_affinity");
1130 goto err;
1131 }
1132
1133 /*
Jens Axboed84f8d42007-05-16 08:47:46 +02001134 * May alter parameters that init_io_u() will use, so we need to
1135 * do this first.
1136 */
1137 if (init_iolog(td))
1138 goto err;
1139
Jens Axboedb1cd902007-04-26 13:47:07 +02001140 if (init_io_u(td))
1141 goto err;
1142
Jens Axboee8462bd2009-07-06 12:59:04 +02001143 if (td->o.verify_async && verify_async_init(td))
1144 goto err;
1145
Jens Axboeac684782007-11-08 08:29:07 +01001146 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +02001147 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
1148 td_verror(td, errno, "ioprio_set");
1149 goto err;
1150 }
1151 }
1152
Jens Axboe6adb38a2009-12-07 08:01:26 +01001153 if (td->o.cgroup_weight && cgroup_setup(td, cgroup_list, &cgroup_mnt))
Jens Axboea696fa22009-12-04 10:05:02 +01001154 goto err;
1155
Jens Axboedb1cd902007-04-26 13:47:07 +02001156 if (nice(td->o.nice) == -1) {
1157 td_verror(td, errno, "nice");
1158 goto err;
1159 }
1160
1161 if (td->o.ioscheduler && switch_ioscheduler(td))
1162 goto err;
1163
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001164 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +01001165 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +01001166
1167 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +01001168 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +01001169
Jens Axboe68727072007-03-15 20:49:25 +01001170 if (init_random_map(td))
1171 goto err;
1172
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001173 if (td->o.exec_prerun) {
Jens Axboe398e8c42009-05-20 12:10:02 +02001174 if (exec_string(td->o.exec_prerun))
Jens Axboe69cfd7e2007-02-07 13:58:53 +01001175 goto err;
1176 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +02001177
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001178 if (td->o.pre_read) {
1179 if (pre_read_files(td) < 0)
1180 goto err;
1181 }
1182
Jens Axboe69008992006-11-24 13:12:56 +01001183 fio_gettime(&td->epoch, NULL);
Jens Axboec8aaba12011-10-03 12:14:19 +02001184 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +01001185
Jens Axboea978ba62007-03-08 14:29:03 +01001186 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +02001187 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +01001188 fio_gettime(&td->start, NULL);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001189 memcpy(&td->bw_sample_time, &td->start, sizeof(td->start));
1190 memcpy(&td->iops_sample_time, &td->start, sizeof(td->start));
Jens Axboe993bf482008-11-14 13:04:53 +01001191 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +01001192
Jens Axboecf2dd8d2009-06-09 12:58:37 +02001193 if (td->o.ratemin[0] || td->o.ratemin[1])
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001194 memcpy(&td->lastrate, &td->bw_sample_time,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001195 sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +01001196
Jens Axboedf9c26b2009-03-05 10:13:58 +01001197 if (clear_state)
1198 clear_io_state(td);
Jens Axboea978ba62007-03-08 14:29:03 +01001199
Jens Axboeebac4652005-12-08 15:25:21 +01001200 prune_io_piece_log(td);
1201
Jens Axboeba0fbe12007-03-09 14:34:23 +01001202 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001203
Jens Axboea978ba62007-03-08 14:29:03 +01001204 clear_state = 1;
1205
Jens Axboe38d77ca2007-03-21 14:20:20 +01001206 if (td_read(td) && td->io_bytes[DDIR_READ]) {
Jens Axboe0a4957c2009-06-03 10:30:33 +02001207 elapsed = utime_since_now(&td->start);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001208 td->ts.runtime[DDIR_READ] += elapsed;
Jens Axboe38d77ca2007-03-21 14:20:20 +01001209 }
1210 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
Jens Axboe0a4957c2009-06-03 10:30:33 +02001211 elapsed = utime_since_now(&td->start);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001212 td->ts.runtime[DDIR_WRITE] += elapsed;
Jens Axboe38d77ca2007-03-21 14:20:20 +01001213 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001214
Jens Axboeebac4652005-12-08 15:25:21 +01001215 if (td->error || td->terminate)
1216 break;
1217
Shawn Lewise84c73a2007-08-02 22:19:32 +02001218 if (!td->o.do_verify ||
1219 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +02001220 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +01001221 continue;
1222
Jens Axboedf9c26b2009-03-05 10:13:58 +01001223 clear_io_state(td);
Jens Axboea978ba62007-03-08 14:29:03 +01001224
Jens Axboe02bcaa82006-11-24 10:42:00 +01001225 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +01001226
1227 do_verify(td);
1228
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001229 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +01001230
1231 if (td->error || td->terminate)
1232 break;
1233 }
1234
Jens Axboe36dff962006-11-24 13:29:20 +01001235 update_rusage_stat(td);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001236 td->ts.runtime[0] = (td->ts.runtime[0] + 999) / 1000;
1237 td->ts.runtime[1] = (td->ts.runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +01001238 td->ts.total_run_time = mtime_since_now(&td->epoch);
1239 td->ts.io_bytes[0] = td->io_bytes[0];
1240 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +01001241
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001242 fio_mutex_down(writeout_mutex);
Jens Axboe7b9f7332011-10-03 10:06:44 +02001243 if (td->bw_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001244 if (td->o.bw_log_file) {
Jens Axboe7b9f7332011-10-03 10:06:44 +02001245 finish_log_named(td, td->bw_log,
Jens Axboef4844702008-12-09 08:04:29 +01001246 td->o.bw_log_file, "bw");
1247 } else
Jens Axboe7b9f7332011-10-03 10:06:44 +02001248 finish_log(td, td->bw_log, "bw");
Jens Axboee3cedca2008-11-19 19:57:52 +01001249 }
Jens Axboe7b9f7332011-10-03 10:06:44 +02001250 if (td->lat_log) {
Jens Axboe02af0982010-06-24 09:59:34 +02001251 if (td->o.lat_log_file) {
Jens Axboe7b9f7332011-10-03 10:06:44 +02001252 finish_log_named(td, td->lat_log,
Jens Axboe02af0982010-06-24 09:59:34 +02001253 td->o.lat_log_file, "lat");
1254 } else
Jens Axboe7b9f7332011-10-03 10:06:44 +02001255 finish_log(td, td->lat_log, "lat");
Jens Axboe02af0982010-06-24 09:59:34 +02001256 }
Jens Axboe7b9f7332011-10-03 10:06:44 +02001257 if (td->slat_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001258 if (td->o.lat_log_file) {
Jens Axboe7b9f7332011-10-03 10:06:44 +02001259 finish_log_named(td, td->slat_log,
Radha Ramachandran1ca95732009-04-29 07:23:26 +02001260 td->o.lat_log_file, "slat");
Jens Axboef4844702008-12-09 08:04:29 +01001261 } else
Jens Axboe7b9f7332011-10-03 10:06:44 +02001262 finish_log(td, td->slat_log, "slat");
Jens Axboee3cedca2008-11-19 19:57:52 +01001263 }
Jens Axboe7b9f7332011-10-03 10:06:44 +02001264 if (td->clat_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001265 if (td->o.lat_log_file) {
Jens Axboe7b9f7332011-10-03 10:06:44 +02001266 finish_log_named(td, td->clat_log,
Jens Axboef4844702008-12-09 08:04:29 +01001267 td->o.lat_log_file, "clat");
1268 } else
Jens Axboe7b9f7332011-10-03 10:06:44 +02001269 finish_log(td, td->clat_log, "clat");
Jens Axboee3cedca2008-11-19 19:57:52 +01001270 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001271 if (td->iops_log) {
1272 if (td->o.iops_log_file) {
1273 finish_log_named(td, td->iops_log,
1274 td->o.iops_log_file, "iops");
1275 } else
1276 finish_log(td, td->iops_log, "iops");
1277 }
1278
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001279 fio_mutex_up(writeout_mutex);
Jens Axboe398e8c42009-05-20 12:10:02 +02001280 if (td->o.exec_postrun)
1281 exec_string(td->o.exec_postrun);
Jens Axboeebac4652005-12-08 15:25:21 +01001282
1283 if (exitall_on_terminate)
Jens Axboecc0df002011-10-03 20:53:32 +02001284 fio_terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +01001285
1286err:
Jens Axboe5bf13a52007-02-17 01:51:47 +01001287 if (td->error)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001288 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001289 td->verror);
Jens Axboeb4707ed2009-11-04 12:51:17 +01001290
1291 if (td->o.verify_async)
1292 verify_async_exit(td);
1293
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001294 close_and_free_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +02001295 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001296 cleanup_io_u(td);
Jens Axboe6adb38a2009-12-07 08:01:26 +01001297 cgroup_shutdown(td, &cgroup_mnt);
Jens Axboef29b25a2007-07-23 08:56:43 +02001298
Jens Axboed2ce18b2008-12-12 20:51:40 +01001299 if (td->o.cpumask_set) {
1300 int ret = fio_cpuset_exit(&td->o.cpumask);
1301
1302 td_verror(td, ret, "fio_cpuset_exit");
1303 }
Jens Axboe4e78e402008-12-12 20:40:27 +01001304
Jens Axboef29b25a2007-07-23 08:56:43 +02001305 /*
1306 * do this very late, it will log file closing as well
1307 */
1308 if (td->o.write_iolog_file)
1309 write_iolog_close(td);
1310
Jens Axboed23bb322007-03-23 15:57:56 +01001311 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001312 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +01001313 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +01001314}
1315
Jens Axboe906c8d72006-06-13 09:37:56 +02001316/*
1317 * We cannot pass the td data into a forked process, so attach the td and
1318 * pass it to the thread worker.
1319 */
Jens Axboea6418142007-02-17 04:47:18 +01001320static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +01001321{
1322 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +01001323 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001324
Jens Axboe65258962011-07-09 08:31:53 +02001325#ifndef __hpux
Jens Axboeebac4652005-12-08 15:25:21 +01001326 data = shmat(shmid, NULL, 0);
1327 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +01001328 int __err = errno;
1329
Jens Axboeebac4652005-12-08 15:25:21 +01001330 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +01001331 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +01001332 }
Jens Axboe65258962011-07-09 08:31:53 +02001333#else
1334 /*
1335 * HP-UX inherits shm mappings?
1336 */
1337 data = threads;
1338#endif
Jens Axboeebac4652005-12-08 15:25:21 +01001339
1340 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +01001341 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001342 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001343 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001344}
1345
Jens Axboe906c8d72006-06-13 09:37:56 +02001346/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001347 * Run over the job map and reap the threads that have exited, if any.
1348 */
Jens Axboeebac4652005-12-08 15:25:21 +01001349static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1350{
Jens Axboe34572e22006-10-20 09:33:18 +02001351 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001352 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001353
1354 /*
1355 * reap exited threads (TD_EXITED -> TD_REAPED)
1356 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001357 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001358 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001359 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001360
Jens Axboe84585002006-10-19 20:26:22 +02001361 /*
1362 * ->io_ops is NULL for a thread that has closed its
1363 * io engine
1364 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001365 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001366 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001367 else
1368 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001369
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001370 if (!td->pid) {
1371 pending++;
1372 continue;
1373 }
1374 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001375 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001376 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001377 if (td->runstate == TD_EXITED) {
1378 td_set_runstate(td, TD_REAPED);
1379 goto reaped;
1380 }
1381 continue;
1382 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001383
1384 flags = WNOHANG;
1385 if (td->runstate == TD_EXITED)
1386 flags = 0;
1387
1388 /*
1389 * check if someone quit or got killed in an unusual way
1390 */
1391 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001392 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001393 if (errno == ECHILD) {
Jens Axboe5921e802008-05-30 15:02:38 +02001394 log_err("fio: pid=%d disappeared %d\n",
1395 (int) td->pid, td->runstate);
Jens Axboea2f77c92007-02-22 11:53:00 +01001396 td_set_runstate(td, TD_REAPED);
1397 goto reaped;
1398 }
1399 perror("waitpid");
1400 } else if (ret == td->pid) {
1401 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001402 int sig = WTERMSIG(status);
1403
Bruce Cran03e20d62011-01-02 20:14:54 +01001404 if (sig != SIGTERM)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001405 log_err("fio: pid=%d, got signal=%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +02001406 (int) td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001407 td_set_runstate(td, TD_REAPED);
1408 goto reaped;
1409 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001410 if (WIFEXITED(status)) {
1411 if (WEXITSTATUS(status) && !td->error)
1412 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001413
Jens Axboea2f77c92007-02-22 11:53:00 +01001414 td_set_runstate(td, TD_REAPED);
1415 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001416 }
1417 }
Jens Axboeebac4652005-12-08 15:25:21 +01001418
Jens Axboea2f77c92007-02-22 11:53:00 +01001419 /*
1420 * thread is not dead, continue
1421 */
gurudas paie48676b2007-04-11 12:44:27 +02001422 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001423 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001424reaped:
Jens Axboeebac4652005-12-08 15:25:21 +01001425 (*nr_running)--;
Jens Axboe581e7142009-06-09 12:47:16 +02001426 (*m_rate) -= (td->o.ratemin[0] + td->o.ratemin[1]);
1427 (*t_rate) -= (td->o.rate[0] + td->o.rate[1]);
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001428 if (!td->pid)
1429 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001430
1431 if (td->error)
1432 exit_value++;
Jens Axboed3eeeab2008-04-06 12:19:05 +02001433
1434 done_secs += mtime_since_now(&td->epoch) / 1000;
Jens Axboeebac4652005-12-08 15:25:21 +01001435 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001436
Jens Axboe1f809d12007-10-25 18:34:02 +02001437 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboecc0df002011-10-03 20:53:32 +02001438 fio_terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001439}
1440
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001441static void *gtod_thread_main(void *data)
1442{
1443 fio_mutex_up(startup_mutex);
1444
1445 /*
1446 * As long as we have jobs around, update the clock. It would be nice
1447 * to have some way of NOT hammering that CPU with gettimeofday(),
1448 * but I'm not sure what to use outside of a simple CPU nop to relax
1449 * it - we don't want to lose precision.
1450 */
1451 while (threads) {
1452 fio_gtod_update();
1453 nop;
1454 }
1455
1456 return NULL;
1457}
1458
1459static int fio_start_gtod_thread(void)
1460{
bart Van Assche304a47c2010-08-01 21:31:26 +02001461 pthread_attr_t attr;
Jens Axboef42c1532009-01-05 19:07:13 +01001462 int ret;
1463
bart Van Assche304a47c2010-08-01 21:31:26 +02001464 pthread_attr_init(&attr);
1465 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
1466 ret = pthread_create(&gtod_thread, &attr, gtod_thread_main, NULL);
1467 pthread_attr_destroy(&attr);
Jens Axboef42c1532009-01-05 19:07:13 +01001468 if (ret) {
1469 log_err("Can't create gtod thread: %s\n", strerror(ret));
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001470 return 1;
1471 }
Jens Axboef42c1532009-01-05 19:07:13 +01001472
1473 ret = pthread_detach(gtod_thread);
1474 if (ret) {
1475 log_err("Can't detatch gtod thread: %s\n", strerror(ret));
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001476 return 1;
1477 }
1478
Jens Axboe29adda32009-01-05 19:06:39 +01001479 dprint(FD_MUTEX, "wait on startup_mutex\n");
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001480 fio_mutex_down(startup_mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001481 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001482 return 0;
1483}
1484
Jens Axboe906c8d72006-06-13 09:37:56 +02001485/*
1486 * Main function for kicking off and reaping jobs, as needed.
1487 */
Jens Axboeebac4652005-12-08 15:25:21 +01001488static void run_threads(void)
1489{
Jens Axboeebac4652005-12-08 15:25:21 +01001490 struct thread_data *td;
1491 unsigned long spent;
1492 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001493
Jens Axboe2f9ade32006-10-20 11:25:52 +02001494 if (fio_pin_memory())
1495 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001496
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001497 if (fio_gtod_offload && fio_start_gtod_thread())
1498 return;
1499
Jens Axboecc0df002011-10-03 20:53:32 +02001500 set_sig_handlers();
1501
Jens Axboec6ae0a52006-06-12 11:04:44 +02001502 if (!terse_output) {
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001503 log_info("Starting ");
Jens Axboe9cedf162007-03-12 11:29:30 +01001504 if (nr_thread)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001505 log_info("%d thread%s", nr_thread,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001506 nr_thread > 1 ? "s" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001507 if (nr_process) {
1508 if (nr_thread)
1509 printf(" and ");
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001510 log_info("%d process%s", nr_process,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001511 nr_process > 1 ? "es" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001512 }
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001513 log_info("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001514 fflush(stdout);
1515 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001516
Jens Axboeebac4652005-12-08 15:25:21 +01001517 todo = thread_number;
1518 nr_running = 0;
1519 nr_started = 0;
1520 m_rate = t_rate = 0;
1521
Jens Axboe34572e22006-10-20 09:33:18 +02001522 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001523 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001524
Jens Axboe067430b2011-09-08 14:30:24 +02001525 if (!td->o.create_serialize)
Jens Axboeebac4652005-12-08 15:25:21 +01001526 continue;
1527
1528 /*
1529 * do file setup here so it happens sequentially,
1530 * we don't want X number of threads getting their
1531 * client data interspersed on disk
1532 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001533 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001534 exit_value++;
1535 if (td->error)
Jens Axboe5921e802008-05-30 15:02:38 +02001536 log_err("fio: pid=%d, err=%d/%s\n",
1537 (int) td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001538 td_set_runstate(td, TD_REAPED);
1539 todo--;
Jens Axboec69e8872008-03-01 18:50:48 +01001540 } else {
1541 struct fio_file *f;
Jens Axboe2b13e712011-01-19 14:04:16 -07001542 unsigned int j;
Jens Axboec69e8872008-03-01 18:50:48 +01001543
1544 /*
1545 * for sharing to work, each job must always open
1546 * its own files. so close them, if we opened them
1547 * for creation
1548 */
Jens Axboe2b13e712011-01-19 14:04:16 -07001549 for_each_file(td, f, j) {
Jens Axboe22a57ba2009-06-09 14:34:35 +02001550 if (fio_file_open(f))
1551 td_io_close_file(td, f);
Jens Axboe22a57ba2009-06-09 14:34:35 +02001552 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001553 }
Jens Axboeebac4652005-12-08 15:25:21 +01001554 }
1555
Jens Axboea2f77c92007-02-22 11:53:00 +01001556 set_genesis_time();
1557
Jens Axboeebac4652005-12-08 15:25:21 +01001558 while (todo) {
Jens Axboefca70352011-07-06 20:12:54 +02001559 struct thread_data *map[REAL_MAX_JOBS];
Jens Axboe75154842006-06-01 13:56:09 +02001560 struct timeval this_start;
1561 int this_jobs = 0, left;
1562
Jens Axboeebac4652005-12-08 15:25:21 +01001563 /*
1564 * create threads (TD_NOT_CREATED -> TD_CREATED)
1565 */
Jens Axboe34572e22006-10-20 09:33:18 +02001566 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001567 if (td->runstate != TD_NOT_CREATED)
1568 continue;
1569
1570 /*
1571 * never got a chance to start, killed by other
1572 * thread for some reason
1573 */
1574 if (td->terminate) {
1575 todo--;
1576 continue;
1577 }
1578
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001579 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001580 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001581
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001582 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001583 continue;
1584 }
1585
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001586 if (td->o.stonewall && (nr_started || nr_running)) {
1587 dprint(FD_PROCESS, "%s: stonewall wait\n",
1588 td->o.name);
Jens Axboeebac4652005-12-08 15:25:21 +01001589 break;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001590 }
Jens Axboeebac4652005-12-08 15:25:21 +01001591
Jens Axboe067430b2011-09-08 14:30:24 +02001592 init_disk_util(td);
1593
Jens Axboe75154842006-06-01 13:56:09 +02001594 /*
1595 * Set state to created. Thread will transition
1596 * to TD_INITIALIZED when it's done setting up.
1597 */
Jens Axboeebac4652005-12-08 15:25:21 +01001598 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001599 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001600 nr_started++;
1601
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001602 if (td->o.use_thread) {
Jens Axboef42c1532009-01-05 19:07:13 +01001603 int ret;
1604
Jens Axboeee56ad52008-02-01 10:30:20 +01001605 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboef42c1532009-01-05 19:07:13 +01001606 ret = pthread_create(&td->thread, NULL,
1607 thread_main, td);
1608 if (ret) {
1609 log_err("pthread_create: %s\n",
1610 strerror(ret));
Jens Axboeebac4652005-12-08 15:25:21 +01001611 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001612 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001613 }
Jens Axboef42c1532009-01-05 19:07:13 +01001614 ret = pthread_detach(td->thread);
1615 if (ret)
1616 log_err("pthread_detach: %s",
1617 strerror(ret));
Jens Axboeebac4652005-12-08 15:25:21 +01001618 } else {
Jens Axboe5e1d3062008-05-23 11:55:53 +02001619 pid_t pid;
Jens Axboeee56ad52008-02-01 10:30:20 +01001620 dprint(FD_PROCESS, "will fork\n");
Jens Axboe5e1d3062008-05-23 11:55:53 +02001621 pid = fork();
1622 if (!pid) {
Jens Axboea6418142007-02-17 04:47:18 +01001623 int ret = fork_main(shm_id, i);
1624
Jens Axboe5e1d3062008-05-23 11:55:53 +02001625 _exit(ret);
1626 } else if (i == fio_debug_jobno)
1627 *fio_debug_jobp = pid;
Jens Axboeebac4652005-12-08 15:25:21 +01001628 }
Jens Axboe29adda32009-01-05 19:06:39 +01001629 dprint(FD_MUTEX, "wait on startup_mutex\n");
Jens Axboe656b1392009-07-01 23:02:10 +02001630 if (fio_mutex_down_timeout(startup_mutex, 10)) {
1631 log_err("fio: job startup hung? exiting.\n");
Jens Axboecc0df002011-10-03 20:53:32 +02001632 fio_terminate_threads(TERMINATE_ALL);
Jens Axboe656b1392009-07-01 23:02:10 +02001633 fio_abort = 1;
1634 nr_started--;
1635 break;
1636 }
Jens Axboe29adda32009-01-05 19:06:39 +01001637 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001638 }
1639
1640 /*
Jens Axboe75154842006-06-01 13:56:09 +02001641 * Wait for the started threads to transition to
1642 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001643 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001644 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001645 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001646 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001647 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1648 break;
1649
1650 usleep(100000);
1651
1652 for (i = 0; i < this_jobs; i++) {
1653 td = map[i];
1654 if (!td)
1655 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001656 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001657 map[i] = NULL;
1658 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001659 } else if (td->runstate >= TD_EXITED) {
1660 map[i] = NULL;
1661 left--;
1662 todo--;
1663 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001664 }
1665 }
1666 }
1667
1668 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001669 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001670 for (i = 0; i < this_jobs; i++) {
1671 td = map[i];
1672 if (!td)
1673 continue;
1674 kill(td->pid, SIGTERM);
1675 }
1676 break;
1677 }
1678
1679 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001680 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001681 */
Jens Axboe34572e22006-10-20 09:33:18 +02001682 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001683 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001684 continue;
1685
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001686 if (in_ramp_time(td))
1687 td_set_runstate(td, TD_RAMP);
1688 else
1689 td_set_runstate(td, TD_RUNNING);
Jens Axboeebac4652005-12-08 15:25:21 +01001690 nr_running++;
1691 nr_started--;
Jens Axboe581e7142009-06-09 12:47:16 +02001692 m_rate += td->o.ratemin[0] + td->o.ratemin[1];
1693 t_rate += td->o.rate[0] + td->o.rate[1];
Jens Axboe75154842006-06-01 13:56:09 +02001694 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001695 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001696 }
1697
1698 reap_threads(&nr_running, &t_rate, &m_rate);
1699
1700 if (todo)
1701 usleep(100000);
1702 }
1703
1704 while (nr_running) {
1705 reap_threads(&nr_running, &t_rate, &m_rate);
Jens Axboecc0df002011-10-03 20:53:32 +02001706
1707 if (is_backend)
1708 fio_server_idle_loop();
Jens Axboe70e0c312011-10-04 09:18:30 +02001709 else
1710 usleep(10000);
Jens Axboeebac4652005-12-08 15:25:21 +01001711 }
1712
1713 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001714 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001715}
1716
Jens Axboe50d16972011-09-29 17:45:28 -06001717int exec_run(void)
Jens Axboeebac4652005-12-08 15:25:21 +01001718{
Jens Axboea37f69b2011-10-01 12:24:21 -06001719 if (nr_clients)
Jens Axboe37db14f2011-09-30 17:00:42 -06001720 return fio_handle_clients();
Jens Axboe07b32322010-03-05 09:48:44 +01001721 if (exec_profile && load_profile(exec_profile))
1722 return 1;
1723
Jens Axboe74929ac2009-08-05 11:42:37 +02001724 if (!thread_number)
1725 return 0;
1726
Jens Axboebb3884d2007-01-17 17:23:11 +11001727 if (write_bw_log) {
1728 setup_log(&agg_io_log[DDIR_READ]);
1729 setup_log(&agg_io_log[DDIR_WRITE]);
1730 }
1731
Jens Axboecdd18ad2008-02-27 18:58:00 +01001732 startup_mutex = fio_mutex_init(0);
Bruce Cran03e20d62011-01-02 20:14:54 +01001733 if (startup_mutex == NULL)
1734 return 1;
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001735 writeout_mutex = fio_mutex_init(1);
Bruce Cran03e20d62011-01-02 20:14:54 +01001736 if (writeout_mutex == NULL)
1737 return 1;
Jens Axboe07739b52007-03-08 20:25:46 +01001738
Jens Axboea2f77c92007-02-22 11:53:00 +01001739 set_genesis_time();
Jens Axboe79857012011-01-14 14:14:58 +01001740 create_disk_util_thread();
Jens Axboeebac4652005-12-08 15:25:21 +01001741
Jens Axboedae53412009-12-04 19:54:18 +01001742 cgroup_list = smalloc(sizeof(*cgroup_list));
1743 INIT_FLIST_HEAD(cgroup_list);
1744
Jens Axboeebac4652005-12-08 15:25:21 +01001745 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001746
Jens Axboebb3884d2007-01-17 17:23:11 +11001747 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001748 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001749 if (write_bw_log) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001750 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1751 __finish_log(agg_io_log[DDIR_WRITE],
1752 "agg-write_bw.log");
Jens Axboebb3884d2007-01-17 17:23:11 +11001753 }
1754 }
Jens Axboeebac4652005-12-08 15:25:21 +01001755
Jens Axboedae53412009-12-04 19:54:18 +01001756 cgroup_kill(cgroup_list);
1757 sfree(cgroup_list);
Jens Axboe61eb3132010-03-31 20:05:59 +02001758 sfree(cgroup_mnt);
Jens Axboe39f22022009-12-04 11:29:12 +01001759
Jens Axboecdd18ad2008-02-27 18:58:00 +01001760 fio_mutex_remove(startup_mutex);
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001761 fio_mutex_remove(writeout_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001762 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001763}
Jens Axboe50d16972011-09-29 17:45:28 -06001764
1765void reset_fio_state(void)
1766{
1767 groupid = 0;
1768 thread_number = 0;
1769 nr_process = 0;
1770 nr_thread = 0;
1771 done_secs = 0;
1772}
1773
Jens Axboe0ad5edc2011-10-05 12:39:06 +02001774static int endian_check(void)
1775{
1776 union {
1777 uint8_t c[8];
1778 uint64_t v;
1779 } u;
1780 int le = 0, be = 0;
1781
1782 u.v = 0x12;
1783 if (u.c[7] == 0x12)
1784 be = 1;
1785 else if (u.c[0] == 0x12)
1786 le = 1;
1787
1788#if defined(FIO_LITTLE_ENDIAN)
1789 if (be)
1790 return 1;
1791#elif defined(FIO_BIG_ENDIAN)
1792 if (le)
1793 return 1;
1794#else
1795 return 1;
1796#endif
1797
1798 if (!le && !be)
1799 return 1;
1800
1801 return 0;
1802}
1803
Jens Axboe50d16972011-09-29 17:45:28 -06001804int main(int argc, char *argv[], char *envp[])
1805{
1806 long ps;
1807
Jens Axboe0ad5edc2011-10-05 12:39:06 +02001808 if (endian_check()) {
1809 log_err("fio: endianness settings appear wrong.\n");
1810 log_err("fio: please report this to fio@vger.kernel.org\n");
1811 return 1;
1812 }
1813
Jens Axboe50d16972011-09-29 17:45:28 -06001814 arch_init(envp);
1815
1816 sinit();
1817
1818 /*
1819 * We need locale for number printing, if it isn't set then just
1820 * go with the US format.
1821 */
1822 if (!getenv("LC_NUMERIC"))
1823 setlocale(LC_NUMERIC, "en_US");
1824
1825 ps = sysconf(_SC_PAGESIZE);
1826 if (ps < 0) {
1827 log_err("Failed to get page size\n");
1828 return 1;
1829 }
1830
1831 page_size = ps;
1832 page_mask = ps - 1;
1833
1834 fio_keywords_init();
1835
1836 if (parse_options(argc, argv))
1837 return 1;
1838
1839 return exec_run();
1840}