[PATCH] Support for hugetlb backed shared memory
[fio.git] / os.h
diff --git a/os.h b/os.h
index 1bce2f64028324d7b1e982ce8c1d42305cb31ec5..b5f43e593e6251efb179dc2dd22ca1ecdb59e3e3 100644 (file)
--- a/os.h
+++ b/os.h
 #define OS_O_DIRECT                    O_DIRECT
 #endif
 
-struct thread_data;
-extern int fio_libaio_init(struct thread_data *);
-extern int fio_posixaio_init(struct thread_data *);
-extern int fio_syncio_init(struct thread_data *);
-extern int fio_mmapio_init(struct thread_data *);
-extern int fio_sgio_init(struct thread_data *);
-extern int fio_spliceio_init(struct thread_data *);
+#ifndef FIO_HAVE_HUGETLB
+#define SHM_HUGETLB                    0
+#define FIO_HUGE_PAGE                  0
+#else
+#define FIO_HUGE_PAGE                  (2048 * 1024)
+#endif
 
 #endif