summaryrefslogtreecommitdiffstats
path: root/xlators/cluster/afr/src/afr-self-heald.c
diff options
context:
space:
mode:
authorPranith Kumar K <pranithk@gluster.com>2011-10-24 08:27:40 +0530
committerVijay Bellur <vijay@gluster.com>2011-10-28 05:01:25 -0700
commitea4cd6ff18bb811b053b8fc6bcef7d6377dac30b (patch)
tree133f923afabca3a825d4a28edc07c7aaad0449e2 /xlators/cluster/afr/src/afr-self-heald.c
parent2712393ba21dbfdc7b3443ed019d35ab60628b2a (diff)
pump: Change crawl to accommodate afr_lookup changes
Change-Id: I600120252445c06d9cc3e7aa24022c2559b6abe2 BUG: 3747 Reviewed-on: http://review.gluster.com/638 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster/afr/src/afr-self-heald.c')
-rw-r--r--xlators/cluster/afr/src/afr-self-heald.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c
index dd0dd86da0c..afddf62c2e4 100644
--- a/xlators/cluster/afr/src/afr-self-heald.c
+++ b/xlators/cluster/afr/src/afr-self-heald.c
@@ -84,22 +84,22 @@ out:
return ret;
}
-static void
-_generate_gfid_on_empty (uuid_t gfid)
+inline void
+afr_generate_gfid_on_empty (uuid_t gfid)
{
if (uuid_is_null (gfid))
uuid_generate (gfid);
}
-static void
-_empty_gfid_on_set (uuid_t gfid, int lookup_status, struct iatt *iatt)
+inline void
+afr_empty_gfid_on_set (uuid_t gfid, int lookup_status, struct iatt *iatt)
{
if (lookup_status || !uuid_compare (gfid, iatt->ia_gfid))
uuid_clear (gfid);
}
-static void
-_fill_loc_info (loc_t *loc, struct iatt *iatt, struct iatt *parent)
+inline void
+afr_fill_loc_info (loc_t *loc, struct iatt *iatt, struct iatt *parent)
{
afr_update_loc_gfids (loc, iatt, parent);
uuid_copy (loc->inode->gfid, iatt->ia_gfid);
@@ -139,7 +139,7 @@ _perform_self_heal (xlator_t *this, loc_t *parentloc, gf_dirent_t *entries,
if (ret)
goto out;
- _generate_gfid_on_empty (gfid);
+ afr_generate_gfid_on_empty (gfid);
ret = afr_set_dict_gfid (xattr_req, gfid);
if (ret)
goto out;
@@ -147,12 +147,12 @@ _perform_self_heal (xlator_t *this, loc_t *parentloc, gf_dirent_t *entries,
ret = syncop_lookup (this, &entry_loc, xattr_req,
&iatt, NULL, &parent);
- _empty_gfid_on_set (gfid, ret, &iatt);
+ afr_empty_gfid_on_set (gfid, ret, &iatt);
//Don't fail the crawl if lookup fails as it
//could be because of split-brain
if (ret || (!IA_ISDIR (iatt.ia_type)))
continue;
- _fill_loc_info (&entry_loc, &iatt, &parent);
+ afr_fill_loc_info (&entry_loc, &iatt, &parent);
ret = _crawl_directory (&entry_loc, pid, gfid);
}
ret = 0;