The following changes since commit 525c2bfabdb7e0093a8775a09ad3e772d962760e: Update documentation on new terse format and add version number (2010-06-30 15:22:21 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): Only flag sync_file_range() support for newer Linux versions Fio 1.41.6 init.c | 2 +- os/os-linux.h | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index d5b59b2..37c414e 100644 --- a/init.c +++ b/init.c @@ -21,7 +21,7 @@ #include "verify.h" #include "profile.h" -static char fio_version_string[] = "fio 1.41.5"; +static char fio_version_string[] = "fio 1.41.6"; #define FIO_RANDSEED (0xb1899bedUL) diff --git a/os/os-linux.h b/os/os-linux.h index b6ba569..df0ec2d 100644 --- a/os/os-linux.h +++ b/os/os-linux.h @@ -35,9 +35,12 @@ #define FIO_HAVE_CL_SIZE #define FIO_HAVE_CGROUPS #define FIO_HAVE_FDATASYNC -#define FIO_HAVE_SYNC_FILE_RANGE #define FIO_HAVE_FS_STAT +#ifdef SYNC_FILE_RANGE_WAIT_BEFORE +#define FIO_HAVE_SYNC_FILE_RANGE +#endif + #define OS_MAP_ANON MAP_ANONYMOUS #ifndef CLOCK_MONOTONIC -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html