X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fskeleton_external.c;h=26dbedf6b9b4ad9ef506aad138c185cf49f8ef81;hp=0937d68562be1b196049a61ae858f4143e9041e5;hb=7101d9c24abec4be58a086d85d6d92ec6e6492e9;hpb=36167d82e5f49dee91c6d2cd426068edee90e36f diff --git a/engines/skeleton_external.c b/engines/skeleton_external.c index 0937d685..26dbedf6 100644 --- a/engines/skeleton_external.c +++ b/engines/skeleton_external.c @@ -13,7 +13,6 @@ #include #include "../fio.h" -#include "../os.h" /* * The core of the module is identical to the ones included with fio, @@ -65,6 +64,11 @@ static int fio_skeleton_cancel(struct thread_data *td, struct io_u *io_u) */ static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u) { + /* + * Double sanity check to catch errant write on a readonly setup + */ + fio_ro_check(td, io_u); + /* * Could return FIO_Q_QUEUED for a queued request, * FIO_Q_COMPLETED for a completed request, and FIO_Q_BUSY @@ -77,7 +81,7 @@ static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u) /* * The ->prep() function is called for each io_u prior to being submitted * with ->queue(). This hook allows the io engine to perform any - * preperatory actions on the io_u, before being submitted. Not required. + * preparatory actions on the io_u, before being submitted. Not required. */ static int fio_skeleton_prep(struct thread_data *td, struct io_u *io_u) { @@ -103,6 +107,23 @@ 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. + */ +static int fio_skeleton_open(struct thread_data *td, struct fio_file *f) +{ + return generic_file_open(td, f); +} + +/* + * Hook for closing a file. See fio_skeleton_open(). + */ +static int fio_skeleton_close(struct thread_data *td, struct fio_file *f) +{ + generic_file_close(td, f); +} + /* * Note that the structure is exported, so that fio can get it via * dlsym(..., "ioengine"); @@ -117,4 +138,6 @@ struct ioengine_ops ioengine = { .getevents = fio_skeleton_getevents, .event = fio_skeleton_event, .cleanup = fio_skeleton_cleanup, + .open_file = fio_skeleton_open, + .close_file = fio_skeleton_close, };