X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fskeleton_external.c;h=56f89f957b5f502ccfe0add680ac80c6ef9d4a85;hp=f9a0e1cdddf73011880664cb39e3d133596c7240;hb=d243fd6ddefe748e307170d464120c962d5938a4;hpb=de8f6de97438d5664cd8765e60102b9109a273e2 diff --git a/engines/skeleton_external.c b/engines/skeleton_external.c index f9a0e1cd..56f89f95 100644 --- a/engines/skeleton_external.c +++ b/engines/skeleton_external.c @@ -3,7 +3,8 @@ * * Should be compiled with: * - * gcc -Wall -O2 -g -shared -rdynamic -fPIC -o engine.o engine.c + * gcc -Wall -O2 -g -shared -rdynamic -fPIC -o skeleton_external.o skeleton_external.c + * (also requires -D_GNU_SOURCE -DCONFIG_STRSEP on Linux) * */ #include @@ -13,6 +14,7 @@ #include #include "../fio.h" +#include "../optgroup.h" /* * The core of the module is identical to the ones included with fio, @@ -20,6 +22,32 @@ * for external modules, they should be gotten through dlsym() */ +/* + * The io engine can define its own options within the io engine source. + * The option member must not be at offset 0, due to the way fio parses + * the given option. Just add a padding pointer unless the io engine has + * something usable. + */ +struct fio_skeleton_options { + void *pad; /* avoid ->off1 of fio_option becomes 0 */ + unsigned int dummy; +}; + +static struct fio_option options[] = { + { + .name = "dummy", + .lname = "ldummy", + .type = FIO_OPT_STR_SET, + .off1 = offsetof(struct fio_skeleton_options, dummy), + .help = "Set dummy", + .category = FIO_OPT_C_ENGINE, /* always use this */ + .group = FIO_OPT_G_INVALID, /* this can be different */ + }, + { + .name = NULL, + }, +}; + /* * The ->event() hook is called to match an event number with an io_u. * After the core has called ->getevents() and it has returned eg 3, @@ -38,7 +66,7 @@ static struct io_u *fio_skeleton_event(struct thread_data *td, int event) * numbers. Required. */ static int fio_skeleton_getevents(struct thread_data *td, unsigned int min, - unsigned int max, struct timespec *t) + unsigned int max, const struct timespec *t) { return 0; } @@ -109,11 +137,11 @@ static void fio_skeleton_cleanup(struct thread_data *td) /* * Hook for opening the given file. Unless the engine has special - * needs, it usually just provides generic_file_open() as the handler. + * needs, it usually just provides generic_open_file() as the handler. */ static int fio_skeleton_open(struct thread_data *td, struct fio_file *f) { - return generic_file_open(td, f); + return generic_open_file(td, f); } /* @@ -121,12 +149,12 @@ static int fio_skeleton_open(struct thread_data *td, struct fio_file *f) */ static int fio_skeleton_close(struct thread_data *td, struct fio_file *f) { - generic_file_close(td, f); + return generic_close_file(td, f); } /* * Note that the structure is exported, so that fio can get it via - * dlsym(..., "ioengine"); + * dlsym(..., "ioengine"); for (and only for) external engines. */ struct ioengine_ops ioengine = { .name = "engine_name", @@ -140,4 +168,6 @@ struct ioengine_ops ioengine = { .cleanup = fio_skeleton_cleanup, .open_file = fio_skeleton_open, .close_file = fio_skeleton_close, + .options = options, + .option_struct_size = sizeof(struct fio_skeleton_options), };