filesetup: don't print non-debug error on native fallocate failure
[fio.git] / ioengines.h
CommitLineData
dcefb588
JA
1#ifndef FIO_IOENGINE_H
2#define FIO_IOENGINE_H
3
41666588 4#include "compiler/compiler.h"
836fcc0f 5#include "os/os.h"
41666588 6#include "file.h"
8ef89e0b 7#include "io_u.h"
67bf9823 8
a6cb85e2 9#define FIO_IOOPS_VERSION 23
dcefb588 10
dcefb588
JA
11/*
12 * io_ops->queue() return values
13 */
14enum {
15 FIO_Q_COMPLETED = 0, /* completed sync */
16 FIO_Q_QUEUED = 1, /* queued, will complete async */
17 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
18};
19
20struct ioengine_ops {
21 struct flist_head list;
43072e8e 22 const char *name;
dcefb588
JA
23 int version;
24 int flags;
25 int (*setup)(struct thread_data *);
26 int (*init)(struct thread_data *);
27 int (*prep)(struct thread_data *, struct io_u *);
28 int (*queue)(struct thread_data *, struct io_u *);
29 int (*commit)(struct thread_data *);
1f440ece 30 int (*getevents)(struct thread_data *, unsigned int, unsigned int, const struct timespec *);
dcefb588 31 struct io_u *(*event)(struct thread_data *, int);
5ad7be56 32 char *(*errdetails)(struct io_u *);
dcefb588
JA
33 int (*cancel)(struct thread_data *, struct io_u *);
34 void (*cleanup)(struct thread_data *);
35 int (*open_file)(struct thread_data *, struct fio_file *);
36 int (*close_file)(struct thread_data *, struct fio_file *);
d9b100fc 37 int (*invalidate)(struct thread_data *, struct fio_file *);
38ef9c90 38 int (*unlink_file)(struct thread_data *, struct fio_file *);
dcefb588 39 int (*get_file_size)(struct thread_data *, struct fio_file *);
36d80bc7 40 void (*terminate)(struct thread_data *);
a6cb85e2
JA
41 int (*iomem_alloc)(struct thread_data *, size_t);
42 void (*iomem_free)(struct thread_data *);
c73ed246
JA
43 int (*io_u_init)(struct thread_data *, struct io_u *);
44 void (*io_u_free)(struct thread_data *, struct io_u *);
de890a1e
SL
45 int option_struct_size;
46 struct fio_option *options;
dcefb588
JA
47};
48
2b4f4abe
JA
49enum fio_ioengine_flags {
50 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
51 FIO_RAWIO = 1 << 1, /* some sort of direct/raw io */
52 FIO_DISKLESSIO = 1 << 2, /* no disk involved */
53 FIO_NOEXTEND = 1 << 3, /* engine can't extend file */
93bcfd20 54 FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */
2b4f4abe
JA
55 FIO_UNIDIR = 1 << 5, /* engine is uni-directional */
56 FIO_NOIO = 1 << 6, /* thread does only pseudo IO */
36d80bc7
JA
57 FIO_PIPEIO = 1 << 7, /* input/output no seekable */
58 FIO_BARRIER = 1 << 8, /* engine supports barriers */
59 FIO_MEMALIGN = 1 << 9, /* engine wants aligned memory */
ad705bcb 60 FIO_BIT_BASED = 1 << 10, /* engine uses a bit base (e.g. uses Kbit as opposed to KB) */
5c57c084 61 FIO_FAKEIO = 1 << 11, /* engine pretends to do IO */
132b1ee4 62 FIO_NOSTATS = 1 << 12, /* don't do IO stats */
cb9bf647 63 FIO_NOFILEHASH = 1 << 13, /* doesn't hash the files for lookup later. */
2b4f4abe 64};
dcefb588 65
a8075704
DG
66/*
67 * External engine defined symbol to fill in the engine ops structure
68 */
69typedef void (*get_ioengine_t)(struct ioengine_ops **);
70
dcefb588
JA
71/*
72 * io engine entry points
73 */
74extern int __must_check td_io_init(struct thread_data *);
75extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
76extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
1f440ece 77extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, const struct timespec *);
dcefb588
JA
78extern int __must_check td_io_commit(struct thread_data *);
79extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
80extern int td_io_close_file(struct thread_data *, struct fio_file *);
38ef9c90 81extern int td_io_unlink_file(struct thread_data *, struct fio_file *);
dcefb588
JA
82extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
83
4fedf59a 84extern struct ioengine_ops *load_ioengine(struct thread_data *);
dcefb588
JA
85extern void register_ioengine(struct ioengine_ops *);
86extern void unregister_ioengine(struct ioengine_ops *);
de890a1e 87extern void free_ioengine(struct thread_data *);
dcefb588
JA
88extern void close_ioengine(struct thread_data *);
89
de890a1e
SL
90extern int fio_show_ioengine_help(const char *engine);
91
dcefb588 92#endif