Merge branch 'evelu-fix-engines' of https://github.com/ErwanAliasr1/fio
[fio.git] / engines / nfs.c
index 70bfd24e2755f08beab0ab2f3a00031df40e84be..21be88334d25f5d9602788d55fc90c718cb6086c 100644 (file)
@@ -46,12 +46,6 @@ static struct fio_option options[] = {
        },
 };
 
-/*
- * The ->event() hook is called to match an event number with an io_u.
- * After the core has called ->getevents() and it has returned eg 3,
- * the ->event() hook must return the 3 events that have completed for
- * subsequent calls to ->event() with [0-2]. Required.
- */
 static struct io_u *fio_libnfs_event(struct thread_data *td, int event)
 {
        struct fio_libnfs_options *o = td->eo;
@@ -77,9 +71,8 @@ static int nfs_event_loop(struct thread_data *td, bool flush) {
        struct fio_libnfs_options *o = td->eo;
        struct pollfd pfds[1]; /* nfs:0 */
        /* we already have stuff queued for fio, no need to waste cpu on poll() */
-       if (o->buffered_event_count) {
+       if (o->buffered_event_count)
                return o->buffered_event_count;
-       }
        /* fio core logic seems to stop calling this event-loop if we ever return with 0 events */
        #define SHOULD_WAIT() (o->outstanding_events == td->o.iodepth || (flush && o->outstanding_events))
 
@@ -105,15 +98,9 @@ static int nfs_event_loop(struct thread_data *td, bool flush) {
                }
        } while (SHOULD_WAIT());
        return o->buffered_event_count;
-}
 #undef SHOULD_WAIT
+}
 
-/*
- * The ->getevents() hook is used to reap completion events from an async
- * io engine. It returns the number of completed events since the last call,
- * which may then be retrieved by calling the ->event() hook with the event
- * numbers. Required.
- */
 static int fio_libnfs_getevents(struct thread_data *td, unsigned int min,
                                  unsigned int max, const struct timespec *t)
 {
@@ -133,9 +120,8 @@ static void nfs_callback(int res, struct nfs_context *nfs, void *data,
                res = 0;
        } else if (io_u->ddir == DDIR_READ) {
                memcpy(io_u->buf, data, res);
-               if (res == 0) {
+               if (res == 0)
                        log_err("Got NFS EOF, this is probably not expected\n");
-               }
        }
        /* fio uses resid to track remaining data */
        io_u->resid = io_u->xfer_buflen - res;
@@ -159,16 +145,6 @@ static int queue_read(struct fio_libnfs_options *o, struct io_u *io_u) {
        return nfs_pread_async(o->context,  nfs_data->nfsfh, io_u->offset, io_u->buflen, nfs_callback,  io_u);
 }
 
-/*
- * The ->queue() hook is responsible for initiating io on the io_u
- * being passed in. If the io engine is a synchronous one, io may complete
- * before ->queue() returns. Required.
- *
- * The io engine must transfer in the direction noted by io_u->ddir
- * to the buffer pointed to by io_u->xfer_buf for as many bytes as
- * io_u->xfer_buflen. Residual data count may be set in io_u->resid
- * for a short read/write.
- */
 static enum fio_q_status fio_libnfs_queue(struct thread_data *td,
                                            struct io_u *io_u)
 {
@@ -203,7 +179,9 @@ static enum fio_q_status fio_libnfs_queue(struct thread_data *td,
        return ret;
 }
 
-/** Do a mount if one has not been done before */
+/*
+ * Do a mount if one has not been done before 
+ */
 static int do_mount(struct thread_data *td, const char *url)
 {
        size_t event_size = sizeof(struct io_u **) * td->o.iodepth;
@@ -213,9 +191,8 @@ static int do_mount(struct thread_data *td, const char *url)
        int path_len = 0;
        char *mnt_dir = NULL;
 
-       if (options->context) {
+       if (options->context)
                return 0;
-       }
 
        options->context = nfs_init_context();
        if (options->context == NULL) {
@@ -240,11 +217,6 @@ static int do_mount(struct thread_data *td, const char *url)
        return ret;
 }
 
-/*
- * The init function is called once per thread/process, and should set up
- * any structures that this io engine requires to keep track of io. Not
- * required.
- */
 static int fio_libnfs_setup(struct thread_data *td)
 {
        /* Using threads with libnfs causes fio to hang on exit, lower performance */
@@ -252,11 +224,6 @@ static int fio_libnfs_setup(struct thread_data *td)
        return 0;
 }
 
-/*
- * This is paired with the ->init() function and is called when a thread is
- * done doing io. Should tear down anything setup by the ->init() function.
- * Not required.
- */
 static void fio_libnfs_cleanup(struct thread_data *td)
 {
        struct fio_libnfs_options *o = td->eo;
@@ -294,9 +261,8 @@ static int fio_libnfs_open(struct thread_data *td, struct fio_file *f)
        }
        ret = nfs_open(options->context, f->file_name, flags, &nfs_data->nfsfh);
 
-       if (ret != 0) {
+       if (ret != 0)
                log_err("Failed to open %s: %s\n", f->file_name, nfs_get_error(options->context));
-       }
        f->engine_data = nfs_data;
        return ret;
 }
@@ -306,9 +272,8 @@ static int fio_libnfs_close(struct thread_data *td, struct fio_file *f)
        struct nfs_data *nfs_data = f->engine_data;
        struct fio_libnfs_options *o = nfs_data->options;
        int ret = 0;
-       if (nfs_data->nfsfh) {
+       if (nfs_data->nfsfh)
                ret = nfs_close(o->context, nfs_data->nfsfh);
-       }
        free(nfs_data);
        f->engine_data = NULL;
        return ret;
@@ -347,4 +312,3 @@ static void fio_exit fio_nfs_unregister(void)
 {
        unregister_ioengine(&ioengine);
 }
-