mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
NFS: Add a flag to tell nfs_client to set RPC_CLNT_CREATE_NOPING
Add a flag to tell the nfs_client it should set RPC_CLNT_CREATE_NOPING when creating the rpc client. Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
parent
d0372b679c
commit
4b1b69cedf
2 changed files with 3 additions and 0 deletions
|
@ -515,6 +515,8 @@ int nfs_create_rpc_client(struct nfs_client *clp,
|
|||
args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
|
||||
if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags))
|
||||
args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS;
|
||||
if (test_bit(NFS_CS_NOPING, &clp->cl_flags))
|
||||
args.flags |= RPC_CLNT_CREATE_NOPING;
|
||||
|
||||
if (!IS_ERR(clp->cl_rpcclient))
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue