From 2201299e87e9131606047634af807399a6e46cb3 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Mon, 9 Jan 2017 23:42:03 +0900 Subject: [PATCH] Fix compile time errors for skeleton_external ioengine though this file is not compiled by default. Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- engines/skeleton_external.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engines/skeleton_external.c b/engines/skeleton_external.c index 5d6a9ed8..4bebcc45 100644 --- a/engines/skeleton_external.c +++ b/engines/skeleton_external.c @@ -109,11 +109,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,7 +121,7 @@ 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); } /* -- 2.25.1