libzbc: fix whitespace errors
authorDmitry Fomichev <dmitry.fomichev@wdc.com>
Mon, 25 May 2020 21:32:54 +0000 (06:32 +0900)
committerJens Axboe <axboe@kernel.dk>
Tue, 26 May 2020 00:21:42 +0000 (18:21 -0600)
Make checkpatch happy... no functional change.

Reviewed-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Dmitry Fomichev <dmitry.fomichev@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
engines/libzbc.c

index 2f6b4583edaec5d9b2e6e4806d5f090361a22c9e..9e5683349fb1c60d99c782d085de23cb60bafbb5 100644 (file)
@@ -47,7 +47,7 @@ static int libzbc_open_dev(struct thread_data *td, struct fio_file *f,
                           struct libzbc_data **p_ld)
 {
        struct libzbc_data *ld = td->io_ops_data;
-        int ret, flags = OS_O_DIRECT;
+       int ret, flags = OS_O_DIRECT;
 
        if (ld) {
                /* Already open */
@@ -61,7 +61,7 @@ static int libzbc_open_dev(struct thread_data *td, struct fio_file *f,
                return -EINVAL;
        }
 
-        if (td_write(td)) {
+       if (td_write(td)) {
                if (!read_only)
                        flags |= O_RDWR;
        } else if (td_read(td)) {
@@ -71,17 +71,15 @@ static int libzbc_open_dev(struct thread_data *td, struct fio_file *f,
                        flags |= O_RDONLY;
        } else if (td_trim(td)) {
                td_verror(td, EINVAL, "libzbc does not support trim");
-                log_err("%s: libzbc does not support trim\n",
-                        f->file_name);
-                return -EINVAL;
+               log_err("%s: libzbc does not support trim\n", f->file_name);
+               return -EINVAL;
        }
 
-        if (td->o.oatomic) {
+       if (td->o.oatomic) {
                td_verror(td, EINVAL, "libzbc does not support O_ATOMIC");
-                log_err("%s: libzbc does not support O_ATOMIC\n",
-                        f->file_name);
-                return -EINVAL;
-        }
+               log_err("%s: libzbc does not support O_ATOMIC\n", f->file_name);
+               return -EINVAL;
+       }
 
        ld = calloc(1, sizeof(*ld));
        if (!ld)