blob: 35471ad14d953702fca7a3d91de1c82a107421b7 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001/*
2 * The io parts of the fio tool, includes workers for sync and mmap'ed
3 * io, as well as both posix and linux libaio support.
4 *
5 * sync io is implemented on top of aio.
6 *
7 * This is not really specific to fio, if the get_io_u/put_io_u and
8 * structures was pulled into this as well it would be a perfectly
9 * generic io engine that could be used for other projects.
10 *
11 */
12#include <stdio.h>
13#include <stdlib.h>
14#include <unistd.h>
Jens Axboe5c4e1db2006-06-07 14:17:08 +020015#include <string.h>
Jens Axboe2866c822006-10-09 15:57:48 +020016#include <dlfcn.h>
Jens Axboe0c6e7512007-02-22 11:19:39 +010017#include <assert.h>
Jens Axboe8c16d842006-10-20 11:48:33 +020018
Jens Axboeebac4652005-12-08 15:25:21 +010019#include "fio.h"
Jens Axboe7c9b1bc2009-06-03 09:25:57 +020020#include "diskutil.h"
Jens Axboeebac4652005-12-08 15:25:21 +010021
Jens Axboe01743ee2008-06-02 12:19:19 +020022static FLIST_HEAD(engine_list);
Jens Axboe5f350952006-11-07 15:20:59 +010023
Jens Axboe8c16d842006-10-20 11:48:33 +020024static int check_engine_ops(struct ioengine_ops *ops)
25{
Jens Axboe5f350952006-11-07 15:20:59 +010026 if (ops->version != FIO_IOOPS_VERSION) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +010027 log_err("bad ioops version %d (want %d)\n", ops->version,
28 FIO_IOOPS_VERSION);
Jens Axboe5f350952006-11-07 15:20:59 +010029 return 1;
30 }
31
Jens Axboe36167d82007-02-18 05:41:31 +010032 if (!ops->queue) {
33 log_err("%s: no queue handler\n", ops->name);
34 return 1;
35 }
36
37 /*
38 * sync engines only need a ->queue()
39 */
40 if (ops->flags & FIO_SYNCIO)
41 return 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010042
Jens Axboe8c16d842006-10-20 11:48:33 +020043 if (!ops->event) {
Jens Axboe36167d82007-02-18 05:41:31 +010044 log_err("%s: no event handler\n", ops->name);
Jens Axboe8c16d842006-10-20 11:48:33 +020045 return 1;
46 }
47 if (!ops->getevents) {
Jens Axboe36167d82007-02-18 05:41:31 +010048 log_err("%s: no getevents handler\n", ops->name);
Jens Axboe8c16d842006-10-20 11:48:33 +020049 return 1;
50 }
51 if (!ops->queue) {
Jens Axboe36167d82007-02-18 05:41:31 +010052 log_err("%s: no queue handler\n", ops->name);
Jens Axboe8c16d842006-10-20 11:48:33 +020053 return 1;
54 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +010055
Jens Axboe8c16d842006-10-20 11:48:33 +020056 return 0;
57}
58
Jens Axboe5f350952006-11-07 15:20:59 +010059void unregister_ioengine(struct ioengine_ops *ops)
Jens Axboeebac4652005-12-08 15:25:21 +010060{
Jens Axboeee56ad52008-02-01 10:30:20 +010061 dprint(FD_IO, "ioengine %s unregistered\n", ops->name);
Jens Axboe01743ee2008-06-02 12:19:19 +020062 flist_del(&ops->list);
63 INIT_FLIST_HEAD(&ops->list);
Jens Axboe5f350952006-11-07 15:20:59 +010064}
65
Jens Axboeb2fdda42007-02-20 20:52:51 +010066void register_ioengine(struct ioengine_ops *ops)
Jens Axboe5f350952006-11-07 15:20:59 +010067{
Jens Axboeee56ad52008-02-01 10:30:20 +010068 dprint(FD_IO, "ioengine %s registered\n", ops->name);
Jens Axboe01743ee2008-06-02 12:19:19 +020069 INIT_FLIST_HEAD(&ops->list);
70 flist_add_tail(&ops->list, &engine_list);
Jens Axboe5f350952006-11-07 15:20:59 +010071}
72
73static struct ioengine_ops *find_ioengine(const char *name)
74{
75 struct ioengine_ops *ops;
Jens Axboe01743ee2008-06-02 12:19:19 +020076 struct flist_head *entry;
Jens Axboe2866c822006-10-09 15:57:48 +020077
Jens Axboe01743ee2008-06-02 12:19:19 +020078 flist_for_each(entry, &engine_list) {
79 ops = flist_entry(entry, struct ioengine_ops, list);
Jens Axboebc5b77a2007-02-28 09:32:54 +010080 if (!strcmp(name, ops->name))
Jens Axboe5f350952006-11-07 15:20:59 +010081 return ops;
82 }
83
84 return NULL;
85}
86
87static struct ioengine_ops *dlopen_ioengine(struct thread_data *td,
88 const char *engine_lib)
89{
90 struct ioengine_ops *ops;
91 void *dlhandle;
92
Jens Axboeee56ad52008-02-01 10:30:20 +010093 dprint(FD_IO, "dload engine %s\n", engine_lib);
94
Jens Axboe2866c822006-10-09 15:57:48 +020095 dlerror();
96 dlhandle = dlopen(engine_lib, RTLD_LAZY);
Jens Axboed4dbaaa2006-10-09 16:01:27 +020097 if (!dlhandle) {
Jens Axboee1161c32007-02-22 19:36:48 +010098 td_vmsg(td, -1, dlerror(), "dlopen");
Jens Axboed4dbaaa2006-10-09 16:01:27 +020099 return NULL;
100 }
Jens Axboe2866c822006-10-09 15:57:48 +0200101
Jens Axboeda51c052006-11-07 16:02:11 +0100102 /*
103 * Unlike the included modules, external engines should have a
104 * non-static ioengine structure that we can reference.
105 */
Jens Axboe2866c822006-10-09 15:57:48 +0200106 ops = dlsym(dlhandle, "ioengine");
Jens Axboed4dbaaa2006-10-09 16:01:27 +0200107 if (!ops) {
Jens Axboee1161c32007-02-22 19:36:48 +0100108 td_vmsg(td, -1, dlerror(), "dlsym");
Jens Axboed4dbaaa2006-10-09 16:01:27 +0200109 dlclose(dlhandle);
110 return NULL;
111 }
Jens Axboe2866c822006-10-09 15:57:48 +0200112
Jens Axboe5f350952006-11-07 15:20:59 +0100113 ops->dlhandle = dlhandle;
114 return ops;
115}
116
117struct ioengine_ops *load_ioengine(struct thread_data *td, const char *name)
118{
119 struct ioengine_ops *ops, *ret;
120 char engine[16];
121
Jens Axboeee56ad52008-02-01 10:30:20 +0100122 dprint(FD_IO, "load ioengine %s\n", name);
123
Jens Axboe5f350952006-11-07 15:20:59 +0100124 strncpy(engine, name, sizeof(engine) - 1);
125
126 /*
127 * linux libaio has alias names, so convert to what we want
128 */
129 if (!strncmp(engine, "linuxaio", 8) || !strncmp(engine, "aio", 3))
130 strcpy(engine, "libaio");
131
132 ops = find_ioengine(engine);
133 if (!ops)
134 ops = dlopen_ioengine(td, name);
135
136 if (!ops) {
137 log_err("fio: engine %s not loadable\n", name);
Jens Axboeb902ceb2006-10-09 16:11:45 +0200138 return NULL;
139 }
140
Jens Axboe8c16d842006-10-20 11:48:33 +0200141 /*
142 * Check that the required methods are there.
143 */
Jens Axboe5f350952006-11-07 15:20:59 +0100144 if (check_engine_ops(ops))
Jens Axboe8c16d842006-10-20 11:48:33 +0200145 return NULL;
Jens Axboe8c16d842006-10-20 11:48:33 +0200146
Jens Axboe84585002006-10-19 20:26:22 +0200147 ret = malloc(sizeof(*ret));
148 memcpy(ret, ops, sizeof(*ret));
149 ret->data = NULL;
Jens Axboe84585002006-10-19 20:26:22 +0200150
151 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100152}
153
Jens Axboe2866c822006-10-09 15:57:48 +0200154void close_ioengine(struct thread_data *td)
Jens Axboeebac4652005-12-08 15:25:21 +0100155{
Jens Axboeee56ad52008-02-01 10:30:20 +0100156 dprint(FD_IO, "close ioengine %s\n", td->io_ops->name);
157
Jens Axboe2992b052008-05-30 22:07:12 +0200158 if (td->io_ops->cleanup) {
Jens Axboe2866c822006-10-09 15:57:48 +0200159 td->io_ops->cleanup(td);
Jens Axboe2992b052008-05-30 22:07:12 +0200160 td->io_ops->data = NULL;
161 }
Jens Axboeebac4652005-12-08 15:25:21 +0100162
Jens Axboe5f350952006-11-07 15:20:59 +0100163 if (td->io_ops->dlhandle)
164 dlclose(td->io_ops->dlhandle);
165
Jens Axboe84585002006-10-19 20:26:22 +0200166 free(td->io_ops);
167 td->io_ops = NULL;
Jens Axboeb990b5c2006-09-14 09:48:22 +0200168}
Jens Axboe10ba5352006-10-20 11:39:27 +0200169
170int td_io_prep(struct thread_data *td, struct io_u *io_u)
171{
Jens Axboeee56ad52008-02-01 10:30:20 +0100172 dprint_io_u(io_u, "prep");
Jens Axboe7101d9c2007-09-12 13:12:39 +0200173 fio_ro_check(td, io_u);
174
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100175 lock_file(td, io_u->file, io_u->ddir);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100176
Jens Axboe2ba1c292008-02-01 13:16:38 +0100177 if (td->io_ops->prep) {
178 int ret = td->io_ops->prep(td, io_u);
179
180 dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100181 if (ret)
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100182 unlock_file(td, io_u->file);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100183 return ret;
184 }
Jens Axboe10ba5352006-10-20 11:39:27 +0200185
186 return 0;
187}
188
Jens Axboee7d2e612007-12-11 10:49:39 +0100189int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max,
Jens Axboe10ba5352006-10-20 11:39:27 +0200190 struct timespec *t)
191{
Jens Axboeee56ad52008-02-01 10:30:20 +0100192 int r = 0;
193
Jens Axboeface81b2007-02-26 10:40:03 +0100194 if (min > 0 && td->io_ops->commit) {
Jens Axboeee56ad52008-02-01 10:30:20 +0100195 r = td->io_ops->commit(td);
Jens Axboeface81b2007-02-26 10:40:03 +0100196 if (r < 0)
Jens Axboeee56ad52008-02-01 10:30:20 +0100197 goto out;
Jens Axboeface81b2007-02-26 10:40:03 +0100198 }
Jens Axboe49504212008-06-05 09:03:30 +0200199 if (max > td->cur_depth)
200 max = td->cur_depth;
201 if (min > max)
202 max = min;
Jens Axboe36167d82007-02-18 05:41:31 +0100203
Jens Axboeee56ad52008-02-01 10:30:20 +0100204 r = 0;
Jens Axboe49504212008-06-05 09:03:30 +0200205 if (max && td->io_ops->getevents)
Jens Axboeee56ad52008-02-01 10:30:20 +0100206 r = td->io_ops->getevents(td, min, max, t);
207out:
Jens Axboe838bc702008-05-22 13:08:23 +0200208 if (r >= 0)
209 io_u_mark_complete(td, r);
Jens Axboef3e11d02010-03-18 19:31:06 +0100210 else
Jens Axboe7c639b12010-03-19 08:48:05 +0100211 td_verror(td, r, "get_events");
Jens Axboef3e11d02010-03-18 19:31:06 +0100212
Jens Axboeee56ad52008-02-01 10:30:20 +0100213 dprint(FD_IO, "getevents: %d\n", r);
214 return r;
Jens Axboe10ba5352006-10-20 11:39:27 +0200215}
216
217int td_io_queue(struct thread_data *td, struct io_u *io_u)
218{
Jens Axboe7e77dd02007-02-20 10:57:34 +0100219 int ret;
220
Jens Axboeee56ad52008-02-01 10:30:20 +0100221 dprint_io_u(io_u, "queue");
Jens Axboe7101d9c2007-09-12 13:12:39 +0200222 fio_ro_check(td, io_u);
223
Jens Axboe0c6e7512007-02-22 11:19:39 +0100224 assert((io_u->flags & IO_U_F_FLIGHT) == 0);
225 io_u->flags |= IO_U_F_FLIGHT;
226
Jens Axboed6aed792009-06-03 08:41:15 +0200227 assert(fio_file_open(io_u->file));
Jens Axboe3d7b4852007-03-13 14:50:28 +0100228
Jens Axboe11786802007-03-05 18:33:22 +0100229 io_u->error = 0;
230 io_u->resid = 0;
231
Jens Axboe433afcb2007-02-22 10:39:01 +0100232 if (td->io_ops->flags & FIO_SYNCIO) {
Jens Axboe12d9d842008-10-16 21:26:10 +0200233 if (fio_fill_issue_time(td))
Jens Axboe9520ebb2008-10-16 21:03:27 +0200234 fio_gettime(&io_u->issue_time, NULL);
Jens Axboed0c15322008-10-16 20:33:51 +0200235
236 /*
237 * only used for iolog
238 */
239 if (td->o.read_iolog_file)
240 memcpy(&td->last_issue, &io_u->issue_time,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100241 sizeof(struct timeval));
Jens Axboe433afcb2007-02-22 10:39:01 +0100242 }
243
Jens Axboeff58fce2010-08-25 12:02:08 +0200244 if (ddir_rw(io_u->ddir))
Jens Axboe755200a2007-02-19 13:08:12 +0100245 td->io_issues[io_u->ddir]++;
246
Jens Axboe7e77dd02007-02-20 10:57:34 +0100247 ret = td->io_ops->queue(td, io_u);
Jens Axboe5aeb77d2007-02-20 11:34:54 +0100248
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100249 unlock_file(td, io_u->file);
Jens Axboeb2bd2bd2008-03-01 18:19:52 +0100250
Jens Axboecb211682009-07-03 08:38:50 +0200251 /*
252 * Add warning for O_DIRECT so that users have an easier time
253 * spotting potentially bad alignment. If this triggers for the first
254 * IO, then it's likely an alignment problem or because the host fs
255 * does not support O_DIRECT
256 */
Jens Axboeff58fce2010-08-25 12:02:08 +0200257 if (io_u->error == EINVAL && td->io_issues[io_u->ddir & 1] == 1 &&
Jens Axboecb211682009-07-03 08:38:50 +0200258 td->o.odirect) {
259 log_info("fio: first direct IO errored. File system may not "
260 "support direct IO, or iomem_align= is bad.\n");
261 }
262
Jens Axboe838bc702008-05-22 13:08:23 +0200263 if (!td->io_ops->commit) {
264 io_u_mark_submit(td, 1);
265 io_u_mark_complete(td, 1);
266 }
267
Jens Axboed8005752008-05-15 09:49:09 +0200268 if (ret == FIO_Q_COMPLETED) {
Jens Axboeff58fce2010-08-25 12:02:08 +0200269 if (ddir_rw(io_u->ddir)) {
Jens Axboed8005752008-05-15 09:49:09 +0200270 io_u_mark_depth(td, 1);
271 td->ts.total_io_u[io_u->ddir]++;
Jens Axboe0d29de82010-09-01 13:54:15 +0200272 } else if (io_u->ddir == DDIR_TRIM)
273 td->ts.total_io_u[2]++;
Jens Axboed8005752008-05-15 09:49:09 +0200274 } else if (ret == FIO_Q_QUEUED) {
Jens Axboeeb7c8ae2007-02-26 14:45:12 +0100275 int r;
276
Jens Axboeff58fce2010-08-25 12:02:08 +0200277 if (ddir_rw(io_u->ddir)) {
Jens Axboed8005752008-05-15 09:49:09 +0200278 td->io_u_queued++;
279 td->ts.total_io_u[io_u->ddir]++;
280 }
281
282 if (td->io_u_queued >= td->o.iodepth_batch) {
Jens Axboeeb7c8ae2007-02-26 14:45:12 +0100283 r = td_io_commit(td);
284 if (r < 0)
285 return r;
286 }
287 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100288
Jens Axboe433afcb2007-02-22 10:39:01 +0100289 if ((td->io_ops->flags & FIO_SYNCIO) == 0) {
Jens Axboe12d9d842008-10-16 21:26:10 +0200290 if (fio_fill_issue_time(td))
Jens Axboe9520ebb2008-10-16 21:03:27 +0200291 fio_gettime(&io_u->issue_time, NULL);
Jens Axboed0c15322008-10-16 20:33:51 +0200292
293 /*
294 * only used for iolog
295 */
296 if (td->o.read_iolog_file)
297 memcpy(&td->last_issue, &io_u->issue_time,
298 sizeof(struct timeval));
Jens Axboe433afcb2007-02-22 10:39:01 +0100299 }
300
Jens Axboe7e77dd02007-02-20 10:57:34 +0100301 return ret;
Jens Axboe10ba5352006-10-20 11:39:27 +0200302}
Jens Axboe8c16d842006-10-20 11:48:33 +0200303
304int td_io_init(struct thread_data *td)
305{
Jens Axboeeeb12162007-03-20 10:47:45 +0100306 int ret = 0;
Jens Axboe8c16d842006-10-20 11:48:33 +0200307
Jens Axboeeeb12162007-03-20 10:47:45 +0100308 if (td->io_ops->init) {
309 ret = td->io_ops->init(td);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100310 if (ret && td->o.iodepth > 1) {
311 log_err("fio: io engine init failed. Perhaps try"
312 " reducing io depth?\n");
313 }
Jens Axboeeeb12162007-03-20 10:47:45 +0100314 }
315
316 return ret;
Jens Axboe8c16d842006-10-20 11:48:33 +0200317}
Jens Axboe755200a2007-02-19 13:08:12 +0100318
319int td_io_commit(struct thread_data *td)
320{
Jens Axboef3e11d02010-03-18 19:31:06 +0100321 int ret;
322
Jens Axboeee56ad52008-02-01 10:30:20 +0100323 dprint(FD_IO, "calling ->commit(), depth %d\n", td->cur_depth);
324
Jens Axboed8005752008-05-15 09:49:09 +0200325 if (!td->cur_depth || !td->io_u_queued)
Jens Axboee1161c32007-02-22 19:36:48 +0100326 return 0;
Jens Axboecb5ab512007-02-26 12:57:09 +0100327
Jens Axboed8005752008-05-15 09:49:09 +0200328 io_u_mark_depth(td, td->io_u_queued);
Jens Axboecb5ab512007-02-26 12:57:09 +0100329 td->io_u_queued = 0;
Jens Axboed8005752008-05-15 09:49:09 +0200330
Jens Axboef3e11d02010-03-18 19:31:06 +0100331 if (td->io_ops->commit) {
332 ret = td->io_ops->commit(td);
333 if (ret)
334 td_verror(td, -ret, "io commit");
335 }
Jens Axboe755200a2007-02-19 13:08:12 +0100336
337 return 0;
338}
Jens Axboeb5af8292007-03-08 12:43:13 +0100339
340int td_io_open_file(struct thread_data *td, struct fio_file *f)
341{
Jens Axboe22a57ba2009-06-09 14:34:35 +0200342 assert(!fio_file_open(f));
343 assert(f->fd == -1);
344
Jens Axboe413d6692007-03-27 15:38:21 +0200345 if (td->io_ops->open_file(td, f)) {
346 if (td->error == EINVAL && td->o.odirect)
347 log_err("fio: destination does not support O_DIRECT\n");
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100348 if (td->error == EMFILE) {
349 log_err("fio: try reducing/setting openfiles (failed"
350 " at %u of %u)\n", td->nr_open_files,
351 td->o.nr_files);
352 }
Jens Axboeb5af8292007-03-08 12:43:13 +0100353
Jens Axboe22a57ba2009-06-09 14:34:35 +0200354 assert(f->fd == -1);
355 assert(!fio_file_open(f));
Jens Axboe413d6692007-03-27 15:38:21 +0200356 return 1;
Jens Axboe7bb48f82007-03-27 15:30:28 +0200357 }
Jens Axboea978ba62007-03-08 14:29:03 +0100358
Jens Axboed5707a32008-06-04 15:13:02 +0200359 fio_file_reset(f);
Jens Axboed6aed792009-06-03 08:41:15 +0200360 fio_file_set_open(f);
361 fio_file_clear_closing(f);
Jens Axboec97bd0f2009-05-27 13:11:20 +0200362 disk_util_inc(f->du);
Jens Axboed5707a32008-06-04 15:13:02 +0200363
364 td->nr_open_files++;
365 get_file(f);
366
Jens Axboe66159822007-04-16 21:54:24 +0200367 if (f->filetype == FIO_TYPE_PIPE) {
368 if (td_random(td)) {
369 log_err("fio: can't seek on pipes (no random io)\n");
370 goto err;
371 }
372 }
373
Jens Axboe413d6692007-03-27 15:38:21 +0200374 if (td->io_ops->flags & FIO_DISKLESSIO)
375 goto done;
376
377 if (td->o.invalidate_cache && file_invalidate_cache(td, f))
378 goto err;
379
Jens Axboe66159822007-04-16 21:54:24 +0200380 if (td->o.fadvise_hint &&
381 (f->filetype == FIO_TYPE_BD || f->filetype == FIO_TYPE_FILE)) {
Jens Axboe413d6692007-03-27 15:38:21 +0200382 int flags;
383
384 if (td_random(td))
385 flags = POSIX_FADV_RANDOM;
386 else
387 flags = POSIX_FADV_SEQUENTIAL;
388
389 if (fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
390 td_verror(td, errno, "fadvise");
391 goto err;
392 }
393 }
394
Jens Axboee116f2b2008-06-04 15:14:24 +0200395#ifdef FIO_OS_DIRECTIO
396 /*
397 * Some OS's have a distinct call to mark the file non-buffered,
398 * instead of using O_DIRECT (Solaris)
399 */
400 if (td->o.odirect) {
401 int ret = fio_set_odirect(f->fd);
402
403 if (ret) {
404 td_verror(td, ret, "fio_set_odirect");
Jens Axboe78e51c72010-11-23 11:12:39 +0100405 log_err("fio: the file system does not seem to support direct IO\n");
Jens Axboee116f2b2008-06-04 15:14:24 +0200406 goto err;
407 }
408 }
409#endif
410
Jens Axboe413d6692007-03-27 15:38:21 +0200411done:
Jens Axboef29b25a2007-07-23 08:56:43 +0200412 log_file(td, f, FIO_LOG_OPEN_FILE);
Jens Axboe413d6692007-03-27 15:38:21 +0200413 return 0;
414err:
Jens Axboec97bd0f2009-05-27 13:11:20 +0200415 disk_util_dec(f->du);
Jens Axboeb2840752007-04-12 12:57:27 +0200416 if (td->io_ops->close_file)
417 td->io_ops->close_file(td, f);
Jens Axboe7bb48f82007-03-27 15:30:28 +0200418 return 1;
Jens Axboeb5af8292007-03-08 12:43:13 +0100419}
420
Jens Axboe6977bcd2008-03-01 15:55:36 +0100421int td_io_close_file(struct thread_data *td, struct fio_file *f)
Jens Axboeb5af8292007-03-08 12:43:13 +0100422{
Jens Axboed6aed792009-06-03 08:41:15 +0200423 if (!fio_file_closing(f))
Jens Axboef29b25a2007-07-23 08:56:43 +0200424 log_file(td, f, FIO_LOG_CLOSE_FILE);
425
Jens Axboe0ad920e2007-03-13 11:06:45 +0100426 /*
427 * mark as closing, do real close when last io on it has completed
428 */
Jens Axboed6aed792009-06-03 08:41:15 +0200429 fio_file_set_closing(f);
Jens Axboe0ad920e2007-03-13 11:06:45 +0100430
Jens Axboec97bd0f2009-05-27 13:11:20 +0200431 disk_util_dec(f->du);
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100432 unlock_file_all(td, f);
Jens Axboe29c13492008-03-01 19:25:20 +0100433
Jens Axboe6977bcd2008-03-01 15:55:36 +0100434 return put_file(td, f);
Jens Axboeb5af8292007-03-08 12:43:13 +0100435}
Jens Axboedf9c26b2009-03-05 10:13:58 +0100436
437int td_io_get_file_size(struct thread_data *td, struct fio_file *f)
438{
439 if (!td->io_ops->get_file_size)
440 return 0;
441
442 return td->io_ops->get_file_size(td, f);
443}
Jens Axboe44f29692010-03-09 20:09:44 +0100444
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100445static int do_sync_file_range(struct thread_data *td, struct fio_file *f)
Jens Axboe44f29692010-03-09 20:09:44 +0100446{
447 off64_t offset, nbytes;
448
449 offset = f->first_write;
450 nbytes = f->last_write - f->first_write;
451
Jens Axboe3843deb2010-03-09 20:41:15 +0100452 if (!nbytes)
453 return 0;
Jens Axboe44f29692010-03-09 20:09:44 +0100454
Jens Axboe3843deb2010-03-09 20:41:15 +0100455 return sync_file_range(f->fd, offset, nbytes, td->o.sync_file_range);
Jens Axboe44f29692010-03-09 20:09:44 +0100456}
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100457
458int do_io_u_sync(struct thread_data *td, struct io_u *io_u)
459{
460 int ret;
461
462 if (io_u->ddir == DDIR_SYNC) {
463 ret = fsync(io_u->file->fd);
464 } else if (io_u->ddir == DDIR_DATASYNC) {
465#ifdef FIO_HAVE_FDATASYNC
466 ret = fdatasync(io_u->file->fd);
467#else
468 ret = io_u->xfer_buflen;
469 io_u->error = EINVAL;
470#endif
471 } else if (io_u->ddir == DDIR_SYNC_FILE_RANGE)
472 ret = do_sync_file_range(td, io_u->file);
473 else {
474 ret = io_u->xfer_buflen;
475 io_u->error = EINVAL;
476 }
477
Jens Axboecb849a72010-03-09 21:44:55 +0100478 if (ret < 0)
479 io_u->error = errno;
480
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100481 return ret;
482}
Jens Axboea5f30272010-07-19 16:19:55 -0600483
484int do_io_u_trim(struct thread_data *td, struct io_u *io_u)
485{
486#ifndef FIO_HAVE_TRIM
487 io_u->error = EINVAL;
Jens Axboeff58fce2010-08-25 12:02:08 +0200488 return 0;
Jens Axboea5f30272010-07-19 16:19:55 -0600489#else
490 struct fio_file *f = io_u->file;
491 int ret;
492
Jens Axboec6404a42010-09-24 19:36:34 +0200493 ret = os_trim(f->fd, io_u->offset, io_u->xfer_buflen);
Jens Axboea5f30272010-07-19 16:19:55 -0600494 if (!ret)
Jens Axboeff58fce2010-08-25 12:02:08 +0200495 return io_u->xfer_buflen;;
Jens Axboea5f30272010-07-19 16:19:55 -0600496
Jens Axboeff58fce2010-08-25 12:02:08 +0200497 io_u->error = ret;
498 return 0;
Jens Axboea5f30272010-07-19 16:19:55 -0600499#endif
500}