The following changes since commit fb9f08c6b9da943efd334187ac74200e551596f2: Merge branch 'master' of ssh://brick.kernel.dk/data/git/fio (2012-06-26 18:20:12 -0400) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (2): diskutil: ensure that we lock around disk_list access Revert "diskutil: ensure that we lock around disk_list access" Wade Cline (1): Fix fallocate erroneously returning ENOSYS on Linux systems helpers.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) --- Diff of recent changes: diff --git a/helpers.c b/helpers.c index 9562567..5be45cc 100644 --- a/helpers.c +++ b/helpers.c @@ -9,11 +9,13 @@ #include "arch/arch.h" #include "os/os.h" +#ifndef FIO_HAVE_LINUX_FALLOCATE int _weak fallocate(int fd, int mode, off_t offset, off_t len) { errno = ENOSYS; return -1; } +#endif #ifndef __NR_fallocate int _weak posix_fallocate(int fd, off_t offset, off_t len) -- 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