summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-snapshot.c
diff options
context:
space:
mode:
authorAvra Sengupta <asengupt@redhat.com>2014-06-13 11:23:29 +0000
committerKrishnan Parthasarathi <kparthas@redhat.com>2014-06-13 20:55:27 -0700
commit7aa3630b1f5e07227e9cd167cbd717bd7932ae78 (patch)
treedc7b5cb0b18768a6807f674ffd841acc49fae130 /xlators/mgmt/glusterd/src/glusterd-snapshot.c
parent56438208c8ada12f878e0317c587a3642bf1a3a0 (diff)
glusterd/snapshot: Update fstype and fsuuid
Update fstype and fsuuid before creating missed snapshot Change-Id: Ie9af0065fab288bd1c1a26396428f0cee6335f97 BUG: 1109142 Signed-off-by: Avra Sengupta <asengupt@redhat.com> Reviewed-on: http://review.gluster.org/8062 Reviewed-by: Rajesh Joseph <rjoseph@redhat.com> Tested-by: Justin Clift <justin@gluster.org> Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com> Tested-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-snapshot.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-snapshot.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-snapshot.c b/xlators/mgmt/glusterd/src/glusterd-snapshot.c
index 8b3ffd5b760..117004b4452 100644
--- a/xlators/mgmt/glusterd/src/glusterd-snapshot.c
+++ b/xlators/mgmt/glusterd/src/glusterd-snapshot.c
@@ -3767,13 +3767,13 @@ out:
*
* @return 0 on success and -1 on failure
*/
-static int
-glusterd_update_fstype (glusterd_brickinfo_t *orig_brickinfo,
- glusterd_brickinfo_t *snap_brickinfo)
+int
+glusterd_update_fstype (char *orig_brick_path,
+ glusterd_brickinfo_t *snap_brickinfo,
+ char *fstype, size_t fslen)
{
int32_t ret = -1;
char *mnt_pt = NULL;
- char *fstype = NULL;
char buff [PATH_MAX] = "";
char msg [PATH_MAX] = "";
char *cmd = NULL;
@@ -3784,19 +3784,18 @@ glusterd_update_fstype (glusterd_brickinfo_t *orig_brickinfo,
this = THIS;
GF_ASSERT (this);
- GF_ASSERT (orig_brickinfo);
+ GF_ASSERT (orig_brick_path);
GF_ASSERT (snap_brickinfo);
-
- fstype = orig_brickinfo->fstype;
+ GF_ASSERT (fstype);
/* If the file-system type is not set then set the file-system type
* in origin brickinfo */
if (0 == fstype [0]) {
- ret = glusterd_get_brick_root (orig_brickinfo->path, &mnt_pt);
+ ret = glusterd_get_brick_root (orig_brick_path, &mnt_pt);
if (ret) {
gf_log (this->name, GF_LOG_ERROR, "getting the root "
"of the brick (%s) failed ",
- orig_brickinfo->path);
+ orig_brick_path);
goto out;
}
@@ -3805,14 +3804,14 @@ glusterd_update_fstype (glusterd_brickinfo_t *orig_brickinfo,
if (!entry) {
gf_log (this->name, GF_LOG_ERROR, "getting the mount "
"entry for the brick (%s) failed",
- orig_brickinfo->path);
+ orig_brick_path);
ret = -1;
goto out;
}
/* Update the origin brickinfo with the backend file-system
* type */
- snprintf (fstype, sizeof (orig_brickinfo->fstype), "%s",
+ snprintf (fstype, fslen, "%s",
entry->mnt_type);
}
@@ -3866,7 +3865,9 @@ glusterd_add_brick_to_snap_volume (dict_t *dict, dict_t *rsp_dict,
/* Update the backend file-system type of snap brick in
* snap volinfo. */
- ret = glusterd_update_fstype (original_brickinfo, snap_brickinfo);
+ ret = glusterd_update_fstype (original_brickinfo->path, snap_brickinfo,
+ original_brickinfo->fstype,
+ sizeof(original_brickinfo->fstype));
if (ret) {
gf_log (this->name, GF_LOG_ERROR, "Failed to update "
"file-system type for %s brick",
@@ -3976,7 +3977,7 @@ out:
*
* @return 0 on success and -1 on failure
*/
-static int
+int
glusterd_update_fs_uuid (glusterd_brickinfo_t *brickinfo)
{
int32_t ret = -1;
@@ -4140,7 +4141,6 @@ glusterd_take_brick_snapshot (dict_t *dict, glusterd_volinfo_t *snap_vol,
*/
}
-
/* create the complete brick here */
ret = glusterd_snap_brick_create (snap_vol, brickinfo, brick_count);
if (ret) {