diff options
author | Anoop C S <achiraya@redhat.com> | 2015-06-03 11:38:13 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-06-22 06:08:17 -0700 |
commit | d65a334691fd339b770114a35edd4d14e9db2678 (patch) | |
tree | 65db8a3a6f023c64d69c4044349ce4673773ef9d /xlators/protocol/client/src | |
parent | bf3c34f9db793a1b84b7346ac8756098b44cbaff (diff) |
protocol/client: Remove unused function clnt_mark_fd_bad()
clnt_mark_fd_bad() is no longer used to mark the fd bad. Instead
we make use of client_mark_fd_bad() to do the same.
Change-Id: I09af892d8c0c5d1cf853ff020e8596c53d9539c0
BUG: 1227667
Signed-off-by: Anoop C S <achiraya@redhat.com>
Reviewed-on: http://review.gluster.org/11063
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'xlators/protocol/client/src')
-rw-r--r-- | xlators/protocol/client/src/client-handshake.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/xlators/protocol/client/src/client-handshake.c b/xlators/protocol/client/src/client-handshake.c index 96f61eb5bed..0df5980f0c8 100644 --- a/xlators/protocol/client/src/client-handshake.c +++ b/xlators/protocol/client/src/client-handshake.c @@ -319,16 +319,6 @@ out: return local; } -void -clnt_mark_fd_bad (clnt_conf_t *conf, clnt_fd_ctx_t *fdctx) -{ - pthread_mutex_lock (&conf->lock); - { - fdctx->remote_fd = -1; - } - pthread_mutex_unlock (&conf->lock); -} - int clnt_release_reopen_fd_cbk (struct rpc_req *req, struct iovec *iov, int count, void *myframe) |