summaryrefslogtreecommitdiffstats
path: root/xlators
diff options
context:
space:
mode:
Diffstat (limited to 'xlators')
-rw-r--r--xlators/storage/posix/src/posix-helpers.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
index 0c0fdbabc..616664a3d 100644
--- a/xlators/storage/posix/src/posix-helpers.c
+++ b/xlators/storage/posix/src/posix-helpers.c
@@ -1260,11 +1260,14 @@ posix_fsyncer_syncfs (xlator_t *this, struct list_head *head)
*/
#include <sys/syscall.h>
#include <unistd.h>
+#ifdef SYS_syncfs
syscall (SYS_syncfs, pfd->fd);
#else
sync();
#endif
-
+#else
+ sync();
+#endif
}