diff options
Diffstat (limited to 'api/src/glfs-fops.c')
-rw-r--r-- | api/src/glfs-fops.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index f3fba84e4e7..6ae0426ac8f 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -699,8 +699,7 @@ glfs_fsync (struct glfs_fd *glfd) goto out; } - ret = syncop_fsync (subvol, glfd->fd); -// ret = syncop_fsync (subvol, glfd->fd, 0); + ret = syncop_fsync (subvol, glfd->fd, 0); out: return ret; } @@ -761,8 +760,7 @@ glfs_fdatasync (struct glfs_fd *glfd) goto out; } - ret = syncop_fsync (subvol, glfd->fd); -// ret = syncop_fsync (subvol, glfd->fd, 1); + ret = syncop_fsync (subvol, glfd->fd, 1); out: return ret; } |