summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c
diff options
context:
space:
mode:
authorAkarsha Rai <akrai@redhat.com>2017-09-25 08:36:36 -0400
committerAtin Mukherjee <amukherj@redhat.com>2017-09-26 15:48:06 +0000
commit13d2af4ffeb3b968a3c4675247513d429972d31d (patch)
treeb1949118213c0d03a3d1280efc9f9aea551abac4 /xlators/mgmt/glusterd/src/glusterd-rpc-ops.c
parenta2bbf75d04e8173c2156a001538564d141a26d4a (diff)
glusterd: FORWARD_NULL coverity fix
Problem: Pointer used to print xlator name could be NULL. Solution: Updated the code to use xlator name as appropriate. BUG: 789278 Change-Id: I26927ef1f33f362e17c104684d7f722a643c7f97 Signed-off-by: Akarsha Rai <akrai@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-rpc-ops.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-rpc-ops.c33
1 files changed, 22 insertions, 11 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c b/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c
index ab52e8d3008..133a55b8d42 100644
--- a/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c
+++ b/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c
@@ -1527,7 +1527,8 @@ glusterd_rpc_probe (call_frame_t *frame, xlator_t *this,
out:
GF_FREE (req.hostname);
- gf_msg_debug ("glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -1629,7 +1630,8 @@ out:
if (peer_data)
dict_unref (peer_data);
- gf_msg_debug ("glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -1678,7 +1680,8 @@ glusterd_rpc_friend_remove (call_frame_t *frame, xlator_t *this,
out:
GF_FREE (req.hostname);
- gf_msg_debug ("glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -1727,7 +1730,8 @@ out:
if (ret && dummy_frame)
STACK_DESTROY (dummy_frame->root);
- gf_msg_debug ("glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -1761,7 +1765,8 @@ glusterd_cluster_lock (call_frame_t *frame, xlator_t *this,
this, glusterd_cluster_lock_cbk,
(xdrproc_t)xdr_gd1_mgmt_cluster_lock_req);
out:
- gf_msg_debug ("glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
if (ret && dummy_frame)
STACK_DESTROY (dummy_frame->root);
@@ -1839,7 +1844,8 @@ glusterd_mgmt_v3_lock_peers (call_frame_t *frame, xlator_t *this,
this, glusterd_mgmt_v3_lock_peers_cbk,
(xdrproc_t)xdr_gd1_mgmt_v3_lock_req);
out:
- gf_msg_debug (this->name, 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
if (dict)
dict_unref (dict);
if (req.dict.dict_val)
@@ -1920,7 +1926,8 @@ glusterd_mgmt_v3_unlock_peers (call_frame_t *frame, xlator_t *this,
(xdrproc_t)
xdr_gd1_mgmt_v3_unlock_req);
out:
- gf_msg_debug (this->name, 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
if (dict)
dict_unref(dict);
@@ -1959,7 +1966,8 @@ glusterd_cluster_unlock (call_frame_t *frame, xlator_t *this,
this, glusterd_cluster_unlock_cbk,
(xdrproc_t)xdr_gd1_mgmt_cluster_unlock_req);
out:
- gf_msg_debug (this ? this->name : "glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
if (ret && dummy_frame)
STACK_DESTROY (dummy_frame->root);
@@ -2044,7 +2052,8 @@ out:
if ((_gf_true == is_alloc) && req.buf.buf_val)
GF_FREE (req.buf.buf_val);
- gf_msg_debug (this->name, 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -2124,7 +2133,8 @@ out:
if ((_gf_true == is_alloc) && req.buf.buf_val)
GF_FREE (req.buf.buf_val);
- gf_msg_debug (this->name, 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}
@@ -2405,7 +2415,8 @@ out:
opinfo.op_ret = ret;
}
- gf_msg_debug (this ? this->name : "glusterd", 0, "Returning %d", ret);
+ gf_msg_debug (this ? this->name : "glusterd", 0,
+ "Returning %d", ret);
return ret;
}