diff options
author | Amar Tumballi <amarts@redhat.com> | 2012-08-05 20:32:53 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-08-05 16:20:52 -0700 |
commit | 87d453f7211d3a38113aea895947143ea8bf7d68 (patch) | |
tree | 769077ea44e67becb9aa1f568060c685e87b2ce4 | |
parent | ed4b76ba9c545f577287c0e70ae3cc853a0d5f3f (diff) |
glusterd: while building graph, set xl->ctx
as glusterfs_'ctx'_t is used as reference in many places, it is
important to set it right. In many places, xl->ctx is assumed to
be present, hence it has to be set right.
Change-Id: I37d767f384edb1819277c4ecee97dd94108aedff
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 845715
Reviewed-on: http://review.gluster.com/3779
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volgen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volgen.c b/xlators/mgmt/glusterd/src/glusterd-volgen.c index 0593e240ff7..7444db0b523 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volgen.c +++ b/xlators/mgmt/glusterd/src/glusterd-volgen.c @@ -295,6 +295,8 @@ xlator_instantiate_va (const char *type, const char *format, va_list arg) xl->name = volname; INIT_LIST_HEAD (&xl->volume_options); + xl->ctx = THIS->ctx; + return xl; error: |