blob: a15080b4a26e89bebea6edf5def458e701e0cddd [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 Axboeebac4652005-12-08 15:25:21 +010078#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020079#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010080
Jens Axboeb29ee5b2008-09-11 10:17:26 +020081void td_set_runstate(struct thread_data *td, int runstate)
Jens Axboe6ce15a32007-01-12 09:04:41 +010082{
Jens Axboed8fab1b2008-03-06 10:25:17 +010083 if (td->runstate == runstate)
84 return;
85
Jens Axboe5921e802008-05-30 15:02:38 +020086 dprint(FD_PROCESS, "pid=%d: runstate %d -> %d\n", (int) td->pid,
87 td->runstate, runstate);
Jens Axboe6ce15a32007-01-12 09:04:41 +010088 td->runstate = runstate;
89}
90
Jens Axboe390c40e2007-03-05 12:35:29 +010091static void terminate_threads(int group_id)
Jens Axboeebac4652005-12-08 15:25:21 +010092{
Jens Axboe34572e22006-10-20 09:33:18 +020093 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010094 int i;
95
Jens Axboe6f88bcb2008-03-19 10:29:07 +010096 dprint(FD_PROCESS, "terminate group_id=%d\n", group_id);
97
Jens Axboe34572e22006-10-20 09:33:18 +020098 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010099 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
Jens Axboe6f88bcb2008-03-19 10:29:07 +0100100 dprint(FD_PROCESS, "setting terminate on %s/%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +0200101 td->o.name, (int) td->pid);
Jens Axboead830ed2008-02-18 21:11:24 +0100102 td->terminate = 1;
103 td->o.start_delay = 0;
104
Jens Axboe7a93ab12007-04-18 12:25:41 +0200105 /*
106 * if the thread is running, just let it exit
107 */
Michael Callahan6aa27812011-07-14 07:56:37 +0200108 if (!td->pid)
109 continue;
110 else if (td->runstate < TD_RAMP)
Bruce Cran03e20d62011-01-02 20:14:54 +0100111 kill(td->pid, SIGTERM);
Jens Axboef63f7f32008-03-01 15:25:24 +0100112 else {
113 struct ioengine_ops *ops = td->io_ops;
114
Bruce Cran03e20d62011-01-02 20:14:54 +0100115 if (ops && (ops->flags & FIO_SIGTERM))
116 kill(td->pid, SIGTERM);
Jens Axboef63f7f32008-03-01 15:25:24 +0100117 }
Jens Axboeebac4652005-12-08 15:25:21 +0100118 }
119 }
120}
121
Jens Axboe697a6062008-05-31 00:04:45 +0200122static void sig_int(int sig)
123{
124 if (threads) {
Jens Axboe4ceb30d2010-02-24 09:19:14 +0100125 log_info("\nfio: terminating on signal %d\n", sig);
Jens Axboe009b1be2011-09-29 18:27:02 -0600126 exit_backend = 1;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100127 fflush(stdout);
Jens Axboedeaa1af2011-05-05 08:17:03 -0600128 exit_value = 128;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100129 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +0100130 }
131}
132
Jens Axboe79857012011-01-14 14:14:58 +0100133static void *disk_thread_main(void *data)
Jens Axboea5b01f12010-11-11 09:19:49 +0100134{
Jens Axboe79857012011-01-14 14:14:58 +0100135 fio_mutex_up(startup_mutex);
136
137 while (threads) {
138 usleep(DISK_UTIL_MSEC * 1000);
Jens Axboe9a793c22011-01-14 15:22:14 +0100139 if (!threads)
140 break;
Jens Axboe79857012011-01-14 14:14:58 +0100141 update_io_ticks();
Jens Axboe5c341e92011-09-29 18:00:35 -0600142
143 if (!is_backend)
144 print_thread_status();
Jens Axboe79857012011-01-14 14:14:58 +0100145 }
146
147 return NULL;
Jens Axboea5b01f12010-11-11 09:19:49 +0100148}
149
Jens Axboe79857012011-01-14 14:14:58 +0100150static int create_disk_util_thread(void)
Jens Axboea5b01f12010-11-11 09:19:49 +0100151{
Jens Axboe79857012011-01-14 14:14:58 +0100152 int ret;
Jens Axboea5b01f12010-11-11 09:19:49 +0100153
Jens Axboe69204d62011-01-14 18:29:19 +0100154 ret = pthread_create(&disk_util_thread, NULL, disk_thread_main, NULL);
Jens Axboe79857012011-01-14 14:14:58 +0100155 if (ret) {
156 log_err("Can't create disk util thread: %s\n", strerror(ret));
157 return 1;
158 }
Jens Axboea5b01f12010-11-11 09:19:49 +0100159
Jens Axboe79857012011-01-14 14:14:58 +0100160 ret = pthread_detach(disk_util_thread);
161 if (ret) {
162 log_err("Can't detatch disk util thread: %s\n", strerror(ret));
163 return 1;
164 }
Bruce Cran03e20d62011-01-02 20:14:54 +0100165
Jens Axboe79857012011-01-14 14:14:58 +0100166 dprint(FD_MUTEX, "wait on startup_mutex\n");
167 fio_mutex_down(startup_mutex);
168 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
169 return 0;
Jens Axboea5b01f12010-11-11 09:19:49 +0100170}
171
Jens Axboe697a6062008-05-31 00:04:45 +0200172static void set_sig_handlers(void)
173{
174 struct sigaction act;
175
176 memset(&act, 0, sizeof(act));
Jens Axboe697a6062008-05-31 00:04:45 +0200177 act.sa_handler = sig_int;
178 act.sa_flags = SA_RESTART;
179 sigaction(SIGINT, &act, NULL);
Jens Axboede79c912008-08-04 21:43:55 +0200180
181 memset(&act, 0, sizeof(act));
Jens Axboeb20b6be2011-05-11 13:23:01 +0200182 act.sa_handler = sig_int;
Jens Axboe5f8f9722008-11-18 19:10:21 +0100183 act.sa_flags = SA_RESTART;
Bruce Cran03e20d62011-01-02 20:14:54 +0100184 sigaction(SIGTERM, &act, NULL);
Jens Axboe697a6062008-05-31 00:04:45 +0200185}
186
187/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200188 * Check if we are above the minimum rate given.
189 */
Jens Axboe581e7142009-06-09 12:47:16 +0200190static int __check_min_rate(struct thread_data *td, struct timeval *now,
Steven Langbd93e342011-06-03 21:15:50 +0200191 enum fio_ddir ddir)
Jens Axboeebac4652005-12-08 15:25:21 +0100192{
Jens Axboe09042002007-02-23 10:56:22 +0100193 unsigned long long bytes = 0;
Jens Axboe4e991c22007-03-15 11:41:11 +0100194 unsigned long iops = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100195 unsigned long spent;
196 unsigned long rate;
Jens Axboe581e7142009-06-09 12:47:16 +0200197 unsigned int ratemin = 0;
198 unsigned int rate_iops = 0;
199 unsigned int rate_iops_min = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100200
Jens Axboeff58fce2010-08-25 12:02:08 +0200201 assert(ddir_rw(ddir));
202
Jens Axboed982d872009-06-10 06:35:48 +0200203 if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
204 return 0;
205
Jens Axboeebac4652005-12-08 15:25:21 +0100206 /*
207 * allow a 2 second settle period in the beginning
208 */
209 if (mtime_since(&td->start, now) < 2000)
210 return 0;
211
Jens Axboe581e7142009-06-09 12:47:16 +0200212 iops += td->io_blocks[ddir];
213 bytes += td->this_io_bytes[ddir];
214 ratemin += td->o.ratemin[ddir];
215 rate_iops += td->o.rate_iops[ddir];
216 rate_iops_min += td->o.rate_iops_min[ddir];
Jens Axboe09042002007-02-23 10:56:22 +0100217
Jens Axboeebac4652005-12-08 15:25:21 +0100218 /*
219 * if rate blocks is set, sample is running
220 */
Jens Axboe581e7142009-06-09 12:47:16 +0200221 if (td->rate_bytes[ddir] || td->rate_blocks[ddir]) {
222 spent = mtime_since(&td->lastrate[ddir], now);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100223 if (spent < td->o.ratecycle)
Jens Axboeebac4652005-12-08 15:25:21 +0100224 return 0;
225
Jens Axboe581e7142009-06-09 12:47:16 +0200226 if (td->o.rate[ddir]) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100227 /*
228 * check bandwidth specified rate
229 */
Jens Axboe581e7142009-06-09 12:47:16 +0200230 if (bytes < td->rate_bytes[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100231 log_err("%s: min rate %u not met\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200232 ratemin);
Jens Axboe413dd452007-02-23 09:26:09 +0100233 return 1;
Jens Axboe4e991c22007-03-15 11:41:11 +0100234 } else {
Jens Axboe581e7142009-06-09 12:47:16 +0200235 rate = ((bytes - td->rate_bytes[ddir]) * 1000) / spent;
236 if (rate < ratemin ||
237 bytes < td->rate_bytes[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100238 log_err("%s: min rate %u not met, got"
Jens Axboeb22989b2009-07-17 22:29:23 +0200239 " %luKB/sec\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200240 ratemin, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100241 return 1;
242 }
243 }
244 } else {
245 /*
246 * checks iops specified rate
247 */
Jens Axboe581e7142009-06-09 12:47:16 +0200248 if (iops < rate_iops) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100249 log_err("%s: min iops rate %u not met\n",
Jens Axboe581e7142009-06-09 12:47:16 +0200250 td->o.name, rate_iops);
Jens Axboe4e991c22007-03-15 11:41:11 +0100251 return 1;
252 } else {
Jens Axboe581e7142009-06-09 12:47:16 +0200253 rate = ((iops - td->rate_blocks[ddir]) * 1000) / spent;
254 if (rate < rate_iops_min ||
255 iops < td->rate_blocks[ddir]) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100256 log_err("%s: min iops rate %u not met,"
257 " got %lu\n", td->o.name,
Jens Axboe581e7142009-06-09 12:47:16 +0200258 rate_iops_min, rate);
Jens Axboe4e991c22007-03-15 11:41:11 +0100259 }
Jens Axboe413dd452007-02-23 09:26:09 +0100260 }
Jens Axboeebac4652005-12-08 15:25:21 +0100261 }
262 }
263
Jens Axboe581e7142009-06-09 12:47:16 +0200264 td->rate_bytes[ddir] = bytes;
265 td->rate_blocks[ddir] = iops;
266 memcpy(&td->lastrate[ddir], now, sizeof(*now));
Jens Axboeebac4652005-12-08 15:25:21 +0100267 return 0;
268}
269
Jens Axboe581e7142009-06-09 12:47:16 +0200270static int check_min_rate(struct thread_data *td, struct timeval *now,
271 unsigned long *bytes_done)
272{
273 int ret = 0;
274
275 if (bytes_done[0])
276 ret |= __check_min_rate(td, now, 0);
277 if (bytes_done[1])
278 ret |= __check_min_rate(td, now, 1);
279
280 return ret;
281}
282
Jens Axboeebac4652005-12-08 15:25:21 +0100283static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
284{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100285 if (!td->o.timeout)
Jens Axboeebac4652005-12-08 15:25:21 +0100286 return 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100287 if (mtime_since(&td->epoch, t) >= td->o.timeout * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +0100288 return 1;
289
290 return 0;
291}
292
Jens Axboe906c8d72006-06-13 09:37:56 +0200293/*
294 * When job exits, we can cancel the in-flight IO if we are using async
295 * io. Attempt to do so.
296 */
Jens Axboeebac4652005-12-08 15:25:21 +0100297static void cleanup_pending_aio(struct thread_data *td)
298{
Jens Axboe01743ee2008-06-02 12:19:19 +0200299 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100300 struct io_u *io_u;
301 int r;
302
303 /*
304 * get immediately available events, if any
305 */
Jens Axboe581e7142009-06-09 12:47:16 +0200306 r = io_u_queued_complete(td, 0, NULL);
Jens Axboeb2fdda42007-02-20 20:52:51 +0100307 if (r < 0)
308 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100309
310 /*
311 * now cancel remaining active events
312 */
Jens Axboe2866c822006-10-09 15:57:48 +0200313 if (td->io_ops->cancel) {
Jens Axboe01743ee2008-06-02 12:19:19 +0200314 flist_for_each_safe(entry, n, &td->io_u_busylist) {
315 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100316
Jens Axboe0c6e7512007-02-22 11:19:39 +0100317 /*
318 * if the io_u isn't in flight, then that generally
319 * means someone leaked an io_u. complain but fix
320 * it up, so we don't stall here.
321 */
322 if ((io_u->flags & IO_U_F_FLIGHT) == 0) {
323 log_err("fio: non-busy IO on busy list\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100324 put_io_u(td, io_u);
Jens Axboe0c6e7512007-02-22 11:19:39 +0100325 } else {
326 r = td->io_ops->cancel(td, io_u);
327 if (!r)
328 put_io_u(td, io_u);
329 }
Jens Axboeebac4652005-12-08 15:25:21 +0100330 }
331 }
332
Jens Axboe97601022007-02-18 12:47:29 +0100333 if (td->cur_depth)
Jens Axboe581e7142009-06-09 12:47:16 +0200334 r = io_u_queued_complete(td, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100335}
336
Jens Axboe906c8d72006-06-13 09:37:56 +0200337/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200338 * Helper to handle the final sync of a file. Works just like the normal
339 * io path, just does everything sync.
340 */
341static int fio_io_sync(struct thread_data *td, struct fio_file *f)
342{
343 struct io_u *io_u = __get_io_u(td);
Jens Axboe858a3d42006-10-24 14:54:44 +0200344 int ret;
345
346 if (!io_u)
347 return 1;
348
349 io_u->ddir = DDIR_SYNC;
350 io_u->file = f;
351
352 if (td_io_prep(td, io_u)) {
353 put_io_u(td, io_u);
354 return 1;
355 }
356
Jens Axboe755200a2007-02-19 13:08:12 +0100357requeue:
Jens Axboe858a3d42006-10-24 14:54:44 +0200358 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100359 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100360 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe858a3d42006-10-24 14:54:44 +0200361 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200362 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100363 } else if (ret == FIO_Q_QUEUED) {
Jens Axboe581e7142009-06-09 12:47:16 +0200364 if (io_u_queued_complete(td, 1, NULL) < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100365 return 1;
Jens Axboe36167d82007-02-18 05:41:31 +0100366 } else if (ret == FIO_Q_COMPLETED) {
367 if (io_u->error) {
Jens Axboee1161c32007-02-22 19:36:48 +0100368 td_verror(td, io_u->error, "td_io_queue");
Jens Axboe36167d82007-02-18 05:41:31 +0100369 return 1;
370 }
Jens Axboe858a3d42006-10-24 14:54:44 +0200371
Jens Axboe581e7142009-06-09 12:47:16 +0200372 if (io_u_sync_complete(td, io_u, NULL) < 0)
Jens Axboeb2fdda42007-02-20 20:52:51 +0100373 return 1;
Jens Axboe755200a2007-02-19 13:08:12 +0100374 } else if (ret == FIO_Q_BUSY) {
375 if (td_io_commit(td))
376 return 1;
377 goto requeue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200378 }
379
380 return 0;
381}
382
Jens Axboe687c6a22011-07-07 12:36:59 +0200383static inline void __update_tv_cache(struct thread_data *td)
384{
385 fio_gettime(&td->tv_cache, NULL);
386}
387
Jens Axboe993bf482008-11-14 13:04:53 +0100388static inline void update_tv_cache(struct thread_data *td)
389{
390 if ((++td->tv_cache_nr & td->tv_cache_mask) == td->tv_cache_mask)
Jens Axboe687c6a22011-07-07 12:36:59 +0200391 __update_tv_cache(td);
Jens Axboe993bf482008-11-14 13:04:53 +0100392}
393
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200394static int break_on_this_error(struct thread_data *td, int *retptr)
395{
396 int ret = *retptr;
397
398 if (ret < 0 || td->error) {
399 int err;
400
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200401 if (!td->o.continue_on_error)
402 return 1;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200403
404 if (ret < 0)
405 err = -ret;
406 else
407 err = td->error;
408
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200409 if (td_non_fatal_error(err)) {
410 /*
411 * Continue with the I/Os in case of
412 * a non fatal error.
413 */
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200414 update_error_count(td, err);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200415 td_clear_error(td);
416 *retptr = 0;
417 return 0;
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200418 } else if (td->o.fill_device && err == ENOSPC) {
419 /*
420 * We expect to hit this error if
421 * fill_device option is set.
422 */
423 td_clear_error(td);
424 td->terminate = 1;
425 return 1;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200426 } else {
427 /*
428 * Stop the I/O in case of a fatal
429 * error.
430 */
Radha Ramachandran8a4f8a22009-07-02 08:30:49 +0200431 update_error_count(td, err);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200432 return 1;
433 }
434 }
435
436 return 0;
437}
438
Jens Axboe858a3d42006-10-24 14:54:44 +0200439/*
Jens Axboe34403fb2007-03-02 21:43:25 +0100440 * The main verify engine. Runs over the writes we previously submitted,
Jens Axboe906c8d72006-06-13 09:37:56 +0200441 * reads the blocks back in, and checks the crc/md5 of the data.
442 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100443static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100444{
Jens Axboe53cdc682006-10-18 11:50:58 +0200445 struct fio_file *f;
Jens Axboe36167d82007-02-18 05:41:31 +0100446 struct io_u *io_u;
Jens Axboeaf52b342007-03-13 10:07:47 +0100447 int ret, min_events;
448 unsigned int i;
Jens Axboee5b401d2006-10-18 16:03:40 +0200449
Jens Axboe008618a2010-03-18 19:29:45 +0100450 dprint(FD_VERIFY, "starting loop\n");
451
Jens Axboee5b401d2006-10-18 16:03:40 +0200452 /*
453 * sync io first and invalidate cache, to make sure we really
454 * read from disk.
455 */
456 for_each_file(td, f, i) {
Jens Axboed6aed792009-06-03 08:41:15 +0200457 if (!fio_file_open(f))
Jens Axboe3d7b4852007-03-13 14:50:28 +0100458 continue;
Jens Axboeb2fdda42007-02-20 20:52:51 +0100459 if (fio_io_sync(td, f))
460 break;
461 if (file_invalidate_cache(td, f))
462 break;
Jens Axboee5b401d2006-10-18 16:03:40 +0200463 }
Jens Axboeebac4652005-12-08 15:25:21 +0100464
Jens Axboeb2fdda42007-02-20 20:52:51 +0100465 if (td->error)
466 return;
467
Jens Axboeebac4652005-12-08 15:25:21 +0100468 td_set_runstate(td, TD_VERIFYING);
469
Jens Axboe36167d82007-02-18 05:41:31 +0100470 io_u = NULL;
471 while (!td->terminate) {
Jens Axboe49504212008-06-05 09:03:30 +0200472 int ret2, full;
Jens Axboe54517922007-03-05 10:06:06 +0100473
Jens Axboe993bf482008-11-14 13:04:53 +0100474 update_tv_cache(td);
475
476 if (runtime_exceeded(td, &td->tv_cache)) {
Jens Axboe687c6a22011-07-07 12:36:59 +0200477 __update_tv_cache(td);
478 if (runtime_exceeded(td, &td->tv_cache)) {
479 td->terminate = 1;
480 break;
481 }
Jens Axboe069c2912007-02-21 23:02:39 +0100482 }
Jens Axboe53cdc682006-10-18 11:50:58 +0200483
Radha Ramachandrandcb48302009-06-16 08:31:29 +0200484 io_u = __get_io_u(td);
485 if (!io_u)
486 break;
487
Jens Axboe069c2912007-02-21 23:02:39 +0100488 if (get_next_verify(td, io_u)) {
489 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100490 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100491 }
Jens Axboeebac4652005-12-08 15:25:21 +0100492
Jens Axboe069c2912007-02-21 23:02:39 +0100493 if (td_io_prep(td, io_u)) {
494 put_io_u(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100495 break;
Jens Axboe069c2912007-02-21 23:02:39 +0100496 }
Jens Axboed7762cf2007-02-23 12:34:57 +0100497
Jens Axboee8462bd2009-07-06 12:59:04 +0200498 if (td->o.verify_async)
499 io_u->end_io = verify_io_u_async;
500 else
501 io_u->end_io = verify_io_u;
Jens Axboe36167d82007-02-18 05:41:31 +0100502
Jens Axboe11786802007-03-05 18:33:22 +0100503 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100504 switch (ret) {
505 case FIO_Q_COMPLETED:
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200506 if (io_u->error) {
Jens Axboe22819ec2007-02-18 07:47:14 +0100507 ret = -io_u->error;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200508 clear_io_u(td, io_u);
509 } else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100510 int bytes = io_u->xfer_buflen - io_u->resid;
511
Jens Axboe9e9d1642007-03-12 09:37:46 +0100512 /*
513 * zero read, fail
514 */
515 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200516 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100517 put_io_u(td, io_u);
518 break;
519 }
Jens Axboe8400d9b2007-03-28 11:10:09 +0200520
Jens Axboe36167d82007-02-18 05:41:31 +0100521 io_u->xfer_buflen = io_u->resid;
522 io_u->xfer_buf += bytes;
Jens Axboe8400d9b2007-03-28 11:10:09 +0200523 io_u->offset += bytes;
524
Jens Axboeff58fce2010-08-25 12:02:08 +0200525 if (ddir_rw(io_u->ddir))
526 td->ts.short_io_u[io_u->ddir]++;
Jens Axboe30061b92007-04-17 13:31:34 +0200527
Jens Axboe2b13e712011-01-19 14:04:16 -0700528 f = io_u->file;
Jens Axboed460eb32007-04-16 21:39:33 +0200529 if (io_u->offset == f->real_file_size)
Jens Axboe8400d9b2007-03-28 11:10:09 +0200530 goto sync_done;
531
Jens Axboe11786802007-03-05 18:33:22 +0100532 requeue_io_u(td, &io_u);
533 } else {
Jens Axboe8400d9b2007-03-28 11:10:09 +0200534sync_done:
Jens Axboe581e7142009-06-09 12:47:16 +0200535 ret = io_u_sync_complete(td, io_u, NULL);
Jens Axboe11786802007-03-05 18:33:22 +0100536 if (ret < 0)
537 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100538 }
Jens Axboe36167d82007-02-18 05:41:31 +0100539 continue;
540 case FIO_Q_QUEUED:
541 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100542 case FIO_Q_BUSY:
543 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100544 ret2 = td_io_commit(td);
545 if (ret2 < 0)
546 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100547 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100548 default:
549 assert(ret < 0);
Jens Axboee1161c32007-02-22 19:36:48 +0100550 td_verror(td, -ret, "td_io_queue");
Jens Axboeebac4652005-12-08 15:25:21 +0100551 break;
552 }
553
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200554 if (break_on_this_error(td, &ret))
Jens Axboeebac4652005-12-08 15:25:21 +0100555 break;
556
Jens Axboe3af6ef32007-02-18 06:57:43 +0100557 /*
558 * if we can queue more, do so. but check if there are
Jens Axboeccc02052011-07-14 12:45:13 +0200559 * completed io_u's first. Note that we can get BUSY even
560 * without IO queued, if the system is resource starved.
Jens Axboe3af6ef32007-02-18 06:57:43 +0100561 */
Jens Axboeccc02052011-07-14 12:45:13 +0200562 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
Jens Axboe49504212008-06-05 09:03:30 +0200563 if (full || !td->o.iodepth_batch_complete) {
Radha Ramachandran6a962762009-11-05 08:33:49 +0100564 min_events = min(td->o.iodepth_batch_complete,
565 td->cur_depth);
Dan Ehrenberg1f84f1d2011-07-23 13:36:44 +0200566 if (full && !min_events && td->o.iodepth_batch_complete != 0)
Jens Axboe838bc702008-05-22 13:08:23 +0200567 min_events = 1;
Jens Axboee916b392007-02-20 14:37:26 +0100568
Jens Axboe49504212008-06-05 09:03:30 +0200569 do {
570 /*
571 * Reap required number of io units, if any,
572 * and do the verification on them through
573 * the callback handler
574 */
Jens Axboe581e7142009-06-09 12:47:16 +0200575 if (io_u_queued_complete(td, min_events, NULL) < 0) {
Jens Axboe49504212008-06-05 09:03:30 +0200576 ret = -1;
577 break;
578 }
579 } while (full && (td->cur_depth > td->o.iodepth_low));
580 }
581 if (ret < 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100582 break;
583 }
584
Jens Axboec01c0392007-02-26 12:43:42 +0100585 if (!td->error) {
586 min_events = td->cur_depth;
587
588 if (min_events)
Jens Axboe581e7142009-06-09 12:47:16 +0200589 ret = io_u_queued_complete(td, min_events, NULL);
Jens Axboec01c0392007-02-26 12:43:42 +0100590 } else
Jens Axboeebac4652005-12-08 15:25:21 +0100591 cleanup_pending_aio(td);
592
593 td_set_runstate(td, TD_RUNNING);
Jens Axboe008618a2010-03-18 19:29:45 +0100594
595 dprint(FD_VERIFY, "exiting loop\n");
Jens Axboeebac4652005-12-08 15:25:21 +0100596}
597
Jens Axboe32cd46a2006-06-07 13:40:40 +0200598/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200599 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200600 * and reaps them, checking for rate and errors along the way.
601 */
Jens Axboeebac4652005-12-08 15:25:21 +0100602static void do_io(struct thread_data *td)
603{
Jens Axboeaf52b342007-03-13 10:07:47 +0100604 unsigned int i;
605 int ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100606
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200607 if (in_ramp_time(td))
608 td_set_runstate(td, TD_RAMP);
609 else
610 td_set_runstate(td, TD_RUNNING);
Jens Axboe5853e5a2006-06-08 14:41:05 +0200611
Glen Ogilvie457bf392009-11-03 21:52:36 +0100612 while ( (td->o.read_iolog_file && !flist_empty(&td->io_log_list)) ||
Jens Axboea917a8b2010-09-02 13:23:20 +0200613 (!flist_empty(&td->trim_list)) ||
Glen Ogilvie457bf392009-11-03 21:52:36 +0100614 ((td->this_io_bytes[0] + td->this_io_bytes[1]) < td->o.size) ) {
Jens Axboe97601022007-02-18 12:47:29 +0100615 struct timeval comp_time;
Jens Axboe581e7142009-06-09 12:47:16 +0200616 unsigned long bytes_done[2] = { 0, 0 };
Jens Axboe84585002006-10-19 20:26:22 +0200617 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100618 struct io_u *io_u;
Jens Axboe49504212008-06-05 09:03:30 +0200619 int ret2, full;
Jens Axboeebac4652005-12-08 15:25:21 +0100620
621 if (td->terminate)
622 break;
623
Jens Axboe993bf482008-11-14 13:04:53 +0100624 update_tv_cache(td);
Jens Axboe97601022007-02-18 12:47:29 +0100625
Jens Axboe993bf482008-11-14 13:04:53 +0100626 if (runtime_exceeded(td, &td->tv_cache)) {
Jens Axboe687c6a22011-07-07 12:36:59 +0200627 __update_tv_cache(td);
628 if (runtime_exceeded(td, &td->tv_cache)) {
629 td->terminate = 1;
630 break;
631 }
Jens Axboe97601022007-02-18 12:47:29 +0100632 }
Jens Axboe36167d82007-02-18 05:41:31 +0100633
Radha Ramachandrandcb48302009-06-16 08:31:29 +0200634 io_u = get_io_u(td);
635 if (!io_u)
636 break;
637
Jens Axboeb67740d2007-07-26 12:22:30 +0200638 /*
639 * Add verification end_io handler, if asked to verify
640 * a previously written file.
641 */
Jens Axboe715d2b32009-09-04 20:53:53 +0200642 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_READ &&
643 !td_rw(td)) {
Jens Axboee8462bd2009-07-06 12:59:04 +0200644 if (td->o.verify_async)
645 io_u->end_io = verify_io_u_async;
646 else
647 io_u->end_io = verify_io_u;
Jens Axboed8fab1b2008-03-06 10:25:17 +0100648 td_set_runstate(td, TD_VERIFYING);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200649 } else if (in_ramp_time(td))
650 td_set_runstate(td, TD_RAMP);
651 else
Jens Axboed8fab1b2008-03-06 10:25:17 +0100652 td_set_runstate(td, TD_RUNNING);
Jens Axboeb67740d2007-07-26 12:22:30 +0200653
Jens Axboe11786802007-03-05 18:33:22 +0100654 ret = td_io_queue(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100655 switch (ret) {
656 case FIO_Q_COMPLETED:
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200657 if (io_u->error) {
Jens Axboe54517922007-03-05 10:06:06 +0100658 ret = -io_u->error;
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200659 clear_io_u(td, io_u);
660 } else if (io_u->resid) {
Jens Axboe36167d82007-02-18 05:41:31 +0100661 int bytes = io_u->xfer_buflen - io_u->resid;
Jens Axboed460eb32007-04-16 21:39:33 +0200662 struct fio_file *f = io_u->file;
Jens Axboe36167d82007-02-18 05:41:31 +0100663
Jens Axboe9e9d1642007-03-12 09:37:46 +0100664 /*
665 * zero read, fail
666 */
667 if (!bytes) {
Jens Axboe41d9f0f2008-06-02 12:19:50 +0200668 td_verror(td, EIO, "full resid");
Jens Axboe9e9d1642007-03-12 09:37:46 +0100669 put_io_u(td, io_u);
670 break;
671 }
672
Jens Axboe36167d82007-02-18 05:41:31 +0100673 io_u->xfer_buflen = io_u->resid;
674 io_u->xfer_buf += bytes;
Jens Axboe5a7c5682007-03-28 11:07:20 +0200675 io_u->offset += bytes;
676
Jens Axboeff58fce2010-08-25 12:02:08 +0200677 if (ddir_rw(io_u->ddir))
678 td->ts.short_io_u[io_u->ddir]++;
Jens Axboe30061b92007-04-17 13:31:34 +0200679
Jens Axboed460eb32007-04-16 21:39:33 +0200680 if (io_u->offset == f->real_file_size)
Jens Axboe5a7c5682007-03-28 11:07:20 +0200681 goto sync_done;
682
Jens Axboe11786802007-03-05 18:33:22 +0100683 requeue_io_u(td, &io_u);
684 } else {
Jens Axboe5a7c5682007-03-28 11:07:20 +0200685sync_done:
Jens Axboe581e7142009-06-09 12:47:16 +0200686 if (__should_check_rate(td, 0) ||
687 __should_check_rate(td, 1))
Jens Axboe993bf482008-11-14 13:04:53 +0100688 fio_gettime(&comp_time, NULL);
689
Jens Axboe581e7142009-06-09 12:47:16 +0200690 ret = io_u_sync_complete(td, io_u, bytes_done);
691 if (ret < 0)
692 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100693 }
Jens Axboe36167d82007-02-18 05:41:31 +0100694 break;
695 case FIO_Q_QUEUED:
Jens Axboe7e77dd02007-02-20 10:57:34 +0100696 /*
697 * if the engine doesn't have a commit hook,
698 * the io_u is really queued. if it does have such
699 * a hook, it has to call io_u_queued() itself.
700 */
701 if (td->io_ops->commit == NULL)
702 io_u_queued(td, io_u);
Jens Axboe36167d82007-02-18 05:41:31 +0100703 break;
Jens Axboe755200a2007-02-19 13:08:12 +0100704 case FIO_Q_BUSY:
705 requeue_io_u(td, &io_u);
Jens Axboe54517922007-03-05 10:06:06 +0100706 ret2 = td_io_commit(td);
707 if (ret2 < 0)
708 ret = ret2;
Jens Axboe755200a2007-02-19 13:08:12 +0100709 break;
Jens Axboe36167d82007-02-18 05:41:31 +0100710 default:
711 assert(ret < 0);
712 put_io_u(td, io_u);
713 break;
Jens Axboeebac4652005-12-08 15:25:21 +0100714 }
715
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200716 if (break_on_this_error(td, &ret))
Jens Axboe36167d82007-02-18 05:41:31 +0100717 break;
718
Jens Axboe97601022007-02-18 12:47:29 +0100719 /*
Jens Axboeccc02052011-07-14 12:45:13 +0200720 * See if we need to complete some commands. Note that we
721 * can get BUSY even without IO queued, if the system is
722 * resource starved.
Jens Axboe97601022007-02-18 12:47:29 +0100723 */
Jens Axboeccc02052011-07-14 12:45:13 +0200724 full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
Jens Axboe49504212008-06-05 09:03:30 +0200725 if (full || !td->o.iodepth_batch_complete) {
Radha Ramachandran6a962762009-11-05 08:33:49 +0100726 min_evts = min(td->o.iodepth_batch_complete,
727 td->cur_depth);
Dan Ehrenberg1f84f1d2011-07-23 13:36:44 +0200728 if (full && !min_evts && td->o.iodepth_batch_complete != 0)
Jens Axboe36167d82007-02-18 05:41:31 +0100729 min_evts = 1;
Jens Axboe49504212008-06-05 09:03:30 +0200730
Jens Axboe581e7142009-06-09 12:47:16 +0200731 if (__should_check_rate(td, 0) ||
732 __should_check_rate(td, 1))
Jens Axboe993bf482008-11-14 13:04:53 +0100733 fio_gettime(&comp_time, NULL);
Jens Axboe49504212008-06-05 09:03:30 +0200734
735 do {
Jens Axboe581e7142009-06-09 12:47:16 +0200736 ret = io_u_queued_complete(td, min_evts, bytes_done);
737 if (ret < 0)
Jens Axboe49504212008-06-05 09:03:30 +0200738 break;
739
Jens Axboe49504212008-06-05 09:03:30 +0200740 } while (full && (td->cur_depth > td->o.iodepth_low));
Jens Axboeebac4652005-12-08 15:25:21 +0100741 }
742
Jens Axboe49504212008-06-05 09:03:30 +0200743 if (ret < 0)
744 break;
Jens Axboe581e7142009-06-09 12:47:16 +0200745 if (!(bytes_done[0] + bytes_done[1]))
Jens Axboe97601022007-02-18 12:47:29 +0100746 continue;
747
Jens Axboe581e7142009-06-09 12:47:16 +0200748 if (!in_ramp_time(td) && should_check_rate(td, bytes_done)) {
749 if (check_min_rate(td, &comp_time, bytes_done)) {
Jens Axboe721938a2008-09-10 09:46:16 +0200750 if (exitall_on_terminate)
751 terminate_threads(td->groupid);
752 td_verror(td, EIO, "check_min_rate");
753 break;
754 }
Jens Axboeebac4652005-12-08 15:25:21 +0100755 }
756
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100757 if (td->o.thinktime) {
Jens Axboe9c1f7432007-01-03 20:43:19 +0100758 unsigned long long b;
759
760 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100761 if (!(b % td->o.thinktime_blocks)) {
Jens Axboe48097d52007-02-17 06:30:44 +0100762 int left;
763
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100764 if (td->o.thinktime_spin)
Jens Axboe6dd6f2c2008-12-10 13:24:12 +0100765 usec_spin(td->o.thinktime_spin);
Jens Axboe48097d52007-02-17 06:30:44 +0100766
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100767 left = td->o.thinktime - td->o.thinktime_spin;
Jens Axboe48097d52007-02-17 06:30:44 +0100768 if (left)
769 usec_sleep(td, left);
770 }
Jens Axboe9c1f7432007-01-03 20:43:19 +0100771 }
Jens Axboeebac4652005-12-08 15:25:21 +0100772 }
773
Jens Axboed708ac52010-09-02 13:29:55 +0200774 if (td->trim_entries)
775 printf("trim entries %ld\n", td->trim_entries);
Jens Axboea917a8b2010-09-02 13:23:20 +0200776
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100777 if (td->o.fill_device && td->error == ENOSPC) {
778 td->error = 0;
779 td->terminate = 1;
780 }
Jens Axboe4d2413c2006-11-23 11:58:59 +0100781 if (!td->error) {
Jens Axboe3d7c3912007-02-19 13:16:12 +0100782 struct fio_file *f;
783
Jens Axboec01c0392007-02-26 12:43:42 +0100784 i = td->cur_depth;
Steven Langd06093e2011-06-13 09:47:36 +0200785 if (i) {
Jens Axboe581e7142009-06-09 12:47:16 +0200786 ret = io_u_queued_complete(td, i, NULL);
Steven Langd06093e2011-06-13 09:47:36 +0200787 if (td->o.fill_device && td->error == ENOSPC)
788 td->error = 0;
789 }
Jens Axboeebac4652005-12-08 15:25:21 +0100790
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100791 if (should_fsync(td) && td->o.end_fsync) {
Jens Axboe84585002006-10-19 20:26:22 +0200792 td_set_runstate(td, TD_FSYNCING);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100793
794 for_each_file(td, f, i) {
Jens Axboed6aed792009-06-03 08:41:15 +0200795 if (!fio_file_open(f))
Jens Axboe3d7b4852007-03-13 14:50:28 +0100796 continue;
Jens Axboe858a3d42006-10-24 14:54:44 +0200797 fio_io_sync(td, f);
Jens Axboe3d7b4852007-03-13 14:50:28 +0100798 }
Jens Axboe84585002006-10-19 20:26:22 +0200799 }
Jens Axboec01c0392007-02-26 12:43:42 +0100800 } else
801 cleanup_pending_aio(td);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100802
803 /*
804 * stop job if we failed doing any IO
805 */
806 if ((td->this_io_bytes[0] + td->this_io_bytes[1]) == 0)
807 td->done = 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100808}
809
Jens Axboeebac4652005-12-08 15:25:21 +0100810static void cleanup_io_u(struct thread_data *td)
811{
Jens Axboe01743ee2008-06-02 12:19:19 +0200812 struct flist_head *entry, *n;
Jens Axboeebac4652005-12-08 15:25:21 +0100813 struct io_u *io_u;
814
Jens Axboe01743ee2008-06-02 12:19:19 +0200815 flist_for_each_safe(entry, n, &td->io_u_freelist) {
816 io_u = flist_entry(entry, struct io_u, list);
Jens Axboeebac4652005-12-08 15:25:21 +0100817
Jens Axboe01743ee2008-06-02 12:19:19 +0200818 flist_del(&io_u->list);
Jens Axboe91aea6e2011-04-25 20:46:58 +0200819 fio_memfree(io_u, sizeof(*io_u));
Jens Axboeebac4652005-12-08 15:25:21 +0100820 }
821
Jens Axboe2f9ade32006-10-20 11:25:52 +0200822 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100823}
824
825static int init_io_u(struct thread_data *td)
826{
827 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100828 unsigned int max_bs;
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200829 int cl_align, i, max_units;
Jens Axboeebac4652005-12-08 15:25:21 +0100830 char *p;
831
Jens Axboe1e3c09a2008-02-04 10:48:13 +0100832 max_units = td->o.iodepth;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100833 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100834 td->orig_buffer_size = (unsigned long long) max_bs
835 * (unsigned long long) max_units;
Jens Axboe74b025b2006-12-19 15:18:14 +0100836
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100837 if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) {
838 unsigned long bs;
839
840 bs = td->orig_buffer_size + td->o.hugepage_size - 1;
841 td->orig_buffer_size = bs & ~(td->o.hugepage_size - 1);
842 }
Jens Axboeebac4652005-12-08 15:25:21 +0100843
Jens Axboec3990642007-07-19 10:17:09 +0200844 if (td->orig_buffer_size != (size_t) td->orig_buffer_size) {
845 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
846 return 1;
847 }
848
Jens Axboe2f9ade32006-10-20 11:25:52 +0200849 if (allocate_io_mem(td))
850 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100851
Jens Axboe1c04bf72010-09-07 13:28:17 +0200852 if (td->o.odirect || td->o.mem_align ||
853 (td->io_ops->flags & FIO_RAWIO))
Jens Axboed529ee12009-07-01 10:33:03 +0200854 p = PAGE_ALIGN(td->orig_buffer) + td->o.mem_align;
Jens Axboeb3f378e2007-07-20 12:39:22 +0200855 else
856 p = td->orig_buffer;
857
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200858 cl_align = os_cache_line_size();
859
Jens Axboeebac4652005-12-08 15:25:21 +0100860 for (i = 0; i < max_units; i++) {
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200861 void *ptr;
862
Jens Axboedb1cd902007-04-26 13:47:07 +0200863 if (td->terminate)
864 return 1;
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200865
Jens Axboe91aea6e2011-04-25 20:46:58 +0200866 ptr = fio_memalign(cl_align, sizeof(*io_u));
867 if (!ptr) {
868 log_err("fio: unable to allocate aligned memory\n");
Jens Axboeeb7ccf32009-04-29 09:48:04 +0200869 break;
870 }
871
872 io_u = ptr;
Jens Axboeebac4652005-12-08 15:25:21 +0100873 memset(io_u, 0, sizeof(*io_u));
Jens Axboe01743ee2008-06-02 12:19:19 +0200874 INIT_FLIST_HEAD(&io_u->list);
Jens Axboed529ee12009-07-01 10:33:03 +0200875 dprint(FD_MEM, "io_u alloc %p, index %u\n", io_u, i);
Jens Axboeebac4652005-12-08 15:25:21 +0100876
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200877 if (!(td->io_ops->flags & FIO_NOIO)) {
878 io_u->buf = p + max_bs * i;
Jens Axboed529ee12009-07-01 10:33:03 +0200879 dprint(FD_MEM, "io_u %p, mem %p\n", io_u, io_u->buf);
Jens Axboee9459e52007-04-17 15:46:32 +0200880
Jens Axboe3545a102011-08-31 15:20:15 -0600881 if (td_write(td))
Jens Axboe5973caf2008-05-21 19:52:35 +0200882 io_u_fill_buffer(td, io_u, max_bs);
Jens Axboe3545a102011-08-31 15:20:15 -0600883 if (td_write(td) && td->o.verify_pattern_bytes) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +0200884 /*
885 * Fill the buffer with the pattern if we are
886 * going to be doing writes.
887 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100888 fill_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +0200889 }
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200890 }
Jens Axboe6b9cea22006-10-30 17:00:24 +0100891
Jens Axboeb1ff3402006-02-17 11:35:58 +0100892 io_u->index = i;
Jens Axboe0c6e7512007-02-22 11:19:39 +0100893 io_u->flags = IO_U_F_FREE;
Jens Axboe01743ee2008-06-02 12:19:19 +0200894 flist_add(&io_u->list, &td->io_u_freelist);
Jens Axboeebac4652005-12-08 15:25:21 +0100895 }
896
897 return 0;
898}
899
Jens Axboeda867742006-06-06 10:39:10 -0700900static int switch_ioscheduler(struct thread_data *td)
901{
902 char tmp[256], tmp2[128];
903 FILE *f;
904 int ret;
905
Jens Axboeba0fbe12007-03-09 14:34:23 +0100906 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200907 return 0;
908
Jens Axboeda867742006-06-06 10:39:10 -0700909 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
910
911 f = fopen(tmp, "r+");
912 if (!f) {
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200913 if (errno == ENOENT) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100914 log_err("fio: os or kernel doesn't support IO scheduler"
915 " switching\n");
Jens Axboecbf5c1d2007-04-16 12:56:00 +0200916 return 0;
917 }
918 td_verror(td, errno, "fopen iosched");
Jens Axboeda867742006-06-06 10:39:10 -0700919 return 1;
920 }
921
922 /*
923 * Set io scheduler.
924 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100925 ret = fwrite(td->o.ioscheduler, strlen(td->o.ioscheduler), 1, f);
Jens Axboeda867742006-06-06 10:39:10 -0700926 if (ferror(f) || ret != 1) {
Jens Axboee1161c32007-02-22 19:36:48 +0100927 td_verror(td, errno, "fwrite");
Jens Axboeda867742006-06-06 10:39:10 -0700928 fclose(f);
929 return 1;
930 }
931
932 rewind(f);
933
934 /*
935 * Read back and check that the selected scheduler is now the default.
936 */
937 ret = fread(tmp, 1, sizeof(tmp), f);
938 if (ferror(f) || ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +0100939 td_verror(td, errno, "fread");
Jens Axboeda867742006-06-06 10:39:10 -0700940 fclose(f);
941 return 1;
942 }
943
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100944 sprintf(tmp2, "[%s]", td->o.ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700945 if (!strstr(tmp, tmp2)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100946 log_err("fio: io scheduler %s not found\n", td->o.ioscheduler);
Jens Axboee1161c32007-02-22 19:36:48 +0100947 td_verror(td, EINVAL, "iosched_switch");
Jens Axboeda867742006-06-06 10:39:10 -0700948 fclose(f);
949 return 1;
950 }
951
952 fclose(f);
953 return 0;
954}
955
Jens Axboe492158c2007-05-24 10:32:47 +0200956static int keep_running(struct thread_data *td)
957{
958 unsigned long long io_done;
959
Jens Axboe20e354e2007-07-23 14:36:16 +0200960 if (td->done)
961 return 0;
Jens Axboe492158c2007-05-24 10:32:47 +0200962 if (td->o.time_based)
963 return 1;
964 if (td->o.loops) {
965 td->o.loops--;
966 return 1;
967 }
968
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100969 io_done = td->io_bytes[DDIR_READ] + td->io_bytes[DDIR_WRITE]
970 + td->io_skip_bytes;
Jens Axboe492158c2007-05-24 10:32:47 +0200971 if (io_done < td->o.size)
972 return 1;
973
974 return 0;
975}
976
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200977static void reset_io_counters(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100978{
Jens Axboe756867b2007-03-06 15:19:24 +0100979 td->ts.stat_io_bytes[0] = td->ts.stat_io_bytes[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100980 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100981 td->zone_bytes = 0;
Jens Axboe581e7142009-06-09 12:47:16 +0200982 td->rate_bytes[0] = td->rate_bytes[1] = 0;
983 td->rate_blocks[0] = td->rate_blocks[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100984
Jens Axboec1324df2007-02-19 19:06:41 +0100985 td->last_was_sync = 0;
986
Jens Axboe2ba1c292008-02-01 13:16:38 +0100987 /*
988 * reset file done count if we are to start over
989 */
990 if (td->o.time_based || td->o.loops)
Jens Axboe48f5abd2007-07-20 13:25:04 +0200991 td->nr_done_files = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200992}
993
994void reset_all_stats(struct thread_data *td)
995{
996 struct timeval tv;
997 int i;
998
999 reset_io_counters(td);
1000
1001 for (i = 0; i < 2; i++) {
1002 td->io_bytes[i] = 0;
1003 td->io_blocks[i] = 0;
1004 td->io_issues[i] = 0;
1005 td->ts.total_io_u[i] = 0;
1006 }
Bruce Cran9b836562011-01-08 19:49:54 +01001007
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001008 fio_gettime(&tv, NULL);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001009 td->ts.runtime[0] = 0;
1010 td->ts.runtime[1] = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001011 memcpy(&td->epoch, &tv, sizeof(tv));
1012 memcpy(&td->start, &tv, sizeof(tv));
1013}
1014
Jens Axboedf9c26b2009-03-05 10:13:58 +01001015static void clear_io_state(struct thread_data *td)
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001016{
1017 struct fio_file *f;
1018 unsigned int i;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001019
1020 reset_io_counters(td);
Jens Axboe281f9b62007-05-23 09:34:42 +02001021
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001022 close_files(td);
Jens Axboedf9c26b2009-03-05 10:13:58 +01001023 for_each_file(td, f, i)
Jens Axboed6aed792009-06-03 08:41:15 +02001024 fio_file_clear_done(f);
Jens Axboef0153942011-07-07 15:35:27 +02001025
1026 /*
1027 * Set the same seed to get repeatable runs
1028 */
1029 td_fill_rand_seeds(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001030}
1031
Jens Axboe398e8c42009-05-20 12:10:02 +02001032static int exec_string(const char *string)
1033{
1034 int ret, newlen = strlen(string) + 1 + 8;
1035 char *str;
1036
1037 str = malloc(newlen);
1038 sprintf(str, "sh -c %s", string);
1039
1040 ret = system(str);
1041 if (ret == -1)
1042 log_err("fio: exec of cmd <%s> failed\n", str);
1043
1044 free(str);
1045 return ret;
1046}
1047
Jens Axboe906c8d72006-06-13 09:37:56 +02001048/*
1049 * Entry point for the thread based jobs. The process based jobs end up
1050 * here as well, after a little setup.
1051 */
Jens Axboeebac4652005-12-08 15:25:21 +01001052static void *thread_main(void *data)
1053{
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001054 unsigned long long elapsed;
Jens Axboeebac4652005-12-08 15:25:21 +01001055 struct thread_data *td = data;
Jens Axboee8462bd2009-07-06 12:59:04 +02001056 pthread_condattr_t attr;
Jens Axboea978ba62007-03-08 14:29:03 +01001057 int clear_state;
Jens Axboeebac4652005-12-08 15:25:21 +01001058
Jens Axboe47f767c2011-07-12 21:17:49 +02001059 if (!td->o.use_thread) {
Jens Axboeebac4652005-12-08 15:25:21 +01001060 setsid();
Jens Axboe47f767c2011-07-12 21:17:49 +02001061 td->pid = getpid();
1062 } else
1063 td->pid = gettid();
Jens Axboeebac4652005-12-08 15:25:21 +01001064
Jens Axboe5921e802008-05-30 15:02:38 +02001065 dprint(FD_PROCESS, "jobs pid=%d started\n", (int) td->pid);
Jens Axboeee56ad52008-02-01 10:30:20 +01001066
Jens Axboe01743ee2008-06-02 12:19:19 +02001067 INIT_FLIST_HEAD(&td->io_u_freelist);
1068 INIT_FLIST_HEAD(&td->io_u_busylist);
1069 INIT_FLIST_HEAD(&td->io_u_requeues);
1070 INIT_FLIST_HEAD(&td->io_log_list);
1071 INIT_FLIST_HEAD(&td->io_hist_list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001072 INIT_FLIST_HEAD(&td->verify_list);
Jens Axboe0d29de82010-09-01 13:54:15 +02001073 INIT_FLIST_HEAD(&td->trim_list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001074 pthread_mutex_init(&td->io_u_lock, NULL);
Jens Axboebb5d7d02007-03-27 10:21:25 +02001075 td->io_hist_tree = RB_ROOT;
Jens Axboeaea47d42006-05-26 19:27:29 +02001076
Jens Axboee8462bd2009-07-06 12:59:04 +02001077 pthread_condattr_init(&attr);
1078 pthread_cond_init(&td->verify_cond, &attr);
1079 pthread_cond_init(&td->free_cond, &attr);
1080
Jens Axboe75154842006-06-01 13:56:09 +02001081 td_set_runstate(td, TD_INITIALIZED);
Jens Axboe29adda32009-01-05 19:06:39 +01001082 dprint(FD_MUTEX, "up startup_mutex\n");
Jens Axboecdd18ad2008-02-27 18:58:00 +01001083 fio_mutex_up(startup_mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001084 dprint(FD_MUTEX, "wait on td->mutex\n");
Jens Axboecdd18ad2008-02-27 18:58:00 +01001085 fio_mutex_down(td->mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001086 dprint(FD_MUTEX, "done waiting on td->mutex\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001087
Jens Axboe37f56872007-03-09 12:42:35 +01001088 /*
Jens Axboecdd18ad2008-02-27 18:58:00 +01001089 * the ->mutex mutex is now no longer used, close it to avoid
Jens Axboe37f56872007-03-09 12:42:35 +01001090 * eating a file descriptor
1091 */
Jens Axboecdd18ad2008-02-27 18:58:00 +01001092 fio_mutex_remove(td->mutex);
Jens Axboe37f56872007-03-09 12:42:35 +01001093
Stefan Hajnoczidfc6e752011-01-07 20:58:05 +00001094 /*
1095 * A new gid requires privilege, so we need to do this before setting
1096 * the uid.
1097 */
Jens Axboee0b0d892009-12-08 10:10:14 +01001098 if (td->o.gid != -1U && setgid(td->o.gid)) {
1099 td_verror(td, errno, "setgid");
1100 goto err;
1101 }
Stefan Hajnoczidfc6e752011-01-07 20:58:05 +00001102 if (td->o.uid != -1U && setuid(td->o.uid)) {
1103 td_verror(td, errno, "setuid");
1104 goto err;
1105 }
Jens Axboee0b0d892009-12-08 10:10:14 +01001106
Jens Axboed84f8d42007-05-16 08:47:46 +02001107 /*
Jens Axboebe18a942011-07-08 19:25:04 +02001108 * If we have a gettimeofday() thread, make sure we exclude that
1109 * thread from this job
1110 */
1111 if (td->o.gtod_cpu)
1112 fio_cpu_clear(&td->o.cpumask, td->o.gtod_cpu);
1113
1114 /*
1115 * Set affinity first, in case it has an impact on the memory
1116 * allocations.
1117 */
1118 if (td->o.cpumask_set && fio_setaffinity(td->pid, td->o.cpumask) == -1) {
1119 td_verror(td, errno, "cpu_set_affinity");
1120 goto err;
1121 }
1122
1123 /*
Jens Axboed84f8d42007-05-16 08:47:46 +02001124 * May alter parameters that init_io_u() will use, so we need to
1125 * do this first.
1126 */
1127 if (init_iolog(td))
1128 goto err;
1129
Jens Axboedb1cd902007-04-26 13:47:07 +02001130 if (init_io_u(td))
1131 goto err;
1132
Jens Axboee8462bd2009-07-06 12:59:04 +02001133 if (td->o.verify_async && verify_async_init(td))
1134 goto err;
1135
Jens Axboeac684782007-11-08 08:29:07 +01001136 if (td->ioprio_set) {
Jens Axboedb1cd902007-04-26 13:47:07 +02001137 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
1138 td_verror(td, errno, "ioprio_set");
1139 goto err;
1140 }
1141 }
1142
Jens Axboe6adb38a2009-12-07 08:01:26 +01001143 if (td->o.cgroup_weight && cgroup_setup(td, cgroup_list, &cgroup_mnt))
Jens Axboea696fa22009-12-04 10:05:02 +01001144 goto err;
1145
Jens Axboedb1cd902007-04-26 13:47:07 +02001146 if (nice(td->o.nice) == -1) {
1147 td_verror(td, errno, "nice");
1148 goto err;
1149 }
1150
1151 if (td->o.ioscheduler && switch_ioscheduler(td))
1152 goto err;
1153
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001154 if (!td->o.create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +01001155 goto err;
Jens Axboeb5af8292007-03-08 12:43:13 +01001156
1157 if (td_io_init(td))
Jens Axboe21972cd2006-11-23 12:39:16 +01001158 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +01001159
Jens Axboe68727072007-03-15 20:49:25 +01001160 if (init_random_map(td))
1161 goto err;
1162
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001163 if (td->o.exec_prerun) {
Jens Axboe398e8c42009-05-20 12:10:02 +02001164 if (exec_string(td->o.exec_prerun))
Jens Axboe69cfd7e2007-02-07 13:58:53 +01001165 goto err;
1166 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +02001167
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001168 if (td->o.pre_read) {
1169 if (pre_read_files(td) < 0)
1170 goto err;
1171 }
1172
Jens Axboe69008992006-11-24 13:12:56 +01001173 fio_gettime(&td->epoch, NULL);
Jens Axboe756867b2007-03-06 15:19:24 +01001174 getrusage(RUSAGE_SELF, &td->ts.ru_start);
Jens Axboe69008992006-11-24 13:12:56 +01001175
Jens Axboea978ba62007-03-08 14:29:03 +01001176 clear_state = 0;
Jens Axboe492158c2007-05-24 10:32:47 +02001177 while (keep_running(td)) {
Jens Axboe02bcaa82006-11-24 10:42:00 +01001178 fio_gettime(&td->start, NULL);
Jens Axboec5d3d792009-07-31 11:20:52 +02001179 memcpy(&td->ts.stat_sample_time[0], &td->start,
1180 sizeof(td->start));
1181 memcpy(&td->ts.stat_sample_time[1], &td->start,
1182 sizeof(td->start));
Jens Axboe993bf482008-11-14 13:04:53 +01001183 memcpy(&td->tv_cache, &td->start, sizeof(td->start));
Jens Axboeebac4652005-12-08 15:25:21 +01001184
Jens Axboecf2dd8d2009-06-09 12:58:37 +02001185 if (td->o.ratemin[0] || td->o.ratemin[1])
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001186 memcpy(&td->lastrate, &td->ts.stat_sample_time,
1187 sizeof(td->lastrate));
Jens Axboeebac4652005-12-08 15:25:21 +01001188
Jens Axboedf9c26b2009-03-05 10:13:58 +01001189 if (clear_state)
1190 clear_io_state(td);
Jens Axboea978ba62007-03-08 14:29:03 +01001191
Jens Axboeebac4652005-12-08 15:25:21 +01001192 prune_io_piece_log(td);
1193
Jens Axboeba0fbe12007-03-09 14:34:23 +01001194 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001195
Jens Axboea978ba62007-03-08 14:29:03 +01001196 clear_state = 1;
1197
Jens Axboe38d77ca2007-03-21 14:20:20 +01001198 if (td_read(td) && td->io_bytes[DDIR_READ]) {
Jens Axboe0a4957c2009-06-03 10:30:33 +02001199 elapsed = utime_since_now(&td->start);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001200 td->ts.runtime[DDIR_READ] += elapsed;
Jens Axboe38d77ca2007-03-21 14:20:20 +01001201 }
1202 if (td_write(td) && td->io_bytes[DDIR_WRITE]) {
Jens Axboe0a4957c2009-06-03 10:30:33 +02001203 elapsed = utime_since_now(&td->start);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001204 td->ts.runtime[DDIR_WRITE] += elapsed;
Jens Axboe38d77ca2007-03-21 14:20:20 +01001205 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001206
Jens Axboeebac4652005-12-08 15:25:21 +01001207 if (td->error || td->terminate)
1208 break;
1209
Shawn Lewise84c73a2007-08-02 22:19:32 +02001210 if (!td->o.do_verify ||
1211 td->o.verify == VERIFY_NONE ||
Jens Axboeb67740d2007-07-26 12:22:30 +02001212 (td->io_ops->flags & FIO_UNIDIR))
Jens Axboeebac4652005-12-08 15:25:21 +01001213 continue;
1214
Jens Axboedf9c26b2009-03-05 10:13:58 +01001215 clear_io_state(td);
Jens Axboea978ba62007-03-08 14:29:03 +01001216
Jens Axboe02bcaa82006-11-24 10:42:00 +01001217 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +01001218
1219 do_verify(td);
1220
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001221 td->ts.runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +01001222
1223 if (td->error || td->terminate)
1224 break;
1225 }
1226
Jens Axboe36dff962006-11-24 13:29:20 +01001227 update_rusage_stat(td);
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +01001228 td->ts.runtime[0] = (td->ts.runtime[0] + 999) / 1000;
1229 td->ts.runtime[1] = (td->ts.runtime[1] + 999) / 1000;
Jens Axboe756867b2007-03-06 15:19:24 +01001230 td->ts.total_run_time = mtime_since_now(&td->epoch);
1231 td->ts.io_bytes[0] = td->io_bytes[0];
1232 td->ts.io_bytes[1] = td->io_bytes[1];
Jens Axboe69008992006-11-24 13:12:56 +01001233
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001234 fio_mutex_down(writeout_mutex);
Jens Axboee3cedca2008-11-19 19:57:52 +01001235 if (td->ts.bw_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001236 if (td->o.bw_log_file) {
1237 finish_log_named(td, td->ts.bw_log,
1238 td->o.bw_log_file, "bw");
1239 } else
Jens Axboee3cedca2008-11-19 19:57:52 +01001240 finish_log(td, td->ts.bw_log, "bw");
1241 }
Jens Axboe02af0982010-06-24 09:59:34 +02001242 if (td->ts.lat_log) {
1243 if (td->o.lat_log_file) {
1244 finish_log_named(td, td->ts.lat_log,
1245 td->o.lat_log_file, "lat");
1246 } else
1247 finish_log(td, td->ts.lat_log, "lat");
1248 }
Jens Axboee3cedca2008-11-19 19:57:52 +01001249 if (td->ts.slat_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001250 if (td->o.lat_log_file) {
1251 finish_log_named(td, td->ts.slat_log,
Radha Ramachandran1ca95732009-04-29 07:23:26 +02001252 td->o.lat_log_file, "slat");
Jens Axboef4844702008-12-09 08:04:29 +01001253 } else
Jens Axboee3cedca2008-11-19 19:57:52 +01001254 finish_log(td, td->ts.slat_log, "slat");
1255 }
1256 if (td->ts.clat_log) {
Jens Axboef4844702008-12-09 08:04:29 +01001257 if (td->o.lat_log_file) {
1258 finish_log_named(td, td->ts.clat_log,
1259 td->o.lat_log_file, "clat");
1260 } else
Jens Axboee3cedca2008-11-19 19:57:52 +01001261 finish_log(td, td->ts.clat_log, "clat");
1262 }
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001263 fio_mutex_up(writeout_mutex);
Jens Axboe398e8c42009-05-20 12:10:02 +02001264 if (td->o.exec_postrun)
1265 exec_string(td->o.exec_postrun);
Jens Axboeebac4652005-12-08 15:25:21 +01001266
1267 if (exitall_on_terminate)
Jens Axboe390c40e2007-03-05 12:35:29 +01001268 terminate_threads(td->groupid);
Jens Axboeebac4652005-12-08 15:25:21 +01001269
1270err:
Jens Axboe5bf13a52007-02-17 01:51:47 +01001271 if (td->error)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001272 log_info("fio: pid=%d, err=%d/%s\n", (int) td->pid, td->error,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001273 td->verror);
Jens Axboeb4707ed2009-11-04 12:51:17 +01001274
1275 if (td->o.verify_async)
1276 verify_async_exit(td);
1277
Jens Axboe24ffd2c2008-03-01 15:47:08 +01001278 close_and_free_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +02001279 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001280 cleanup_io_u(td);
Jens Axboe6adb38a2009-12-07 08:01:26 +01001281 cgroup_shutdown(td, &cgroup_mnt);
Jens Axboef29b25a2007-07-23 08:56:43 +02001282
Jens Axboed2ce18b2008-12-12 20:51:40 +01001283 if (td->o.cpumask_set) {
1284 int ret = fio_cpuset_exit(&td->o.cpumask);
1285
1286 td_verror(td, ret, "fio_cpuset_exit");
1287 }
Jens Axboe4e78e402008-12-12 20:40:27 +01001288
Jens Axboef29b25a2007-07-23 08:56:43 +02001289 /*
1290 * do this very late, it will log file closing as well
1291 */
1292 if (td->o.write_iolog_file)
1293 write_iolog_close(td);
1294
Jens Axboed23bb322007-03-23 15:57:56 +01001295 options_mem_free(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001296 td_set_runstate(td, TD_EXITED);
Jens Axboe43d76802007-02-21 16:35:29 +01001297 return (void *) (unsigned long) td->error;
Jens Axboeebac4652005-12-08 15:25:21 +01001298}
1299
Jens Axboe906c8d72006-06-13 09:37:56 +02001300/*
1301 * We cannot pass the td data into a forked process, so attach the td and
1302 * pass it to the thread worker.
1303 */
Jens Axboea6418142007-02-17 04:47:18 +01001304static int fork_main(int shmid, int offset)
Jens Axboeebac4652005-12-08 15:25:21 +01001305{
1306 struct thread_data *td;
Jens Axboea6418142007-02-17 04:47:18 +01001307 void *data, *ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001308
Jens Axboe65258962011-07-09 08:31:53 +02001309#ifndef __hpux
Jens Axboeebac4652005-12-08 15:25:21 +01001310 data = shmat(shmid, NULL, 0);
1311 if (data == (void *) -1) {
Jens Axboea6418142007-02-17 04:47:18 +01001312 int __err = errno;
1313
Jens Axboeebac4652005-12-08 15:25:21 +01001314 perror("shmat");
Jens Axboea6418142007-02-17 04:47:18 +01001315 return __err;
Jens Axboeebac4652005-12-08 15:25:21 +01001316 }
Jens Axboe65258962011-07-09 08:31:53 +02001317#else
1318 /*
1319 * HP-UX inherits shm mappings?
1320 */
1321 data = threads;
1322#endif
Jens Axboeebac4652005-12-08 15:25:21 +01001323
1324 td = data + offset * sizeof(struct thread_data);
Jens Axboea6418142007-02-17 04:47:18 +01001325 ret = thread_main(td);
Jens Axboeebac4652005-12-08 15:25:21 +01001326 shmdt(data);
Jens Axboe43d76802007-02-21 16:35:29 +01001327 return (int) (unsigned long) ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001328}
1329
Jens Axboe906c8d72006-06-13 09:37:56 +02001330/*
Jens Axboe906c8d72006-06-13 09:37:56 +02001331 * Run over the job map and reap the threads that have exited, if any.
1332 */
Jens Axboeebac4652005-12-08 15:25:21 +01001333static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
1334{
Jens Axboe34572e22006-10-20 09:33:18 +02001335 struct thread_data *td;
Jens Axboe1f809d12007-10-25 18:34:02 +02001336 int i, cputhreads, realthreads, pending, status, ret;
Jens Axboeebac4652005-12-08 15:25:21 +01001337
1338 /*
1339 * reap exited threads (TD_EXITED -> TD_REAPED)
1340 */
Jens Axboe1f809d12007-10-25 18:34:02 +02001341 realthreads = pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +02001342 for_each_td(td, i) {
Jens Axboe3707f452007-02-22 12:26:57 +01001343 int flags = 0;
Jens Axboea2f77c92007-02-22 11:53:00 +01001344
Jens Axboe84585002006-10-19 20:26:22 +02001345 /*
1346 * ->io_ops is NULL for a thread that has closed its
1347 * io engine
1348 */
Jens Axboeba0fbe12007-03-09 14:34:23 +01001349 if (td->io_ops && !strcmp(td->io_ops->name, "cpuio"))
Jens Axboeb990b5c2006-09-14 09:48:22 +02001350 cputhreads++;
Jens Axboe1f809d12007-10-25 18:34:02 +02001351 else
1352 realthreads++;
Jens Axboeb990b5c2006-09-14 09:48:22 +02001353
Aaron Carrolla1dedc12008-02-20 09:14:12 +01001354 if (!td->pid) {
1355 pending++;
1356 continue;
1357 }
1358 if (td->runstate == TD_REAPED)
Jens Axboea2f77c92007-02-22 11:53:00 +01001359 continue;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001360 if (td->o.use_thread) {
Jens Axboe3707f452007-02-22 12:26:57 +01001361 if (td->runstate == TD_EXITED) {
1362 td_set_runstate(td, TD_REAPED);
1363 goto reaped;
1364 }
1365 continue;
1366 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001367
1368 flags = WNOHANG;
1369 if (td->runstate == TD_EXITED)
1370 flags = 0;
1371
1372 /*
1373 * check if someone quit or got killed in an unusual way
1374 */
1375 ret = waitpid(td->pid, &status, flags);
Jens Axboe3707f452007-02-22 12:26:57 +01001376 if (ret < 0) {
Jens Axboea2f77c92007-02-22 11:53:00 +01001377 if (errno == ECHILD) {
Jens Axboe5921e802008-05-30 15:02:38 +02001378 log_err("fio: pid=%d disappeared %d\n",
1379 (int) td->pid, td->runstate);
Jens Axboea2f77c92007-02-22 11:53:00 +01001380 td_set_runstate(td, TD_REAPED);
1381 goto reaped;
1382 }
1383 perror("waitpid");
1384 } else if (ret == td->pid) {
1385 if (WIFSIGNALED(status)) {
Jens Axboefab6aa72007-02-17 06:19:24 +01001386 int sig = WTERMSIG(status);
1387
Bruce Cran03e20d62011-01-02 20:14:54 +01001388 if (sig != SIGTERM)
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001389 log_err("fio: pid=%d, got signal=%d\n",
Jens Axboe5921e802008-05-30 15:02:38 +02001390 (int) td->pid, sig);
Jens Axboefab6aa72007-02-17 06:19:24 +01001391 td_set_runstate(td, TD_REAPED);
1392 goto reaped;
1393 }
Jens Axboea2f77c92007-02-22 11:53:00 +01001394 if (WIFEXITED(status)) {
1395 if (WEXITSTATUS(status) && !td->error)
1396 td->error = WEXITSTATUS(status);
Jens Axboefab6aa72007-02-17 06:19:24 +01001397
Jens Axboea2f77c92007-02-22 11:53:00 +01001398 td_set_runstate(td, TD_REAPED);
1399 goto reaped;
Jens Axboea6418142007-02-17 04:47:18 +01001400 }
1401 }
Jens Axboeebac4652005-12-08 15:25:21 +01001402
Jens Axboea2f77c92007-02-22 11:53:00 +01001403 /*
1404 * thread is not dead, continue
1405 */
gurudas paie48676b2007-04-11 12:44:27 +02001406 pending++;
Jens Axboea2f77c92007-02-22 11:53:00 +01001407 continue;
Jens Axboefab6aa72007-02-17 06:19:24 +01001408reaped:
Jens Axboeebac4652005-12-08 15:25:21 +01001409 (*nr_running)--;
Jens Axboe581e7142009-06-09 12:47:16 +02001410 (*m_rate) -= (td->o.ratemin[0] + td->o.ratemin[1]);
1411 (*t_rate) -= (td->o.rate[0] + td->o.rate[1]);
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001412 if (!td->pid)
1413 pending--;
Jens Axboea2f77c92007-02-22 11:53:00 +01001414
1415 if (td->error)
1416 exit_value++;
Jens Axboed3eeeab2008-04-06 12:19:05 +02001417
1418 done_secs += mtime_since_now(&td->epoch) / 1000;
Jens Axboeebac4652005-12-08 15:25:21 +01001419 }
Jens Axboeb990b5c2006-09-14 09:48:22 +02001420
Jens Axboe1f809d12007-10-25 18:34:02 +02001421 if (*nr_running == cputhreads && !pending && realthreads)
Jens Axboe390c40e2007-03-05 12:35:29 +01001422 terminate_threads(TERMINATE_ALL);
Jens Axboeebac4652005-12-08 15:25:21 +01001423}
1424
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001425static void *gtod_thread_main(void *data)
1426{
1427 fio_mutex_up(startup_mutex);
1428
1429 /*
1430 * As long as we have jobs around, update the clock. It would be nice
1431 * to have some way of NOT hammering that CPU with gettimeofday(),
1432 * but I'm not sure what to use outside of a simple CPU nop to relax
1433 * it - we don't want to lose precision.
1434 */
1435 while (threads) {
1436 fio_gtod_update();
1437 nop;
1438 }
1439
1440 return NULL;
1441}
1442
1443static int fio_start_gtod_thread(void)
1444{
bart Van Assche304a47c2010-08-01 21:31:26 +02001445 pthread_attr_t attr;
Jens Axboef42c1532009-01-05 19:07:13 +01001446 int ret;
1447
bart Van Assche304a47c2010-08-01 21:31:26 +02001448 pthread_attr_init(&attr);
1449 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
1450 ret = pthread_create(&gtod_thread, &attr, gtod_thread_main, NULL);
1451 pthread_attr_destroy(&attr);
Jens Axboef42c1532009-01-05 19:07:13 +01001452 if (ret) {
1453 log_err("Can't create gtod thread: %s\n", strerror(ret));
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001454 return 1;
1455 }
Jens Axboef42c1532009-01-05 19:07:13 +01001456
1457 ret = pthread_detach(gtod_thread);
1458 if (ret) {
1459 log_err("Can't detatch gtod thread: %s\n", strerror(ret));
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001460 return 1;
1461 }
1462
Jens Axboe29adda32009-01-05 19:06:39 +01001463 dprint(FD_MUTEX, "wait on startup_mutex\n");
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001464 fio_mutex_down(startup_mutex);
Jens Axboe29adda32009-01-05 19:06:39 +01001465 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001466 return 0;
1467}
1468
Jens Axboe906c8d72006-06-13 09:37:56 +02001469/*
1470 * Main function for kicking off and reaping jobs, as needed.
1471 */
Jens Axboeebac4652005-12-08 15:25:21 +01001472static void run_threads(void)
1473{
Jens Axboeebac4652005-12-08 15:25:21 +01001474 struct thread_data *td;
1475 unsigned long spent;
1476 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +02001477
Jens Axboe2f9ade32006-10-20 11:25:52 +02001478 if (fio_pin_memory())
1479 return;
Jens Axboeebac4652005-12-08 15:25:21 +01001480
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001481 if (fio_gtod_offload && fio_start_gtod_thread())
1482 return;
1483
Jens Axboec6ae0a52006-06-12 11:04:44 +02001484 if (!terse_output) {
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001485 log_info("Starting ");
Jens Axboe9cedf162007-03-12 11:29:30 +01001486 if (nr_thread)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001487 log_info("%d thread%s", nr_thread,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001488 nr_thread > 1 ? "s" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001489 if (nr_process) {
1490 if (nr_thread)
1491 printf(" and ");
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001492 log_info("%d process%s", nr_process,
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001493 nr_process > 1 ? "es" : "");
Jens Axboe9cedf162007-03-12 11:29:30 +01001494 }
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001495 log_info("\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +02001496 fflush(stdout);
1497 }
Jens Axboec04f7ec2006-05-31 10:13:16 +02001498
Jens Axboe697a6062008-05-31 00:04:45 +02001499 set_sig_handlers();
Jens Axboe4efa9702006-05-31 11:56:49 +02001500
Jens Axboeebac4652005-12-08 15:25:21 +01001501 todo = thread_number;
1502 nr_running = 0;
1503 nr_started = 0;
1504 m_rate = t_rate = 0;
1505
Jens Axboe34572e22006-10-20 09:33:18 +02001506 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +02001507 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +01001508
Jens Axboe067430b2011-09-08 14:30:24 +02001509 if (!td->o.create_serialize)
Jens Axboeebac4652005-12-08 15:25:21 +01001510 continue;
1511
1512 /*
1513 * do file setup here so it happens sequentially,
1514 * we don't want X number of threads getting their
1515 * client data interspersed on disk
1516 */
Jens Axboe53cdc682006-10-18 11:50:58 +02001517 if (setup_files(td)) {
Jens Axboe5bf13a52007-02-17 01:51:47 +01001518 exit_value++;
1519 if (td->error)
Jens Axboe5921e802008-05-30 15:02:38 +02001520 log_err("fio: pid=%d, err=%d/%s\n",
1521 (int) td->pid, td->error, td->verror);
Jens Axboeebac4652005-12-08 15:25:21 +01001522 td_set_runstate(td, TD_REAPED);
1523 todo--;
Jens Axboec69e8872008-03-01 18:50:48 +01001524 } else {
1525 struct fio_file *f;
Jens Axboe2b13e712011-01-19 14:04:16 -07001526 unsigned int j;
Jens Axboec69e8872008-03-01 18:50:48 +01001527
1528 /*
1529 * for sharing to work, each job must always open
1530 * its own files. so close them, if we opened them
1531 * for creation
1532 */
Jens Axboe2b13e712011-01-19 14:04:16 -07001533 for_each_file(td, f, j) {
Jens Axboe22a57ba2009-06-09 14:34:35 +02001534 if (fio_file_open(f))
1535 td_io_close_file(td, f);
Jens Axboe22a57ba2009-06-09 14:34:35 +02001536 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001537 }
Jens Axboeebac4652005-12-08 15:25:21 +01001538 }
1539
Jens Axboea2f77c92007-02-22 11:53:00 +01001540 set_genesis_time();
1541
Jens Axboeebac4652005-12-08 15:25:21 +01001542 while (todo) {
Jens Axboefca70352011-07-06 20:12:54 +02001543 struct thread_data *map[REAL_MAX_JOBS];
Jens Axboe75154842006-06-01 13:56:09 +02001544 struct timeval this_start;
1545 int this_jobs = 0, left;
1546
Jens Axboeebac4652005-12-08 15:25:21 +01001547 /*
1548 * create threads (TD_NOT_CREATED -> TD_CREATED)
1549 */
Jens Axboe34572e22006-10-20 09:33:18 +02001550 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +01001551 if (td->runstate != TD_NOT_CREATED)
1552 continue;
1553
1554 /*
1555 * never got a chance to start, killed by other
1556 * thread for some reason
1557 */
1558 if (td->terminate) {
1559 todo--;
1560 continue;
1561 }
1562
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001563 if (td->o.start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +02001564 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +01001565
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001566 if (td->o.start_delay * 1000 > spent)
Jens Axboeebac4652005-12-08 15:25:21 +01001567 continue;
1568 }
1569
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001570 if (td->o.stonewall && (nr_started || nr_running)) {
1571 dprint(FD_PROCESS, "%s: stonewall wait\n",
1572 td->o.name);
Jens Axboeebac4652005-12-08 15:25:21 +01001573 break;
Jens Axboe6f88bcb2008-03-19 10:29:07 +01001574 }
Jens Axboeebac4652005-12-08 15:25:21 +01001575
Jens Axboe067430b2011-09-08 14:30:24 +02001576 init_disk_util(td);
1577
Jens Axboe75154842006-06-01 13:56:09 +02001578 /*
1579 * Set state to created. Thread will transition
1580 * to TD_INITIALIZED when it's done setting up.
1581 */
Jens Axboeebac4652005-12-08 15:25:21 +01001582 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +02001583 map[this_jobs++] = td;
Jens Axboeebac4652005-12-08 15:25:21 +01001584 nr_started++;
1585
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001586 if (td->o.use_thread) {
Jens Axboef42c1532009-01-05 19:07:13 +01001587 int ret;
1588
Jens Axboeee56ad52008-02-01 10:30:20 +01001589 dprint(FD_PROCESS, "will pthread_create\n");
Jens Axboef42c1532009-01-05 19:07:13 +01001590 ret = pthread_create(&td->thread, NULL,
1591 thread_main, td);
1592 if (ret) {
1593 log_err("pthread_create: %s\n",
1594 strerror(ret));
Jens Axboeebac4652005-12-08 15:25:21 +01001595 nr_started--;
Jens Axboec8bb6fa2007-03-12 11:03:04 +01001596 break;
Jens Axboeebac4652005-12-08 15:25:21 +01001597 }
Jens Axboef42c1532009-01-05 19:07:13 +01001598 ret = pthread_detach(td->thread);
1599 if (ret)
1600 log_err("pthread_detach: %s",
1601 strerror(ret));
Jens Axboeebac4652005-12-08 15:25:21 +01001602 } else {
Jens Axboe5e1d3062008-05-23 11:55:53 +02001603 pid_t pid;
Jens Axboeee56ad52008-02-01 10:30:20 +01001604 dprint(FD_PROCESS, "will fork\n");
Jens Axboe5e1d3062008-05-23 11:55:53 +02001605 pid = fork();
1606 if (!pid) {
Jens Axboea6418142007-02-17 04:47:18 +01001607 int ret = fork_main(shm_id, i);
1608
Jens Axboe5e1d3062008-05-23 11:55:53 +02001609 _exit(ret);
1610 } else if (i == fio_debug_jobno)
1611 *fio_debug_jobp = pid;
Jens Axboeebac4652005-12-08 15:25:21 +01001612 }
Jens Axboe29adda32009-01-05 19:06:39 +01001613 dprint(FD_MUTEX, "wait on startup_mutex\n");
Jens Axboe656b1392009-07-01 23:02:10 +02001614 if (fio_mutex_down_timeout(startup_mutex, 10)) {
1615 log_err("fio: job startup hung? exiting.\n");
1616 terminate_threads(TERMINATE_ALL);
1617 fio_abort = 1;
1618 nr_started--;
1619 break;
1620 }
Jens Axboe29adda32009-01-05 19:06:39 +01001621 dprint(FD_MUTEX, "done waiting on startup_mutex\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001622 }
1623
1624 /*
Jens Axboe75154842006-06-01 13:56:09 +02001625 * Wait for the started threads to transition to
1626 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +01001627 */
Jens Axboe02bcaa82006-11-24 10:42:00 +01001628 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +02001629 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +01001630 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +02001631 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
1632 break;
1633
1634 usleep(100000);
1635
1636 for (i = 0; i < this_jobs; i++) {
1637 td = map[i];
1638 if (!td)
1639 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001640 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +02001641 map[i] = NULL;
1642 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +02001643 } else if (td->runstate >= TD_EXITED) {
1644 map[i] = NULL;
1645 left--;
1646 todo--;
1647 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +02001648 }
1649 }
1650 }
1651
1652 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001653 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +02001654 for (i = 0; i < this_jobs; i++) {
1655 td = map[i];
1656 if (!td)
1657 continue;
1658 kill(td->pid, SIGTERM);
1659 }
1660 break;
1661 }
1662
1663 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +02001664 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +02001665 */
Jens Axboe34572e22006-10-20 09:33:18 +02001666 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +02001667 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +01001668 continue;
1669
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001670 if (in_ramp_time(td))
1671 td_set_runstate(td, TD_RAMP);
1672 else
1673 td_set_runstate(td, TD_RUNNING);
Jens Axboeebac4652005-12-08 15:25:21 +01001674 nr_running++;
1675 nr_started--;
Jens Axboe581e7142009-06-09 12:47:16 +02001676 m_rate += td->o.ratemin[0] + td->o.ratemin[1];
1677 t_rate += td->o.rate[0] + td->o.rate[1];
Jens Axboe75154842006-06-01 13:56:09 +02001678 todo--;
Jens Axboecdd18ad2008-02-27 18:58:00 +01001679 fio_mutex_up(td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +01001680 }
1681
1682 reap_threads(&nr_running, &t_rate, &m_rate);
1683
1684 if (todo)
1685 usleep(100000);
1686 }
1687
1688 while (nr_running) {
1689 reap_threads(&nr_running, &t_rate, &m_rate);
1690 usleep(10000);
1691 }
1692
1693 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001694 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001695}
1696
Jens Axboe50d16972011-09-29 17:45:28 -06001697int exec_run(void)
Jens Axboeebac4652005-12-08 15:25:21 +01001698{
Jens Axboe07b32322010-03-05 09:48:44 +01001699 if (exec_profile && load_profile(exec_profile))
1700 return 1;
1701
Jens Axboe74929ac2009-08-05 11:42:37 +02001702 if (!thread_number)
1703 return 0;
1704
Jens Axboebb3884d2007-01-17 17:23:11 +11001705 if (write_bw_log) {
1706 setup_log(&agg_io_log[DDIR_READ]);
1707 setup_log(&agg_io_log[DDIR_WRITE]);
1708 }
1709
Jens Axboecdd18ad2008-02-27 18:58:00 +01001710 startup_mutex = fio_mutex_init(0);
Bruce Cran03e20d62011-01-02 20:14:54 +01001711 if (startup_mutex == NULL)
1712 return 1;
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001713 writeout_mutex = fio_mutex_init(1);
Bruce Cran03e20d62011-01-02 20:14:54 +01001714 if (writeout_mutex == NULL)
1715 return 1;
Jens Axboe07739b52007-03-08 20:25:46 +01001716
Jens Axboea2f77c92007-02-22 11:53:00 +01001717 set_genesis_time();
Jens Axboe79857012011-01-14 14:14:58 +01001718 create_disk_util_thread();
Jens Axboeebac4652005-12-08 15:25:21 +01001719
Jens Axboedae53412009-12-04 19:54:18 +01001720 cgroup_list = smalloc(sizeof(*cgroup_list));
1721 INIT_FLIST_HEAD(cgroup_list);
1722
Jens Axboeebac4652005-12-08 15:25:21 +01001723 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001724
Jens Axboebb3884d2007-01-17 17:23:11 +11001725 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001726 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001727 if (write_bw_log) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001728 __finish_log(agg_io_log[DDIR_READ], "agg-read_bw.log");
1729 __finish_log(agg_io_log[DDIR_WRITE],
1730 "agg-write_bw.log");
Jens Axboebb3884d2007-01-17 17:23:11 +11001731 }
1732 }
Jens Axboeebac4652005-12-08 15:25:21 +01001733
Jens Axboedae53412009-12-04 19:54:18 +01001734 cgroup_kill(cgroup_list);
1735 sfree(cgroup_list);
Jens Axboe61eb3132010-03-31 20:05:59 +02001736 sfree(cgroup_mnt);
Jens Axboe39f22022009-12-04 11:29:12 +01001737
Jens Axboecdd18ad2008-02-27 18:58:00 +01001738 fio_mutex_remove(startup_mutex);
Fabio Checconid2bbb8d2009-05-18 12:54:50 +02001739 fio_mutex_remove(writeout_mutex);
Jens Axboe437c9b72007-02-13 18:20:37 +01001740 return exit_value;
Jens Axboeebac4652005-12-08 15:25:21 +01001741}
Jens Axboe50d16972011-09-29 17:45:28 -06001742
1743void reset_fio_state(void)
1744{
1745 groupid = 0;
1746 thread_number = 0;
1747 nr_process = 0;
1748 nr_thread = 0;
1749 done_secs = 0;
1750}
1751
1752int main(int argc, char *argv[], char *envp[])
1753{
1754 long ps;
1755
1756 arch_init(envp);
1757
1758 sinit();
1759
1760 /*
1761 * We need locale for number printing, if it isn't set then just
1762 * go with the US format.
1763 */
1764 if (!getenv("LC_NUMERIC"))
1765 setlocale(LC_NUMERIC, "en_US");
1766
1767 ps = sysconf(_SC_PAGESIZE);
1768 if (ps < 0) {
1769 log_err("Failed to get page size\n");
1770 return 1;
1771 }
1772
1773 page_size = ps;
1774 page_mask = ps - 1;
1775
1776 fio_keywords_init();
1777
1778 if (parse_options(argc, argv))
1779 return 1;
1780
1781 return exec_run();
1782}