diff options
author | Raghavendra G <rgowdapp@redhat.com> | 2014-07-17 21:59:26 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-07-30 02:17:52 -0700 |
commit | 45fbf99cb669e891a84a8228cef27973f5e774bf (patch) | |
tree | fdb9dd498c21045f787b8db68bfdea40d3c2f509 /xlators/storage/posix/src/posix-handle.c | |
parent | b56719fc478590815b6b8bc1e5a7dee5194555df (diff) |
storage/posix: removing deleting entries in case of creation failures
The code is not atomic enough to not to delete a dentry created by a
prallel dentry creation operation.
Change-Id: I9bd6d2aa9e7a1c0688c0a937b02a4b4f56d7aa3d
BUG: 1117851
Signed-off-by: Raghavendra G <rgowdapp@redhat.com>
Reviewed-on: http://review.gluster.org/8327
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/storage/posix/src/posix-handle.c')
-rw-r--r-- | xlators/storage/posix/src/posix-handle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix-handle.c b/xlators/storage/posix/src/posix-handle.c index b6cfbd081ea..48ca77d9e01 100644 --- a/xlators/storage/posix/src/posix-handle.c +++ b/xlators/storage/posix/src/posix-handle.c @@ -801,7 +801,7 @@ posix_handle_soft (xlator_t *this, const char *real_path, loc_t *loc, } -static int +int posix_handle_unset_gfid (xlator_t *this, uuid_t gfid) { char *path = NULL; |