From 387f4d385e1d2c29af54c4f87eef7a07acfcfdf9 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Tue, 28 Sep 2010 05:37:02 +0000 Subject: more proper error returns in case of graph topology validation Signed-off-by: Amar Tumballi Signed-off-by: Vijay Bellur BUG: 971 (dynamic volume management) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971 --- libglusterfs/src/graph.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'libglusterfs/src/graph.c') diff --git a/libglusterfs/src/graph.c b/libglusterfs/src/graph.c index c44fa44a..0c63c194 100644 --- a/libglusterfs/src/graph.c +++ b/libglusterfs/src/graph.c @@ -501,7 +501,6 @@ glusterfs_graph_reconfigure (glusterfs_graph_t *oldgraph, { xlator_t *old_xl = NULL; xlator_t *new_xl = NULL; - int ret = 0; GF_ASSERT (oldgraph); GF_ASSERT (newgraph); @@ -509,9 +508,7 @@ glusterfs_graph_reconfigure (glusterfs_graph_t *oldgraph, old_xl = oldgraph->first; new_xl = newgraph->first; - ret = xlator_tree_reconfigure (old_xl, new_xl); - - return ret; + return xlator_tree_reconfigure (old_xl, new_xl); } int -- cgit