engines/fileoperations: remove extra blank lines
authorVincent Fu <vincent.fu@samsung.com>
Fri, 22 Mar 2024 14:16:30 +0000 (10:16 -0400)
committerVincent Fu <vincent.fu@samsung.com>
Fri, 22 Mar 2024 14:16:30 +0000 (10:16 -0400)
Signed-off-by: Vincent Fu <vincent.fu@samsung.com>
engines/fileoperations.c

index a3e92e6c1efd957b6fe1f7a4e084dda977bba680..58a814963780fab1097e722a944c2490cca79661 100644 (file)
@@ -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);