diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2014-05-01 10:29:54 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-05-05 13:52:51 -0700 |
commit | 3a35f975fceb89c5ae0e8e3e189545f6fceaf6e5 (patch) | |
tree | 089844750210ac0e0899c3455740412e871181dc /libglusterfs/src/store.h | |
parent | 4cf348fcb683ff8c5b85233610dc9aa8835bd532 (diff) |
mgmt/gluster: Use fsync instead of O_SYNC
Glusterd uses O_SYNC to write to temp file then performs renames
to the actual file and performs fsync on parent directory. Until
this rename happens syncing writes to the file can be deferred.
In this patch O_SYNC open of temp file is removed and fsync of the
fd before rename is done.
Change-Id: Ie7da161b0daec845c7dcfab4154cc45c2f49d825
BUG: 908277
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/7370
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'libglusterfs/src/store.h')
-rw-r--r-- | libglusterfs/src/store.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libglusterfs/src/store.h b/libglusterfs/src/store.h index 337103ff73e..beb17ac4a2f 100644 --- a/libglusterfs/src/store.h +++ b/libglusterfs/src/store.h @@ -20,6 +20,7 @@ struct gf_store_handle_ { char *path; int fd; + int tmp_fd; FILE *read; int locked; /* state of lockf() */ }; |