SUNRPC: remove some dead code.

RPC_TASK_NO_RETRANS_TIMEOUT is set when cl_noretranstimeo
is set, which happens when RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT is set,
which happens when NFS_CS_NO_RETRANS_TIMEOUT is set.

This flag means "don't resend on a timeout, only resend if the
connection gets broken for some reason".

cl_discrtry is set when RPC_CLNT_CREATE_DISCRTRY is set, which
happens when NFS_CS_DISCRTRY is set.

This flag means "always disconnect before resending".

NFS_CS_NO_RETRANS_TIMEOUT and NFS_CS_DISCRTRY are both only set
in nfs4_init_client(), and it always sets both.

So we will never have a situation where only one of the flags is set.
So this code, which tests if timeout retransmits are allowed, and
disconnection is required, will never run.

So it makes sense to remove this code as it cannot be tested and
could confuse people reading the code (like me).

(alternately we could leave it there with a comment saying
it is never actually used).

Signed-off-by: NeilBrown <neilb@suse.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>

authored by

NeilBrown and committed by
Trond Myklebust
f1ecbc21 237f8306

-4
-4
net/sunrpc/clnt.c
··· 2147 2147 rpc_delay(task, 3*HZ); 2148 2148 case -ETIMEDOUT: 2149 2149 task->tk_action = call_timeout; 2150 - if (!(task->tk_flags & RPC_TASK_NO_RETRANS_TIMEOUT) 2151 - && task->tk_client->cl_discrtry) 2152 - xprt_conditional_disconnect(req->rq_xprt, 2153 - req->rq_connect_cookie); 2154 2150 break; 2155 2151 case -ECONNREFUSED: 2156 2152 case -ECONNRESET: