diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2013-11-19 15:38:57 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-11-19 22:11:29 -0800 |
commit | e0dbbe851baf564037edc3b967563730a0ed9c81 (patch) | |
tree | 829faf5a7c078a0f46705da7516fb62ac8bdeb56 /xlators/mgmt/glusterd/src/glusterd-volume-ops.c | |
parent | d56be51dc665d96e4cd0fa25147b2d4da147561f (diff) |
mgmt/glusterd: fix undefined sybmol error related to BD
Change-Id: I2210f1ac7de04c6025c0ec02d998b626d41466ae
BUG: 1028672
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/6303
Reviewed-by: M. Mohan Kumar <mohan@in.ibm.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-volume-ops.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index 561ff652d81..ad33227019c 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -812,11 +812,13 @@ glusterd_op_stage_create_volume (dict_t *dict, char **op_errstr) } if (!uuid_compare (brick_info->uuid, MY_UUID)) { +#ifdef HAVE_BD_XLATOR if (brick_info->vg[0]) { ret = glusterd_is_valid_vg (brick_info, 1, msg); if (ret) goto out; } +#endif ret = glusterd_validate_and_create_brickpath (brick_info, volume_uuid, op_errstr, is_force); |