X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fskeleton_external.c;h=4c0c926c9cc347c6526cf290cb3be3ec3a0bb347;hp=785b9a660a7fdfd2921eac125f70d1750c394fad;hb=2c187c0fcaab8a4c6d1ba67d2ad2460b5fb42109;hpb=e2a26d2c2a75861494f6fc4046a37a71874bd59a diff --git a/engines/skeleton_external.c b/engines/skeleton_external.c index 785b9a66..4c0c926c 100644 --- a/engines/skeleton_external.c +++ b/engines/skeleton_external.c @@ -61,18 +61,23 @@ static int fio_skeleton_cancel(struct thread_data *td, struct io_u *io_u) * The io engine must transfer in the direction noted by io_u->ddir * to the buffer pointed to by io_u->xfer_buf for as many bytes as * io_u->xfer_buflen. Residual data count may be set in io_u->residual - * for a short read/write. Should return 0 for io_u complete, < 0 for - * an error, and > 0 for the number of bytes transferred. + * for a short read/write. */ static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u) { - return 0; + /* + * Could return FIO_Q_QUEUED for a queued request, + * FIO_Q_COMPLETED for a completed request, and FIO_Q_BUSY + * if we could queue no more at this point (you'd have to + * define ->commit() to handle that. + */ + return FIO_Q_COMPLETED; } /* * 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) { @@ -98,6 +103,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"); @@ -112,4 +134,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, };