summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-handler.c
diff options
context:
space:
mode:
authorKaleb S. KEITHLEY <kkeithle@redhat.com>2016-08-22 13:22:02 -0400
committerKaleb KEITHLEY <kkeithle@redhat.com>2016-09-12 23:06:58 -0700
commit543ca6a3f8096c64ac7da9087c47bb86775fd132 (patch)
treeb30651d5cc5c647675608fa1b7e7c8c84c5b673e /xlators/mgmt/glusterd/src/glusterd-handler.c
parent4903dbaffd1c1ee99889a3f21ac83950cc9a1c4e (diff)
glusterd (handler): fix unused variable warnings/errors
http://review.gluster.org/14085 fixes a/the "leak" - via the generated rpc/xdr headers - of pragmas that mask these warnings. However 14085 won't pass the smoke test until all the warnings are fixed. Change-Id: Ic4eabed88a363e85dbc4823b250a5a7f2a00a50f BUG: 1369124 Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com> Reviewed-on: http://review.gluster.org/15265 Smoke: Gluster Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: jiffin tony Thottan <jthottan@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-handler.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-handler.c60
1 files changed, 27 insertions, 33 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c
index 18886dc5d15..03b1f7c2bd8 100644
--- a/xlators/mgmt/glusterd/src/glusterd-handler.c
+++ b/xlators/mgmt/glusterd/src/glusterd-handler.c
@@ -705,7 +705,6 @@ glusterd_op_txn_begin (rpcsvc_request_t *req, glusterd_op_t op, void *ctx,
char *err_str, size_t err_len)
{
int32_t ret = -1;
- int npeers = 0;
dict_t *dict = NULL;
xlator_t *this = NULL;
glusterd_conf_t *priv = NULL;
@@ -1880,9 +1879,7 @@ __glusterd_handle_ganesha_cmd (rpcsvc_request_t *req)
gf_cli_req cli_req = { {0,} } ;
dict_t *dict = NULL;
glusterd_op_t cli_op = GD_OP_GANESHA;
- char *volname = NULL;
char *op_errstr = NULL;
- gf_boolean_t help = _gf_false;
char err_str[2048] = {0,};
xlator_t *this = NULL;
@@ -2276,7 +2273,6 @@ __glusterd_handle_fsm_log (rpcsvc_request_t *req)
int32_t ret = -1;
gf1_cli_fsm_log_req cli_req = {0,};
dict_t *dict = NULL;
- glusterd_sm_tr_log_t *log = NULL;
xlator_t *this = NULL;
glusterd_conf_t *conf = NULL;
char msg[2048] = {0};
@@ -3400,37 +3396,18 @@ out:
}
int
-glusterd_transport_keepalive_options_get (int *interval, int *time,
- int *timeout)
-{
- int ret = 0;
- xlator_t *this = NULL;
-
- this = THIS;
- GF_ASSERT (this);
-
- ret = dict_get_int32 (this->options,
- "transport.socket.keepalive-interval",
- interval);
- ret = dict_get_int32 (this->options,
- "transport.socket.keepalive-time",
- time);
- ret = dict_get_int32 (this->options,
- "transport.tcp-user-timeout",
- timeout);
- return 0;
-}
-
-int
glusterd_transport_inet_options_build (dict_t **options, const char *hostname,
int port)
{
+ xlator_t *this = NULL;
dict_t *dict = NULL;
int32_t interval = -1;
int32_t time = -1;
int32_t timeout = -1;
int ret = 0;
+ this = THIS;
+ GF_ASSERT (this);
GF_ASSERT (options);
GF_ASSERT (hostname);
@@ -3456,7 +3433,30 @@ glusterd_transport_inet_options_build (dict_t **options, const char *hostname,
}
/* Set keepalive options */
- glusterd_transport_keepalive_options_get (&interval, &time, &timeout);
+ ret = dict_get_int32 (this->options,
+ "transport.socket.keepalive-interval",
+ &interval);
+ if (ret) {
+ gf_msg ("glusterd", GF_LOG_WARNING, 0,
+ GD_MSG_DICT_GET_FAILED,
+ "Failed to get socket keepalive-interval");
+ }
+ ret = dict_get_int32 (this->options,
+ "transport.socket.keepalive-time",
+ &time);
+ if (ret) {
+ gf_msg ("glusterd", GF_LOG_WARNING, 0,
+ GD_MSG_DICT_GET_FAILED,
+ "Failed to get socket keepalive-time");
+ }
+ ret = dict_get_int32 (this->options,
+ "transport.tcp-user-timeout",
+ &timeout);
+ if (ret) {
+ gf_msg ("glusterd", GF_LOG_WARNING, 0,
+ GD_MSG_DICT_GET_FAILED,
+ "Failed to get tcp-user-timeout");
+ }
if ((interval > 0) || (time > 0))
ret = rpc_transport_keepalive_options_set (dict, interval,
@@ -3808,7 +3808,6 @@ glusterd_xfer_friend_remove_resp (rpcsvc_request_t *req, char *hostname, int por
gd1_mgmt_friend_rsp rsp = {{0}, };
int32_t ret = -1;
xlator_t *this = NULL;
- glusterd_conf_t *conf = NULL;
GF_ASSERT (hostname);
@@ -3816,8 +3815,6 @@ glusterd_xfer_friend_remove_resp (rpcsvc_request_t *req, char *hostname, int por
this = THIS;
GF_ASSERT (this);
- conf = this->private;
-
gf_uuid_copy (rsp.uuid, MY_UUID);
rsp.hostname = hostname;
rsp.port = port;
@@ -3839,15 +3836,12 @@ glusterd_xfer_friend_add_resp (rpcsvc_request_t *req, char *myhostname,
gd1_mgmt_friend_rsp rsp = {{0}, };
int32_t ret = -1;
xlator_t *this = NULL;
- glusterd_conf_t *conf = NULL;
GF_ASSERT (myhostname);
this = THIS;
GF_ASSERT (this);
- conf = this->private;
-
gf_uuid_copy (rsp.uuid, MY_UUID);
rsp.op_ret = op_ret;
rsp.op_errno = op_errno;