]> git.saurik.com Git - redis.git/commitdiff
Fix compilation on Linux kernels or glibc versions lacking sync_file_range().
authorantirez <antirez@gmail.com>
Thu, 25 Oct 2012 14:15:55 +0000 (16:15 +0200)
committerantirez <antirez@gmail.com>
Thu, 25 Oct 2012 20:01:07 +0000 (22:01 +0200)
This fixes issue #667.

Many thanks to Didier Spezia for the fix.

src/config.h

index 617682fcf45247d07ae734f3724cc0a4fde600a5..ce7e53b02392972b4e1972bbfc86acd5bdcf8749 100644 (file)
 /* Define rdb_fsync_range to sync_file_range() on Linux, otherwise we use
  * the plain fsync() call. */
 #ifdef __linux__
+#include <linux/version.h>
+#ifdef __GLIBC__
+#if (LINUX_VERSION_CODE >= 0x020617 && GLIBC_VERSION_AT_LEAST(2, 6))
+#define HAVE_SYNC_FILE_RANGE 1
+#endif
+#else
+#if (LINUX_VERSION_CODE >= 0x020617)
+#define HAVE_SYNC_FILE_RANGE 1
+#endif
+#endif
+#endif
+
+#ifdef HAVE_SYNC_FILE_RANGE
 #define rdb_fsync_range(fd,off,size) sync_file_range(fd,off,size,SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE)
 #else
 #define rdb_fsync_range(fd,off,size) fsync(fd)