aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2007-11-06 18:40:12 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2008-01-30 02:05:26 -0500
commit3ebb067d92ebe5bcfd282acf12bade891d334d07 (patch)
tree99da8250d23887b8573dbeddae76ceb392c0663b /net/sunrpc/clnt.c
parent7272dcd31d56580dee7693c21e369fd167e137fe (diff)
SUNRPC: Make call_status()/call_decode() call xprt_force_disconnect()
Move the calls to xprt_disconnect() over to xprt_force_disconnect() in order to enable the transport layer to manage the state of the XPRT_CONNECTED flag. Ditto in xs_tcp_read_fraghdr(). Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 76be83ee4b04..046d8f68483b 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -1137,7 +1137,7 @@ call_status(struct rpc_task *task)
1137 case -ETIMEDOUT: 1137 case -ETIMEDOUT:
1138 task->tk_action = call_timeout; 1138 task->tk_action = call_timeout;
1139 if (task->tk_client->cl_discrtry) 1139 if (task->tk_client->cl_discrtry)
1140 xprt_disconnect(task->tk_xprt); 1140 xprt_force_disconnect(task->tk_xprt);
1141 break; 1141 break;
1142 case -ECONNREFUSED: 1142 case -ECONNREFUSED:
1143 case -ENOTCONN: 1143 case -ENOTCONN:
@@ -1260,7 +1260,7 @@ out_retry:
1260 req->rq_received = req->rq_private_buf.len = 0; 1260 req->rq_received = req->rq_private_buf.len = 0;
1261 task->tk_status = 0; 1261 task->tk_status = 0;
1262 if (task->tk_client->cl_discrtry) 1262 if (task->tk_client->cl_discrtry)
1263 xprt_disconnect(task->tk_xprt); 1263 xprt_force_disconnect(task->tk_xprt);
1264} 1264}
1265 1265
1266/* 1266/*