blob: 9c970333bb4090644fb32fec4ef9010a45214628 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * fio - the flexible io tester
3 *
4 * Copyright (C) 2005 Jens Axboe <axboe@suse.de>
Jens Axboeaae22ca2006-09-05 10:46:22 +02005 * Copyright (C) 2006 Jens Axboe <axboe@kernel.dk>
Jens Axboeebac4652005-12-08 15:25:21 +01006 *
Jens Axboe8e9fe632006-10-24 15:11:09 +02007 * The license below covers all files distributed with fio unless otherwise
8 * noted in the file itself.
9 *
Jens Axboeebac4652005-12-08 15:25:21 +010010 * This program is free software; you can redistribute it and/or modify
Jens Axboe8e9fe632006-10-24 15:11:09 +020011 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
Jens Axboeebac4652005-12-08 15:25:21 +010013 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
Jens Axboeebac4652005-12-08 15:25:21 +010024#include <unistd.h>
25#include <fcntl.h>
26#include <string.h>
Jens Axboeebac4652005-12-08 15:25:21 +010027#include <signal.h>
28#include <time.h>
Jens Axboedbe11252007-02-11 00:19:51 +010029#include <locale.h>
Jens Axboeebac4652005-12-08 15:25:21 +010030#include <sys/stat.h>
31#include <sys/wait.h>
32#include <sys/ipc.h>
33#include <sys/shm.h>
Jens Axboeebac4652005-12-08 15:25:21 +010034#include <sys/mman.h>
35
36#include "fio.h"
37#include "os.h"
38
Jens Axboe29d610e2007-02-06 13:25:33 +010039static unsigned long page_mask;
40#define ALIGN(buf) \
41 (char *) (((unsigned long) (buf) + page_mask) & ~page_mask)
Jens Axboeebac4652005-12-08 15:25:21 +010042
43int groupid = 0;
44int thread_number = 0;
Jens Axboeebac4652005-12-08 15:25:21 +010045int shm_id = 0;
Jens Axboe53cdc682006-10-18 11:50:58 +020046int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +010047
Jens Axboebbfd6b02006-06-07 19:42:54 +020048static volatile int startup_sem;
Jens Axboe6ce15a32007-01-12 09:04:41 +010049static volatile int fio_abort;
Jens Axboeebac4652005-12-08 15:25:21 +010050
Jens Axboebb3884d2007-01-17 17:23:11 +110051struct io_log *agg_io_log[2];
52
Jens Axboeebac4652005-12-08 15:25:21 +010053#define TERMINATE_ALL (-1)
Jens Axboe75154842006-06-01 13:56:09 +020054#define JOB_START_TIMEOUT (5 * 1000)
Jens Axboeebac4652005-12-08 15:25:21 +010055
Jens Axboe6ce15a32007-01-12 09:04:41 +010056static inline void td_set_runstate(struct thread_data *td, int runstate)
57{
58 td->runstate = runstate;
59}
60
61static void terminate_threads(int group_id, int forced_kill)
Jens Axboeebac4652005-12-08 15:25:21 +010062{
Jens Axboe34572e22006-10-20 09:33:18 +020063 struct thread_data *td;
Jens Axboeebac4652005-12-08 15:25:21 +010064 int i;
65
Jens Axboe34572e22006-10-20 09:33:18 +020066 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +010067 if (group_id == TERMINATE_ALL || groupid == td->groupid) {
68 td->terminate = 1;
69 td->start_delay = 0;
Jens Axboe6ce15a32007-01-12 09:04:41 +010070 if (forced_kill)
71 td_set_runstate(td, TD_EXITED);
Jens Axboeebac4652005-12-08 15:25:21 +010072 }
73 }
74}
75
76static void sig_handler(int sig)
77{
78 switch (sig) {
79 case SIGALRM:
80 update_io_ticks();
81 disk_util_timer_arm();
82 print_thread_status();
83 break;
84 default:
Jens Axboe6ce15a32007-01-12 09:04:41 +010085 printf("\nfio: terminating on signal %d\n", sig);
Jens Axboeebac4652005-12-08 15:25:21 +010086 fflush(stdout);
Jens Axboe6ce15a32007-01-12 09:04:41 +010087 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +010088 break;
89 }
90}
91
Jens Axboe906c8d72006-06-13 09:37:56 +020092/*
Jens Axboe906c8d72006-06-13 09:37:56 +020093 * Check if we are above the minimum rate given.
94 */
Jens Axboeebac4652005-12-08 15:25:21 +010095static int check_min_rate(struct thread_data *td, struct timeval *now)
96{
97 unsigned long spent;
98 unsigned long rate;
99 int ddir = td->ddir;
100
101 /*
102 * allow a 2 second settle period in the beginning
103 */
104 if (mtime_since(&td->start, now) < 2000)
105 return 0;
106
107 /*
108 * if rate blocks is set, sample is running
109 */
110 if (td->rate_bytes) {
111 spent = mtime_since(&td->lastrate, now);
112 if (spent < td->ratecycle)
113 return 0;
114
115 rate = (td->this_io_bytes[ddir] - td->rate_bytes) / spent;
116 if (rate < td->ratemin) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100117 fprintf(f_out, "%s: min rate %u not met, got %luKiB/sec\n", td->name, td->ratemin, rate);
Jens Axboeebac4652005-12-08 15:25:21 +0100118 return 1;
119 }
120 }
121
122 td->rate_bytes = td->this_io_bytes[ddir];
123 memcpy(&td->lastrate, now, sizeof(*now));
124 return 0;
125}
126
127static inline int runtime_exceeded(struct thread_data *td, struct timeval *t)
128{
129 if (!td->timeout)
130 return 0;
131 if (mtime_since(&td->epoch, t) >= td->timeout * 1000)
132 return 1;
133
134 return 0;
135}
136
Jens Axboe53cdc682006-10-18 11:50:58 +0200137static struct fio_file *get_next_file(struct thread_data *td)
138{
Jens Axboe0ab8db82006-10-18 17:16:23 +0200139 unsigned int old_next_file = td->next_file;
Jens Axboeb2a15192006-10-18 14:10:42 +0200140 struct fio_file *f;
Jens Axboe53cdc682006-10-18 11:50:58 +0200141
Jens Axboeb2a15192006-10-18 14:10:42 +0200142 do {
143 f = &td->files[td->next_file];
144
145 td->next_file++;
146 if (td->next_file >= td->nr_files)
147 td->next_file = 0;
148
149 if (f->fd != -1)
150 break;
151
152 f = NULL;
153 } while (td->next_file != old_next_file);
Jens Axboe53cdc682006-10-18 11:50:58 +0200154
155 return f;
156}
157
Jens Axboe906c8d72006-06-13 09:37:56 +0200158/*
159 * When job exits, we can cancel the in-flight IO if we are using async
160 * io. Attempt to do so.
161 */
Jens Axboeebac4652005-12-08 15:25:21 +0100162static void cleanup_pending_aio(struct thread_data *td)
163{
164 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
165 struct list_head *entry, *n;
166 struct io_completion_data icd;
167 struct io_u *io_u;
168 int r;
169
170 /*
171 * get immediately available events, if any
172 */
Jens Axboe45bee282006-10-18 15:26:44 +0200173 r = td_io_getevents(td, 0, td->cur_depth, &ts);
Jens Axboeebac4652005-12-08 15:25:21 +0100174 if (r > 0) {
175 icd.nr = r;
176 ios_completed(td, &icd);
177 }
178
179 /*
180 * now cancel remaining active events
181 */
Jens Axboe2866c822006-10-09 15:57:48 +0200182 if (td->io_ops->cancel) {
Jens Axboeebac4652005-12-08 15:25:21 +0100183 list_for_each_safe(entry, n, &td->io_u_busylist) {
184 io_u = list_entry(entry, struct io_u, list);
185
Jens Axboe2866c822006-10-09 15:57:48 +0200186 r = td->io_ops->cancel(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100187 if (!r)
188 put_io_u(td, io_u);
189 }
190 }
191
192 if (td->cur_depth) {
Jens Axboe45bee282006-10-18 15:26:44 +0200193 r = td_io_getevents(td, td->cur_depth, td->cur_depth, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100194 if (r > 0) {
195 icd.nr = r;
196 ios_completed(td, &icd);
197 }
198 }
199}
200
Jens Axboe906c8d72006-06-13 09:37:56 +0200201/*
Jens Axboe858a3d42006-10-24 14:54:44 +0200202 * Helper to handle the final sync of a file. Works just like the normal
203 * io path, just does everything sync.
204 */
205static int fio_io_sync(struct thread_data *td, struct fio_file *f)
206{
207 struct io_u *io_u = __get_io_u(td);
208 struct io_completion_data icd;
209 int ret;
210
211 if (!io_u)
212 return 1;
213
214 io_u->ddir = DDIR_SYNC;
215 io_u->file = f;
216
217 if (td_io_prep(td, io_u)) {
218 put_io_u(td, io_u);
219 return 1;
220 }
221
222 ret = td_io_queue(td, io_u);
223 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200224 td_verror(td, io_u->error);
Jens Axboe858a3d42006-10-24 14:54:44 +0200225 put_io_u(td, io_u);
Jens Axboe858a3d42006-10-24 14:54:44 +0200226 return 1;
227 }
228
229 ret = td_io_getevents(td, 1, td->cur_depth, NULL);
230 if (ret < 0) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200231 td_verror(td, ret);
Jens Axboe858a3d42006-10-24 14:54:44 +0200232 return 1;
233 }
234
235 icd.nr = ret;
236 ios_completed(td, &icd);
237 if (icd.error) {
238 td_verror(td, icd.error);
239 return 1;
240 }
241
242 return 0;
243}
244
245/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200246 * The main verify engine. Runs over the writes we previusly submitted,
247 * reads the blocks back in, and checks the crc/md5 of the data.
248 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100249static void do_verify(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100250{
Jens Axboeebac4652005-12-08 15:25:21 +0100251 struct io_u *io_u, *v_io_u = NULL;
252 struct io_completion_data icd;
Jens Axboe53cdc682006-10-18 11:50:58 +0200253 struct fio_file *f;
Jens Axboee5b401d2006-10-18 16:03:40 +0200254 int ret, i;
255
256 /*
257 * sync io first and invalidate cache, to make sure we really
258 * read from disk.
259 */
260 for_each_file(td, f, i) {
Jens Axboe858a3d42006-10-24 14:54:44 +0200261 fio_io_sync(td, f);
Jens Axboee5b401d2006-10-18 16:03:40 +0200262 file_invalidate_cache(td, f);
263 }
Jens Axboeebac4652005-12-08 15:25:21 +0100264
265 td_set_runstate(td, TD_VERIFYING);
266
267 do {
268 if (td->terminate)
269 break;
270
Jens Axboeebac4652005-12-08 15:25:21 +0100271 io_u = __get_io_u(td);
272 if (!io_u)
273 break;
274
Jens Axboe02bcaa82006-11-24 10:42:00 +0100275 if (runtime_exceeded(td, &io_u->start_time)) {
276 put_io_u(td, io_u);
277 break;
278 }
279
Jens Axboeaea47d42006-05-26 19:27:29 +0200280 if (get_next_verify(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100281 put_io_u(td, io_u);
282 break;
283 }
284
Jens Axboe53cdc682006-10-18 11:50:58 +0200285 f = get_next_file(td);
286 if (!f)
287 break;
288
289 io_u->file = f;
290
Jens Axboeaea47d42006-05-26 19:27:29 +0200291 if (td_io_prep(td, io_u)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100292 put_io_u(td, io_u);
293 break;
294 }
295
Jens Axboe45bee282006-10-18 15:26:44 +0200296 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100297 if (ret) {
Jens Axboe353a7e02006-10-25 09:16:07 +0200298 td_verror(td, io_u->error);
Jens Axboeebac4652005-12-08 15:25:21 +0100299 put_io_u(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100300 break;
301 }
302
303 /*
304 * we have one pending to verify, do that while
305 * we are doing io on the next one
306 */
307 if (do_io_u_verify(td, &v_io_u))
308 break;
309
Jens Axboe45bee282006-10-18 15:26:44 +0200310 ret = td_io_getevents(td, 1, 1, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100311 if (ret != 1) {
312 if (ret < 0)
313 td_verror(td, ret);
314 break;
315 }
316
Jens Axboe2866c822006-10-09 15:57:48 +0200317 v_io_u = td->io_ops->event(td, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100318 icd.nr = 1;
319 icd.error = 0;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100320 fio_gettime(&icd.time, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100321 io_completed(td, v_io_u, &icd);
322
323 if (icd.error) {
324 td_verror(td, icd.error);
325 put_io_u(td, v_io_u);
326 v_io_u = NULL;
327 break;
328 }
329
Jens Axboeebac4652005-12-08 15:25:21 +0100330 /*
331 * if we can't submit more io, we need to verify now
332 */
333 if (queue_full(td) && do_io_u_verify(td, &v_io_u))
334 break;
335
336 } while (1);
337
338 do_io_u_verify(td, &v_io_u);
339
340 if (td->cur_depth)
341 cleanup_pending_aio(td);
342
343 td_set_runstate(td, TD_RUNNING);
344}
345
Jens Axboe32cd46a2006-06-07 13:40:40 +0200346/*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200347 * Not really an io thread, all it does is burn CPU cycles in the specified
348 * manner.
349 */
350static void do_cpuio(struct thread_data *td)
351{
352 struct timeval e;
353 int split = 100 / td->cpuload;
354 int i = 0;
355
356 while (!td->terminate) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100357 fio_gettime(&e, NULL);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200358
359 if (runtime_exceeded(td, &e))
360 break;
361
362 if (!(i % split))
363 __usec_sleep(10000);
364 else
365 usec_sleep(td, 10000);
366
367 i++;
368 }
369}
370
371/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200372 * Main IO worker function. It retrieves io_u's to process and queues
Jens Axboe32cd46a2006-06-07 13:40:40 +0200373 * and reaps them, checking for rate and errors along the way.
374 */
Jens Axboeebac4652005-12-08 15:25:21 +0100375static void do_io(struct thread_data *td)
376{
377 struct io_completion_data icd;
Jens Axboe02bcaa82006-11-24 10:42:00 +0100378 struct timeval s;
Jens Axboeebac4652005-12-08 15:25:21 +0100379 unsigned long usec;
Jens Axboe53cdc682006-10-18 11:50:58 +0200380 struct fio_file *f;
Jens Axboe84585002006-10-19 20:26:22 +0200381 int i, ret = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100382
Jens Axboe5853e5a2006-06-08 14:41:05 +0200383 td_set_runstate(td, TD_RUNNING);
384
Jens Axboeebac4652005-12-08 15:25:21 +0100385 while (td->this_io_bytes[td->ddir] < td->io_size) {
Jens Axboeebac4652005-12-08 15:25:21 +0100386 struct timespec *timeout;
Jens Axboe84585002006-10-19 20:26:22 +0200387 int min_evts = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100388 struct io_u *io_u;
389
390 if (td->terminate)
391 break;
392
Jens Axboe53cdc682006-10-18 11:50:58 +0200393 f = get_next_file(td);
394 if (!f)
395 break;
396
397 io_u = get_io_u(td, f);
Jens Axboeebac4652005-12-08 15:25:21 +0100398 if (!io_u)
399 break;
400
401 memcpy(&s, &io_u->start_time, sizeof(s));
402
Jens Axboecec6b552007-02-06 20:15:38 +0100403requeue:
Jens Axboe45bee282006-10-18 15:26:44 +0200404 ret = td_io_queue(td, io_u);
Jens Axboeebac4652005-12-08 15:25:21 +0100405 if (ret) {
Jens Axboecec6b552007-02-06 20:15:38 +0100406 if (ret > 0 && (io_u->xfer_buflen != io_u->resid) &&
407 io_u->resid) {
408 /*
409 * short read/write. requeue.
410 */
411 io_u->xfer_buflen = io_u->resid;
412 io_u->xfer_buf += ret;
413 goto requeue;
414 } else {
415 td_verror(td, io_u->error);
416 put_io_u(td, io_u);
417 break;
418 }
Jens Axboeebac4652005-12-08 15:25:21 +0100419 }
420
421 add_slat_sample(td, io_u->ddir, mtime_since(&io_u->start_time, &io_u->issue_time));
422
423 if (td->cur_depth < td->iodepth) {
Jens Axboe8d7ad8d2007-01-09 21:22:18 +0100424 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0};
425
Jens Axboeebac4652005-12-08 15:25:21 +0100426 timeout = &ts;
427 min_evts = 0;
428 } else {
429 timeout = NULL;
430 min_evts = 1;
431 }
432
Jens Axboe45bee282006-10-18 15:26:44 +0200433 ret = td_io_getevents(td, min_evts, td->cur_depth, timeout);
Jens Axboeebac4652005-12-08 15:25:21 +0100434 if (ret < 0) {
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200435 td_verror(td, ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100436 break;
437 } else if (!ret)
438 continue;
439
440 icd.nr = ret;
441 ios_completed(td, &icd);
442 if (icd.error) {
443 td_verror(td, icd.error);
444 break;
445 }
446
447 /*
448 * the rate is batched for now, it should work for batches
449 * of completions except the very first one which may look
450 * a little bursty
451 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100452 usec = utime_since(&s, &icd.time);
Jens Axboeebac4652005-12-08 15:25:21 +0100453
Jens Axboea00735e2006-11-03 08:58:08 +0100454 rate_throttle(td, usec, icd.bytes_done[td->ddir], td->ddir);
Jens Axboeebac4652005-12-08 15:25:21 +0100455
Jens Axboe02bcaa82006-11-24 10:42:00 +0100456 if (check_min_rate(td, &icd.time)) {
Jens Axboe98aa62d2006-11-07 14:16:19 +0100457 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100458 terminate_threads(td->groupid, 0);
Jens Axboefd841462007-01-13 12:20:30 +0100459 td_verror(td, ENODATA);
Jens Axboeebac4652005-12-08 15:25:21 +0100460 break;
461 }
462
Jens Axboe02bcaa82006-11-24 10:42:00 +0100463 if (runtime_exceeded(td, &icd.time))
Jens Axboeebac4652005-12-08 15:25:21 +0100464 break;
465
Jens Axboe9c1f7432007-01-03 20:43:19 +0100466 if (td->thinktime) {
467 unsigned long long b;
468
469 b = td->io_blocks[0] + td->io_blocks[1];
Jens Axboe25309a32007-01-10 11:33:14 +0100470 if (!(b % td->thinktime_blocks))
Jens Axboe9c1f7432007-01-03 20:43:19 +0100471 usec_sleep(td, td->thinktime);
472 }
Jens Axboeebac4652005-12-08 15:25:21 +0100473 }
474
Jens Axboe4d2413c2006-11-23 11:58:59 +0100475 if (!td->error) {
Jens Axboe84585002006-10-19 20:26:22 +0200476 if (td->cur_depth)
477 cleanup_pending_aio(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100478
Jens Axboe84585002006-10-19 20:26:22 +0200479 if (should_fsync(td) && td->end_fsync) {
480 td_set_runstate(td, TD_FSYNCING);
481 for_each_file(td, f, i)
Jens Axboe858a3d42006-10-24 14:54:44 +0200482 fio_io_sync(td, f);
Jens Axboe84585002006-10-19 20:26:22 +0200483 }
Jens Axboe5853e5a2006-06-08 14:41:05 +0200484 }
Jens Axboeebac4652005-12-08 15:25:21 +0100485}
486
Jens Axboeebac4652005-12-08 15:25:21 +0100487static void cleanup_io_u(struct thread_data *td)
488{
489 struct list_head *entry, *n;
490 struct io_u *io_u;
491
492 list_for_each_safe(entry, n, &td->io_u_freelist) {
493 io_u = list_entry(entry, struct io_u, list);
494
495 list_del(&io_u->list);
496 free(io_u);
497 }
498
Jens Axboe2f9ade32006-10-20 11:25:52 +0200499 free_io_mem(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100500}
501
Jens Axboe6b9cea22006-10-30 17:00:24 +0100502/*
503 * "randomly" fill the buffer contents
504 */
Jens Axboe66eeb292006-11-01 08:35:44 +0100505static void fill_rand_buf(struct io_u *io_u, int max_bs)
Jens Axboe6b9cea22006-10-30 17:00:24 +0100506{
Jens Axboe66eeb292006-11-01 08:35:44 +0100507 int *ptr = io_u->buf;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100508
509 while ((void *) ptr - io_u->buf < max_bs) {
510 *ptr = rand() * 0x9e370001;
511 ptr++;
512 }
513}
514
Jens Axboeebac4652005-12-08 15:25:21 +0100515static int init_io_u(struct thread_data *td)
516{
517 struct io_u *io_u;
Jens Axboea00735e2006-11-03 08:58:08 +0100518 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100519 int i, max_units;
520 char *p;
521
Jens Axboe2866c822006-10-09 15:57:48 +0200522 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200523 return 0;
524
Jens Axboe2866c822006-10-09 15:57:48 +0200525 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboeebac4652005-12-08 15:25:21 +0100526 max_units = 1;
527 else
528 max_units = td->iodepth;
529
Jens Axboea00735e2006-11-03 08:58:08 +0100530 max_bs = max(td->max_bs[DDIR_READ], td->max_bs[DDIR_WRITE]);
Jens Axboe74b025b2006-12-19 15:18:14 +0100531 td->orig_buffer_size = max_bs * max_units;
532
Jens Axboed0bdaf42006-12-20 14:40:44 +0100533 if (td->mem_type == MEM_SHMHUGE || td->mem_type == MEM_MMAPHUGE)
Jens Axboe56bb17f2006-12-20 20:27:36 +0100534 td->orig_buffer_size = (td->orig_buffer_size + td->hugepage_size - 1) & ~(td->hugepage_size - 1);
Jens Axboe74b025b2006-12-19 15:18:14 +0100535 else
Jens Axboe29d610e2007-02-06 13:25:33 +0100536 td->orig_buffer_size += page_mask;
Jens Axboeebac4652005-12-08 15:25:21 +0100537
Jens Axboe2f9ade32006-10-20 11:25:52 +0200538 if (allocate_io_mem(td))
539 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100540
Jens Axboeebac4652005-12-08 15:25:21 +0100541 p = ALIGN(td->orig_buffer);
542 for (i = 0; i < max_units; i++) {
543 io_u = malloc(sizeof(*io_u));
544 memset(io_u, 0, sizeof(*io_u));
545 INIT_LIST_HEAD(&io_u->list);
546
Jens Axboea00735e2006-11-03 08:58:08 +0100547 io_u->buf = p + max_bs * i;
Jens Axboe6b9cea22006-10-30 17:00:24 +0100548 if (td_write(td) || td_rw(td))
Jens Axboea00735e2006-11-03 08:58:08 +0100549 fill_rand_buf(io_u, max_bs);
Jens Axboe6b9cea22006-10-30 17:00:24 +0100550
Jens Axboeb1ff3402006-02-17 11:35:58 +0100551 io_u->index = i;
Jens Axboeebac4652005-12-08 15:25:21 +0100552 list_add(&io_u->list, &td->io_u_freelist);
553 }
554
555 return 0;
556}
557
Jens Axboeda867742006-06-06 10:39:10 -0700558static int switch_ioscheduler(struct thread_data *td)
559{
560 char tmp[256], tmp2[128];
561 FILE *f;
562 int ret;
563
Jens Axboef48b4672006-10-27 11:30:07 +0200564 if (td->io_ops->flags & FIO_CPUIO)
565 return 0;
566
Jens Axboeda867742006-06-06 10:39:10 -0700567 sprintf(tmp, "%s/queue/scheduler", td->sysfs_root);
568
569 f = fopen(tmp, "r+");
570 if (!f) {
571 td_verror(td, errno);
572 return 1;
573 }
574
575 /*
576 * Set io scheduler.
577 */
578 ret = fwrite(td->ioscheduler, strlen(td->ioscheduler), 1, f);
579 if (ferror(f) || ret != 1) {
580 td_verror(td, errno);
581 fclose(f);
582 return 1;
583 }
584
585 rewind(f);
586
587 /*
588 * Read back and check that the selected scheduler is now the default.
589 */
590 ret = fread(tmp, 1, sizeof(tmp), f);
591 if (ferror(f) || ret < 0) {
592 td_verror(td, errno);
593 fclose(f);
594 return 1;
595 }
596
597 sprintf(tmp2, "[%s]", td->ioscheduler);
598 if (!strstr(tmp, tmp2)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200599 log_err("fio: io scheduler %s not found\n", td->ioscheduler);
Jens Axboeda867742006-06-06 10:39:10 -0700600 td_verror(td, EINVAL);
601 fclose(f);
602 return 1;
603 }
604
605 fclose(f);
606 return 0;
607}
608
Jens Axboeebac4652005-12-08 15:25:21 +0100609static void clear_io_state(struct thread_data *td)
610{
Jens Axboe53cdc682006-10-18 11:50:58 +0200611 struct fio_file *f;
612 int i;
Jens Axboeebac4652005-12-08 15:25:21 +0100613
Jens Axboeebac4652005-12-08 15:25:21 +0100614 td->stat_io_bytes[0] = td->stat_io_bytes[1] = 0;
615 td->this_io_bytes[0] = td->this_io_bytes[1] = 0;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100616 td->zone_bytes = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100617
Jens Axboe53cdc682006-10-18 11:50:58 +0200618 for_each_file(td, f, i) {
619 f->last_pos = 0;
620 if (td->io_ops->flags & FIO_SYNCIO)
621 lseek(f->fd, SEEK_SET, 0);
622
623 if (f->file_map)
624 memset(f->file_map, 0, f->num_maps * sizeof(long));
625 }
Jens Axboeebac4652005-12-08 15:25:21 +0100626}
627
Jens Axboe906c8d72006-06-13 09:37:56 +0200628/*
629 * Entry point for the thread based jobs. The process based jobs end up
630 * here as well, after a little setup.
631 */
Jens Axboeebac4652005-12-08 15:25:21 +0100632static void *thread_main(void *data)
633{
Jens Axboe69008992006-11-24 13:12:56 +0100634 unsigned long long runtime[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100635 struct thread_data *td = data;
Jens Axboeebac4652005-12-08 15:25:21 +0100636
637 if (!td->use_thread)
638 setsid();
639
640 td->pid = getpid();
641
Jens Axboeaea47d42006-05-26 19:27:29 +0200642 INIT_LIST_HEAD(&td->io_u_freelist);
643 INIT_LIST_HEAD(&td->io_u_busylist);
644 INIT_LIST_HEAD(&td->io_hist_list);
645 INIT_LIST_HEAD(&td->io_log_list);
646
Jens Axboeebac4652005-12-08 15:25:21 +0100647 if (init_io_u(td))
648 goto err;
649
650 if (fio_setaffinity(td) == -1) {
651 td_verror(td, errno);
652 goto err;
653 }
654
Jens Axboeaea47d42006-05-26 19:27:29 +0200655 if (init_iolog(td))
656 goto err;
657
Jens Axboeebac4652005-12-08 15:25:21 +0100658 if (td->ioprio) {
659 if (ioprio_set(IOPRIO_WHO_PROCESS, 0, td->ioprio) == -1) {
660 td_verror(td, errno);
661 goto err;
662 }
663 }
664
Jens Axboe1056eaa2006-07-13 10:33:45 -0700665 if (nice(td->nice) == -1) {
Jens Axboeb6f4d882006-06-02 10:32:51 +0200666 td_verror(td, errno);
667 goto err;
668 }
669
Jens Axboe75154842006-06-01 13:56:09 +0200670 if (init_random_state(td))
671 goto err;
672
Jens Axboe56f94982006-10-24 09:33:42 +0200673 if (td->ioscheduler && switch_ioscheduler(td))
674 goto err;
Jens Axboeda867742006-06-06 10:39:10 -0700675
Jens Axboe75154842006-06-01 13:56:09 +0200676 td_set_runstate(td, TD_INITIALIZED);
Jens Axboebbfd6b02006-06-07 19:42:54 +0200677 fio_sem_up(&startup_sem);
678 fio_sem_down(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100679
Jens Axboe53cdc682006-10-18 11:50:58 +0200680 if (!td->create_serialize && setup_files(td))
Jens Axboeebac4652005-12-08 15:25:21 +0100681 goto err;
Jens Axboe21972cd2006-11-23 12:39:16 +0100682 if (open_files(td))
683 goto err;
Jens Axboeebac4652005-12-08 15:25:21 +0100684
Jens Axboe7d6c5282007-02-05 10:52:10 +0100685 /*
686 * Do this late, as some IO engines would like to have the
687 * files setup prior to initializing structures.
688 */
689 if (td_io_init(td))
690 goto err;
691
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100692 if (td->exec_prerun) {
693 if (system(td->exec_prerun) < 0)
694 goto err;
695 }
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200696
Jens Axboe69008992006-11-24 13:12:56 +0100697 fio_gettime(&td->epoch, NULL);
Jens Axboe36dff962006-11-24 13:29:20 +0100698 getrusage(RUSAGE_SELF, &td->ru_start);
Jens Axboe69008992006-11-24 13:12:56 +0100699
700 runtime[0] = runtime[1] = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100701 while (td->loops--) {
Jens Axboe02bcaa82006-11-24 10:42:00 +0100702 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100703 memcpy(&td->stat_sample_time, &td->start, sizeof(td->start));
704
705 if (td->ratemin)
706 memcpy(&td->lastrate, &td->stat_sample_time, sizeof(td->lastrate));
707
708 clear_io_state(td);
709 prune_io_piece_log(td);
710
Jens Axboe2866c822006-10-09 15:57:48 +0200711 if (td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200712 do_cpuio(td);
713 else
714 do_io(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100715
Jens Axboe69008992006-11-24 13:12:56 +0100716 runtime[td->ddir] += utime_since_now(&td->start);
Jens Axboeaea47d42006-05-26 19:27:29 +0200717 if (td_rw(td) && td->io_bytes[td->ddir ^ 1])
Jens Axboe69008992006-11-24 13:12:56 +0100718 runtime[td->ddir ^ 1] = runtime[td->ddir];
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200719
Jens Axboeebac4652005-12-08 15:25:21 +0100720 if (td->error || td->terminate)
721 break;
722
723 if (td->verify == VERIFY_NONE)
724 continue;
725
726 clear_io_state(td);
Jens Axboe02bcaa82006-11-24 10:42:00 +0100727 fio_gettime(&td->start, NULL);
Jens Axboeebac4652005-12-08 15:25:21 +0100728
729 do_verify(td);
730
Jens Axboe69008992006-11-24 13:12:56 +0100731 runtime[DDIR_READ] += utime_since_now(&td->start);
Jens Axboeebac4652005-12-08 15:25:21 +0100732
733 if (td->error || td->terminate)
734 break;
735 }
736
Jens Axboe36dff962006-11-24 13:29:20 +0100737 update_rusage_stat(td);
Jens Axboe69008992006-11-24 13:12:56 +0100738 fio_gettime(&td->end_time, NULL);
739 td->runtime[0] = runtime[0] / 1000;
740 td->runtime[1] = runtime[1] / 1000;
741
Jens Axboeebac4652005-12-08 15:25:21 +0100742 if (td->bw_log)
743 finish_log(td, td->bw_log, "bw");
744 if (td->slat_log)
745 finish_log(td, td->slat_log, "slat");
746 if (td->clat_log)
747 finish_log(td, td->clat_log, "clat");
Jens Axboe076efc72006-10-27 11:24:25 +0200748 if (td->write_iolog_file)
Jens Axboe843a7412006-06-01 21:14:21 -0700749 write_iolog_close(td);
Jens Axboe69cfd7e2007-02-07 13:58:53 +0100750 if (td->exec_postrun) {
751 if (system(td->exec_postrun) < 0)
752 log_err("fio: postrun %s failed\n", td->exec_postrun);
753 }
Jens Axboeebac4652005-12-08 15:25:21 +0100754
755 if (exitall_on_terminate)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100756 terminate_threads(td->groupid, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100757
758err:
Jens Axboe53cdc682006-10-18 11:50:58 +0200759 close_files(td);
Jens Axboe2866c822006-10-09 15:57:48 +0200760 close_ioengine(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100761 cleanup_io_u(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100762 td_set_runstate(td, TD_EXITED);
763 return NULL;
764
765}
766
Jens Axboe906c8d72006-06-13 09:37:56 +0200767/*
768 * We cannot pass the td data into a forked process, so attach the td and
769 * pass it to the thread worker.
770 */
Jens Axboeebac4652005-12-08 15:25:21 +0100771static void *fork_main(int shmid, int offset)
772{
773 struct thread_data *td;
774 void *data;
775
776 data = shmat(shmid, NULL, 0);
777 if (data == (void *) -1) {
778 perror("shmat");
779 return NULL;
780 }
781
782 td = data + offset * sizeof(struct thread_data);
783 thread_main(td);
784 shmdt(data);
785 return NULL;
786}
787
Jens Axboe906c8d72006-06-13 09:37:56 +0200788/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200789 * Run over the job map and reap the threads that have exited, if any.
790 */
Jens Axboeebac4652005-12-08 15:25:21 +0100791static void reap_threads(int *nr_running, int *t_rate, int *m_rate)
792{
Jens Axboe34572e22006-10-20 09:33:18 +0200793 struct thread_data *td;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100794 int i, cputhreads, pending;
Jens Axboeebac4652005-12-08 15:25:21 +0100795
796 /*
797 * reap exited threads (TD_EXITED -> TD_REAPED)
798 */
Jens Axboe4d2413c2006-11-23 11:58:59 +0100799 pending = cputhreads = 0;
Jens Axboe34572e22006-10-20 09:33:18 +0200800 for_each_td(td, i) {
Jens Axboe84585002006-10-19 20:26:22 +0200801 /*
802 * ->io_ops is NULL for a thread that has closed its
803 * io engine
804 */
805 if (td->io_ops && td->io_ops->flags & FIO_CPUIO)
Jens Axboeb990b5c2006-09-14 09:48:22 +0200806 cputhreads++;
807
Jens Axboe4d2413c2006-11-23 11:58:59 +0100808 if (td->runstate != TD_EXITED) {
809 if (td->runstate < TD_RUNNING)
810 pending++;
811
Jens Axboeebac4652005-12-08 15:25:21 +0100812 continue;
Jens Axboe4d2413c2006-11-23 11:58:59 +0100813 }
Jens Axboeebac4652005-12-08 15:25:21 +0100814
815 td_set_runstate(td, TD_REAPED);
816
817 if (td->use_thread) {
818 long ret;
819
820 if (pthread_join(td->thread, (void *) &ret))
821 perror("thread_join");
822 } else
823 waitpid(td->pid, NULL, 0);
824
825 (*nr_running)--;
826 (*m_rate) -= td->ratemin;
827 (*t_rate) -= td->rate;
828 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200829
Jens Axboe4d2413c2006-11-23 11:58:59 +0100830 if (*nr_running == cputhreads && !pending)
Jens Axboe6ce15a32007-01-12 09:04:41 +0100831 terminate_threads(TERMINATE_ALL, 0);
Jens Axboeebac4652005-12-08 15:25:21 +0100832}
833
Jens Axboe906c8d72006-06-13 09:37:56 +0200834/*
835 * Main function for kicking off and reaping jobs, as needed.
836 */
Jens Axboeebac4652005-12-08 15:25:21 +0100837static void run_threads(void)
838{
Jens Axboeebac4652005-12-08 15:25:21 +0100839 struct thread_data *td;
840 unsigned long spent;
841 int i, todo, nr_running, m_rate, t_rate, nr_started;
Jens Axboefcb6ade2006-05-31 12:14:35 +0200842
Jens Axboe2f9ade32006-10-20 11:25:52 +0200843 if (fio_pin_memory())
844 return;
Jens Axboeebac4652005-12-08 15:25:21 +0100845
Jens Axboec6ae0a52006-06-12 11:04:44 +0200846 if (!terse_output) {
847 printf("Starting %d thread%s\n", thread_number, thread_number > 1 ? "s" : "");
848 fflush(stdout);
849 }
Jens Axboec04f7ec2006-05-31 10:13:16 +0200850
Jens Axboe4efa9702006-05-31 11:56:49 +0200851 signal(SIGINT, sig_handler);
852 signal(SIGALRM, sig_handler);
853
Jens Axboeebac4652005-12-08 15:25:21 +0100854 todo = thread_number;
855 nr_running = 0;
856 nr_started = 0;
857 m_rate = t_rate = 0;
858
Jens Axboe34572e22006-10-20 09:33:18 +0200859 for_each_td(td, i) {
Jens Axboe263e5292006-10-18 15:37:01 +0200860 print_status_init(td->thread_number - 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100861
Jens Axboe380cf262007-01-11 14:01:27 +0100862 if (!td->create_serialize) {
863 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100864 continue;
Jens Axboe380cf262007-01-11 14:01:27 +0100865 }
Jens Axboeebac4652005-12-08 15:25:21 +0100866
867 /*
868 * do file setup here so it happens sequentially,
869 * we don't want X number of threads getting their
870 * client data interspersed on disk
871 */
Jens Axboe53cdc682006-10-18 11:50:58 +0200872 if (setup_files(td)) {
Jens Axboeebac4652005-12-08 15:25:21 +0100873 td_set_runstate(td, TD_REAPED);
874 todo--;
875 }
Jens Axboe380cf262007-01-11 14:01:27 +0100876
877 init_disk_util(td);
Jens Axboeebac4652005-12-08 15:25:21 +0100878 }
879
Jens Axboeebac4652005-12-08 15:25:21 +0100880 while (todo) {
Jens Axboe75154842006-06-01 13:56:09 +0200881 struct thread_data *map[MAX_JOBS];
882 struct timeval this_start;
883 int this_jobs = 0, left;
884
Jens Axboeebac4652005-12-08 15:25:21 +0100885 /*
886 * create threads (TD_NOT_CREATED -> TD_CREATED)
887 */
Jens Axboe34572e22006-10-20 09:33:18 +0200888 for_each_td(td, i) {
Jens Axboeebac4652005-12-08 15:25:21 +0100889 if (td->runstate != TD_NOT_CREATED)
890 continue;
891
892 /*
893 * never got a chance to start, killed by other
894 * thread for some reason
895 */
896 if (td->terminate) {
897 todo--;
898 continue;
899 }
900
901 if (td->start_delay) {
Jens Axboe263e5292006-10-18 15:37:01 +0200902 spent = mtime_since_genesis();
Jens Axboeebac4652005-12-08 15:25:21 +0100903
904 if (td->start_delay * 1000 > spent)
905 continue;
906 }
907
908 if (td->stonewall && (nr_started || nr_running))
909 break;
910
Jens Axboe75154842006-06-01 13:56:09 +0200911 /*
912 * Set state to created. Thread will transition
913 * to TD_INITIALIZED when it's done setting up.
914 */
Jens Axboeebac4652005-12-08 15:25:21 +0100915 td_set_runstate(td, TD_CREATED);
Jens Axboe75154842006-06-01 13:56:09 +0200916 map[this_jobs++] = td;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200917 fio_sem_init(&startup_sem, 1);
Jens Axboeebac4652005-12-08 15:25:21 +0100918 nr_started++;
919
920 if (td->use_thread) {
921 if (pthread_create(&td->thread, NULL, thread_main, td)) {
922 perror("thread_create");
923 nr_started--;
924 }
925 } else {
926 if (fork())
Jens Axboebbfd6b02006-06-07 19:42:54 +0200927 fio_sem_down(&startup_sem);
Jens Axboeebac4652005-12-08 15:25:21 +0100928 else {
929 fork_main(shm_id, i);
930 exit(0);
931 }
932 }
933 }
934
935 /*
Jens Axboe75154842006-06-01 13:56:09 +0200936 * Wait for the started threads to transition to
937 * TD_INITIALIZED.
Jens Axboeebac4652005-12-08 15:25:21 +0100938 */
Jens Axboe02bcaa82006-11-24 10:42:00 +0100939 fio_gettime(&this_start, NULL);
Jens Axboe75154842006-06-01 13:56:09 +0200940 left = this_jobs;
Jens Axboe6ce15a32007-01-12 09:04:41 +0100941 while (left && !fio_abort) {
Jens Axboe75154842006-06-01 13:56:09 +0200942 if (mtime_since_now(&this_start) > JOB_START_TIMEOUT)
943 break;
944
945 usleep(100000);
946
947 for (i = 0; i < this_jobs; i++) {
948 td = map[i];
949 if (!td)
950 continue;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200951 if (td->runstate == TD_INITIALIZED) {
Jens Axboe75154842006-06-01 13:56:09 +0200952 map[i] = NULL;
953 left--;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200954 } else if (td->runstate >= TD_EXITED) {
955 map[i] = NULL;
956 left--;
957 todo--;
958 nr_running++; /* work-around... */
Jens Axboe75154842006-06-01 13:56:09 +0200959 }
960 }
961 }
962
963 if (left) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200964 log_err("fio: %d jobs failed to start\n", left);
Jens Axboe75154842006-06-01 13:56:09 +0200965 for (i = 0; i < this_jobs; i++) {
966 td = map[i];
967 if (!td)
968 continue;
969 kill(td->pid, SIGTERM);
970 }
971 break;
972 }
973
974 /*
Jens Axboeb6f4d882006-06-02 10:32:51 +0200975 * start created threads (TD_INITIALIZED -> TD_RUNNING).
Jens Axboe75154842006-06-01 13:56:09 +0200976 */
Jens Axboe34572e22006-10-20 09:33:18 +0200977 for_each_td(td, i) {
Jens Axboe75154842006-06-01 13:56:09 +0200978 if (td->runstate != TD_INITIALIZED)
Jens Axboeebac4652005-12-08 15:25:21 +0100979 continue;
980
981 td_set_runstate(td, TD_RUNNING);
982 nr_running++;
983 nr_started--;
984 m_rate += td->ratemin;
985 t_rate += td->rate;
Jens Axboe75154842006-06-01 13:56:09 +0200986 todo--;
Jens Axboebbfd6b02006-06-07 19:42:54 +0200987 fio_sem_up(&td->mutex);
Jens Axboeebac4652005-12-08 15:25:21 +0100988 }
989
990 reap_threads(&nr_running, &t_rate, &m_rate);
991
992 if (todo)
993 usleep(100000);
994 }
995
996 while (nr_running) {
997 reap_threads(&nr_running, &t_rate, &m_rate);
998 usleep(10000);
999 }
1000
1001 update_io_ticks();
Jens Axboe2f9ade32006-10-20 11:25:52 +02001002 fio_unpin_memory();
Jens Axboeebac4652005-12-08 15:25:21 +01001003}
1004
Jens Axboeebac4652005-12-08 15:25:21 +01001005int main(int argc, char *argv[])
1006{
Jens Axboe29d610e2007-02-06 13:25:33 +01001007 long ps;
1008
Jens Axboedbe11252007-02-11 00:19:51 +01001009 /*
1010 * We need locale for number printing, if it isn't set then just
1011 * go with the US format.
1012 */
1013 if (!getenv("LC_NUMERIC"))
1014 setlocale(LC_NUMERIC, "en_US");
1015
Jens Axboeebac4652005-12-08 15:25:21 +01001016 if (parse_options(argc, argv))
1017 return 1;
1018
1019 if (!thread_number) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +02001020 log_err("Nothing to do\n");
Jens Axboeebac4652005-12-08 15:25:21 +01001021 return 1;
1022 }
1023
Jens Axboe29d610e2007-02-06 13:25:33 +01001024 ps = sysconf(_SC_PAGESIZE);
1025 if (ps < 0) {
1026 log_err("Failed to get page size\n");
1027 return 1;
1028 }
1029
1030 page_mask = ps - 1;
1031
Jens Axboebb3884d2007-01-17 17:23:11 +11001032 if (write_bw_log) {
1033 setup_log(&agg_io_log[DDIR_READ]);
1034 setup_log(&agg_io_log[DDIR_WRITE]);
1035 }
1036
Jens Axboeebac4652005-12-08 15:25:21 +01001037 disk_util_timer_arm();
1038
1039 run_threads();
Jens Axboe6ce15a32007-01-12 09:04:41 +01001040
Jens Axboebb3884d2007-01-17 17:23:11 +11001041 if (!fio_abort) {
Jens Axboe6ce15a32007-01-12 09:04:41 +01001042 show_run_stats();
Jens Axboebb3884d2007-01-17 17:23:11 +11001043 if (write_bw_log) {
1044 __finish_log(agg_io_log[DDIR_READ],"agg-read_bw.log");
1045 __finish_log(agg_io_log[DDIR_WRITE],"agg-write_bw.log");
1046 }
1047 }
Jens Axboeebac4652005-12-08 15:25:21 +01001048
1049 return 0;
1050}