diff options
| author | Pranith Kumar K <pranithk@gluster.com> | 2011-09-27 14:44:01 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vijay@gluster.com> | 2011-09-29 04:14:43 -0700 | 
| commit | fb648cf39c8715e5a25752defdfc95ec0ba04217 (patch) | |
| tree | 20fe412c9a9b20b4ab2fca157a735cf453acea53 /xlators/cluster/afr/src/afr-common.c | |
| parent | 09cfa5dffa79abd833354a26783db9edcfb69105 (diff) | |
cluster/afr: Handle files without gfid in self-heal
Change-Id: Ibcaaa9c928195939ff1e31b28b592e524e63a423
BUG: 3557
Reviewed-on: http://review.gluster.com/519
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-common.c')
| -rw-r--r-- | xlators/cluster/afr/src/afr-common.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/cluster/afr/src/afr-common.c b/xlators/cluster/afr/src/afr-common.c index c23e329df..0131feaa0 100644 --- a/xlators/cluster/afr/src/afr-common.c +++ b/xlators/cluster/afr/src/afr-common.c @@ -723,6 +723,7 @@ afr_local_sh_cleanup (afr_local_t *local, xlator_t *this)                  GF_FREE (sh->fresh_parent_dirs);          loc_wipe (&sh->parent_loc); +        loc_wipe (&sh->lookup_loc);          if (sh->checksum)                  GF_FREE (sh->checksum); @@ -1235,12 +1236,12 @@ afr_launch_self_heal (call_frame_t *frame, xlator_t *this, inode_t *inode,          afr_self_heal (frame, this, inode);  } -int +unsigned int  afr_gfid_missing_count (const char *xlator_name, int32_t *success_children,                          struct iatt *bufs, unsigned int child_count,                          const char *path)  { -        int             gfid_miss_count   = 0; +        unsigned int    gfid_miss_count   = 0;          int             i              = 0;          struct iatt     *child1        = NULL;  | 
