aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/clnt.c26
1 files changed, 18 insertions, 8 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 836f15c0c4a3..07e9b05321e6 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -1105,14 +1105,24 @@ static void
1105call_transmit_status(struct rpc_task *task) 1105call_transmit_status(struct rpc_task *task)
1106{ 1106{
1107 task->tk_action = call_status; 1107 task->tk_action = call_status;
1108 /* 1108 switch (task->tk_status) {
1109 * Special case: if we've been waiting on the socket's write_space() 1109 case -EAGAIN:
1110 * callback, then don't call xprt_end_transmit(). 1110 break;
1111 */ 1111 default:
1112 if (task->tk_status == -EAGAIN) 1112 xprt_end_transmit(task);
1113 return; 1113 /*
1114 xprt_end_transmit(task); 1114 * Special cases: if we've been waiting on the
1115 rpc_task_force_reencode(task); 1115 * socket's write_space() callback, or if the
1116 * socket just returned a connection error,
1117 * then hold onto the transport lock.
1118 */
1119 case -ECONNREFUSED:
1120 case -ENOTCONN:
1121 case -EHOSTDOWN:
1122 case -EHOSTUNREACH:
1123 case -ENETUNREACH:
1124 rpc_task_force_reencode(task);
1125 }
1116} 1126}
1117 1127
1118/* 1128/*