From 404d4dadcea3893a86a405475acb32545598f0b5 Mon Sep 17 00:00:00 2001 From: Harshavardhana Ranganath Date: Tue, 26 Jan 2010 03:45:00 +0000 Subject: Fix fetching volume file from the server, by sending parent up through the xlator graph. Signed-off-by: Harshavardhana Signed-off-by: Anand V. Avati BUG: 573 (3.0.1 doesn't fetch volfume files from the server) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=573 --- glusterfsd/src/fetch-spec.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'glusterfsd') diff --git a/glusterfsd/src/fetch-spec.c b/glusterfsd/src/fetch-spec.c index 5810a615a08..0e293e08768 100644 --- a/glusterfsd/src/fetch-spec.c +++ b/glusterfsd/src/fetch-spec.c @@ -35,6 +35,8 @@ #include "defaults.h" +int glusterfs_graph_parent_up (xlator_t *graph); + static int fetch_cbk (call_frame_t *frame, void *cookie, @@ -207,6 +209,8 @@ get_shrub (glusterfs_ctx_t *ctx, if (xlator_tree_init (top) != 0) return NULL; + + glusterfs_graph_parent_up (top); return top; } -- cgit