From 2dee6cc12677c4cac7ce7e247bcb172cbd110895 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Fri, 22 Mar 2024 10:16:30 -0400 Subject: [PATCH] engines/fileoperations: remove extra blank lines Signed-off-by: Vincent Fu --- engines/fileoperations.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/engines/fileoperations.c b/engines/fileoperations.c index a3e92e6c1e..58a8149637 100644 --- a/engines/fileoperations.c +++ b/engines/fileoperations.c @@ -86,8 +86,6 @@ static int setup_dirs(struct thread_data *td) return ret; } - - static int open_file(struct thread_data *td, struct fio_file *f) { struct timespec start; @@ -207,7 +205,6 @@ static int stat_file(struct thread_data *td, struct fio_file *f) return 0; } - static int delete_file(struct thread_data *td, struct fio_file *f) { struct timespec start; @@ -237,8 +234,6 @@ static int delete_file(struct thread_data *td, struct fio_file *f) return 1; } - - if (ret == -1) { char buf[FIO_VERROR_SIZE]; int e = errno; @@ -407,7 +402,6 @@ static struct ioengine_ops ioengine_dirdelete = { FIO_NOSTATS | FIO_NOFILEHASH, }; - static void fio_init fio_fileoperations_register(void) { register_ioengine(&ioengine_filecreate);