SUNRPC: Add missing support for RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT
authorTrond Myklebust <trond.myklebust@primarydata.com>
Thu, 25 Sep 2014 02:35:58 +0000 (22:35 -0400)
committerTrond Myklebust <trond.myklebust@primarydata.com>
Fri, 26 Sep 2014 01:25:17 +0000 (21:25 -0400)
commit2aca5b869ace67a63aab895659e5dc14c33a4d6e
tree305aa5ff30ea4c0916a854ac1d0de84486949ddb
parent2f3169fb18f4643ac9a6a097a6a6c71f0b2cef75
SUNRPC: Add missing support for RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT

The flag RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT was intended introduced in
order to allow NFSv4 clients to disable resend timeouts. Since those
cause the RPC layer to break the connection, they mess up the duplicate
reply caches that remain indexed on the port number in NFSv4..

This patch includes the code that was missing in the original to
set the appropriate flag in struct rpc_clnt, when the caller of
rpc_create() sets RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT.

Fixes: 8a19a0b6cb2e (SUNRPC: Add RPC task and client level options to...)
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
net/sunrpc/clnt.c