X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fskeleton_external.c;h=5d6a9ed815104590d5489be289378f1b4e31a2cb;hp=dec258c265e216463902e2bd5458e8d05f1f3f9e;hb=13690c106ce4925a2cb8b3ba9c2fddd50b3a74a7;hpb=e7d2e61694c62b90a2fb84c012b4edcc1973d72c diff --git a/engines/skeleton_external.c b/engines/skeleton_external.c index dec258c2..5d6a9ed8 100644 --- a/engines/skeleton_external.c +++ b/engines/skeleton_external.c @@ -38,7 +38,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; } @@ -59,7 +59,7 @@ 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 + * io_u->xfer_buflen. Residual data count may be set in io_u->resid * for a short read/write. */ static int fio_skeleton_queue(struct thread_data *td, struct io_u *io_u) @@ -99,7 +99,7 @@ static int fio_skeleton_init(struct thread_data *td) } /* - * This is paired with the ->init() funtion and is called when a thread is + * This is paired with the ->init() function and is called when a thread is * done doing io. Should tear down anything setup by the ->init() function. * Not required. */ @@ -126,7 +126,7 @@ static int fio_skeleton_close(struct thread_data *td, struct fio_file *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",