Add strong madvise() hint for cache pruning
[fio.git] / engines / sg.c
index d7c0a6d5dc9a69a9774fb667ddcfcf6e1edccdcc..57c3834add235362acdd18ee672c176456ae9e16 100644 (file)
@@ -240,11 +240,14 @@ static int fio_sgio_prep(struct thread_data *td, struct io_u *io_u)
 static int fio_sgio_queue(struct thread_data *td, struct io_u *io_u)
 {
        struct sg_io_hdr *hdr = &io_u->hdr;
-       int ret;
+       int ret, do_sync = 0;
 
        fio_ro_check(td, io_u);
 
-       ret = fio_sgio_doio(td, io_u, io_u->ddir == DDIR_SYNC);
+       if (td->o.sync_io || td->o.odirect || ddir_sync(io_u->ddir))
+               do_sync = 1;
+
+       ret = fio_sgio_doio(td, io_u, do_sync);
 
        if (ret < 0)
                io_u->error = errno;
@@ -404,6 +407,7 @@ static struct ioengine_ops ioengine = {
        .cleanup        = fio_sgio_cleanup,
        .open_file      = fio_sgio_open,
        .close_file     = generic_close_file,
+       .get_file_size  = generic_get_file_size,
        .flags          = FIO_SYNCIO | FIO_RAWIO,
 };