[PATCH] Use mmap for mlocked memory
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index e997fbe52f3c6ae900a5909f8c1bd44452f4b26d..4f87fb775f01f161e96ccc25283825ef9989bc33 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -134,6 +134,7 @@ struct thread_data {
        unsigned int bw_avg_time;
        unsigned int create_serialize;
        unsigned int create_fsync;
+       unsigned int end_fsync;
        unsigned int loops;
        unsigned long long file_size;
        unsigned long long real_file_size;
@@ -278,6 +279,7 @@ enum {
        FIO_LIBAIO      = 1 << 2,
        FIO_POSIXAIO    = 1 << 3,
        FIO_SGIO        = 1 << 4,
+       FIO_SPLICEIO    = 1 << 5 | FIO_SYNCIO,
 };
 
 #define td_read(td)            ((td)->ddir == DDIR_READ)