diff options
author | antirez <antirez@gmail.com> | 2015-02-10 09:29:14 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2015-02-10 09:29:14 +0100 |
commit | 9e9abe29fee509095dcd8af3648019bbe980279b (patch) | |
tree | ca85aa35836a634c695b0f4ca1428223d627f0a6 /src | |
parent | 50a57c67b2050178487d119d56dc536a2fd661d1 (diff) | |
download | redis-9e9abe29fee509095dcd8af3648019bbe980279b.tar.gz |
HAVE_SYNC_FILE_RANGE should be protected by ifdef __linux__.
Related to issue #2372.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index c455ad9f0..9fd53626e 100644 --- a/src/config.h +++ b/src/config.h @@ -96,6 +96,7 @@ /* Define rdb_fsync_range to sync_file_range() on Linux, otherwise we use * the plain fsync() call. */ +#ifdef __linux__ #if defined(__GLIBC__) && defined(__GLIBC_PREREQ) #if (LINUX_VERSION_CODE >= 0x020611 && __GLIBC_PREREQ(2, 6)) #define HAVE_SYNC_FILE_RANGE 1 @@ -105,6 +106,7 @@ #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) |