From 0fe5ab5b9215b8f0ecfb8bc4ba15a5370850654a Mon Sep 17 00:00:00 2001 From: Varun Shastry Date: Tue, 6 May 2014 12:39:20 +0000 Subject: glusterd: Changes to provide interface for USS The changes which consists of the translators for the USS (User Servicable Snapshots) is submitted as a separate patch. Current patch provides the CLI access to the feature. Change-Id: I6b98a42fcfa82f0870d8048fe0bb53141565e9c6 BUG: 1094815 Signed-off-by: Varun Shastry Reviewed-on: http://review.gluster.org/7705 Tested-by: Gluster Build System Reviewed-by: Atin Mukherjee Reviewed-by: Krishnan Parthasarathi Tested-by: Krishnan Parthasarathi --- xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'xlators/mgmt/glusterd/src/glusterd-volume-ops.c') diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index 1eff081516e..9b390321087 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -1941,6 +1941,10 @@ glusterd_op_start_volume (dict_t *dict, char **op_errstr) if (ret) goto out; + ret = glusterd_handle_snapd_option (volinfo); + if (ret) + goto out; + ret = glusterd_nodesvcs_handle_graph_change (volinfo); out: @@ -2006,10 +2010,15 @@ glusterd_stop_volume (glusterd_volinfo_t *volinfo) runner_end (&runner); } + ret = glusterd_handle_snapd_option (volinfo); + if (ret) + goto out; + ret = glusterd_nodesvcs_handle_graph_change (volinfo); if (ret) { gf_log (this->name, GF_LOG_ERROR, "Failed to notify graph " "change for %s volume", volinfo->volname); + goto out; } -- cgit