Add logging for queue submit and complet counts
[fio.git] / engines / sg.c
index 790019e1d57fa48e7a635cecdc47dd5b6835cba3..72bbc4e82b99c9d8666f4c875fb0c1bf6f95d8e8 100644 (file)
@@ -61,8 +61,8 @@ static int pollin_events(struct pollfd *pfds, int fds)
        return 0;
 }
 
-static int fio_sgio_getevents(struct thread_data *td, int min, int max,
-                             struct timespec fio_unused *t)
+static int fio_sgio_getevents(struct thread_data *td, unsigned int min,
+                             unsigned int max, struct timespec fio_unused *t)
 {
        struct sgio_data *sd = td->io_ops->data;
        int left = max, ret, r = 0;
@@ -277,7 +277,7 @@ static int fio_sgio_get_bs(struct thread_data *td, unsigned int *bs)
        int ret;
 
        io_u = __get_io_u(td);
-       io_u->file = &td->files[0];
+       io_u->file = td->files[0];
        assert(io_u);
 
        hdr = &io_u->hdr;
@@ -388,7 +388,7 @@ static int fio_sgio_open(struct thread_data *td, struct fio_file *f)
                return ret;
 
        if (sd && !sd->type_checked && fio_sgio_type_check(td, f)) {
-               generic_close_file(td, f);
+               ret = generic_close_file(td, f);
                return 1;
        }