diff options
| author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2016-08-22 13:22:03 -0400 | 
|---|---|---|
| committer | Atin Mukherjee <amukherj@redhat.com> | 2016-08-25 23:31:33 -0700 | 
| commit | 40e6580ec90b249a34e3a99ad53c5861edb15aad (patch) | |
| tree | ab383445ee09cb18acee3f4e2f193a4005faaa06 | |
| parent | 6a22b7d856d63159c7e3a7d2a25e5589708b89bf (diff) | |
glusterd (rpc-ops): 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: I65e6f8cdae150a796da485d9840838c4306b623b
BUG: 1369124
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
Reviewed-on: http://review.gluster.org/15275
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-rpc-ops.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c b/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c index 9cf6fda5152..03b6e71cd9a 100644 --- a/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-rpc-ops.c @@ -711,7 +711,6 @@ __glusterd_cluster_lock_cbk (struct rpc_req *req, struct iovec *iov,          int                           ret   = -1;          int32_t                       op_ret = -1;          glusterd_op_sm_event_type_t   event_type = GD_OP_EVENT_NONE; -        glusterd_peerinfo_t           *peerinfo = NULL;          xlator_t                      *this = NULL;          uuid_t                        *txn_id = NULL;          glusterd_conf_t               *priv = NULL; @@ -1052,7 +1051,6 @@ __glusterd_cluster_unlock_cbk (struct rpc_req *req, struct iovec *iov,          int                           ret   = -1;          int32_t                       op_ret = -1;          glusterd_op_sm_event_type_t   event_type = GD_OP_EVENT_NONE; -        glusterd_peerinfo_t           *peerinfo = NULL;          xlator_t                      *this = NULL;          uuid_t                        *txn_id = NULL;          glusterd_conf_t               *priv = NULL; @@ -2049,7 +2047,6 @@ glusterd_commit_op (call_frame_t *frame, xlator_t *this,          int                     ret         = -1;          glusterd_peerinfo_t    *peerinfo    = NULL;          glusterd_conf_t        *priv        = NULL; -        call_frame_t           *dummy_frame = NULL;          dict_t                 *dict        = NULL;          gf_boolean_t            is_alloc    = _gf_true;          uuid_t                 *txn_id      = NULL;  | 
