From e47a64b929d400ade6c97c3e45531100b979fc51 Mon Sep 17 00:00:00 2001 From: Gaurav Kumar Garg Date: Mon, 6 Apr 2015 18:17:10 +0530 Subject: cluster/dht: fix spurious smoke test failure There is smoke test failure due to implici declaration of function "uuid_parse" and "uuid_compare". Fix is to change these function caller name to "gf_uuid_parse" and "gf_uuid_compare." Change-Id: I79efa00c44d112c2ca732a9d9711c07bd5f1a069 BUG: 1207532 Signed-off-by: Gaurav Kumar Garg Reviewed-on: http://review.gluster.org/10139 Reviewed-by: Niels de Vos Tested-by: Niels de Vos --- xlators/cluster/dht/src/tier.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators') diff --git a/xlators/cluster/dht/src/tier.c b/xlators/cluster/dht/src/tier.c index bc969422bda..f8b32f1619f 100644 --- a/xlators/cluster/dht/src/tier.c +++ b/xlators/cluster/dht/src/tier.c @@ -97,13 +97,13 @@ tier_check_same_node (xlator_t *this, loc_t *loc, gf_defrag_info_t *defrag) goto out; } - if (uuid_parse (uuid_str, node_uuid)) { + if (gf_uuid_parse (uuid_str, node_uuid)) { gf_msg (this->name, GF_LOG_INFO, 0, DHT_MSG_LOG_TIER_ERROR, "uuid_parse failed for %s", loc->path); goto out; } - if (uuid_compare (node_uuid, defrag->node_uuid)) { + if (gf_uuid_compare (node_uuid, defrag->node_uuid)) { gf_msg (this->name, GF_LOG_INFO, 0, DHT_MSG_LOG_TIER_STATUS, "%s does not belong to this node", loc->path); goto out; -- cgit