Update close file handler to return potential error
[fio.git] / ioengines.c
index c0e30c9bbd90f21d574132becc7901504e3e337b..a81c7b884b5df6352cca79d5e47bb5eae47b2973 100644 (file)
@@ -163,24 +163,17 @@ void close_ioengine(struct thread_data *td)
        td->io_ops = NULL;
 }
 
-static void dprint_io_u(struct io_u *io_u, const char *p)
-{
-       struct fio_file *f = io_u->file;
-
-       dprint(FD_IO, "%s: off=%llu/len=%lu/ddir=%d", p, io_u->offset,
-                                       io_u->buflen, io_u->ddir);
-       if (f)
-               dprint(FD_IO, "/%s", f->file_name);
-       dprint(FD_IO, "\n");
-}
-
 int td_io_prep(struct thread_data *td, struct io_u *io_u)
 {
        dprint_io_u(io_u, "prep");
        fio_ro_check(td, io_u);
 
-       if (td->io_ops->prep)
-               return td->io_ops->prep(td, io_u);
+       if (td->io_ops->prep) {
+               int ret = td->io_ops->prep(td, io_u);
+
+               dprint(FD_IO, "->prep(%p)=%d\n", io_u, ret);
+               return ret;
+       }
 
        return 0;
 }
@@ -233,10 +226,11 @@ int td_io_queue(struct thread_data *td, struct io_u *io_u)
        if (io_u->ddir != DDIR_SYNC)
                td->io_issues[io_u->ddir]++;
 
-       io_u_mark_depth(td, io_u);
-
        ret = td->io_ops->queue(td, io_u);
 
+       if (ret != FIO_Q_BUSY)
+               io_u_mark_depth(td, io_u);
+
        if (ret == FIO_Q_QUEUED) {
                int r;
 
@@ -350,7 +344,7 @@ err:
        return 1;
 }
 
-void td_io_close_file(struct thread_data *td, struct fio_file *f)
+int td_io_close_file(struct thread_data *td, struct fio_file *f)
 {
        if (!(f->flags & FIO_FILE_CLOSING))
                log_file(td, f, FIO_LOG_CLOSE_FILE);
@@ -360,5 +354,5 @@ void td_io_close_file(struct thread_data *td, struct fio_file *f)
         */
        f->flags |= FIO_FILE_CLOSING;
 
-       put_file(td, f);
+       return put_file(td, f);
 }