diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-04-14 11:49:51 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-04-14 12:59:28 -0400 |
commit | 98f98cf571b7b1f34683455a61dae9f35e7222a1 (patch) | |
tree | a9fb78c9ba646e48487a2fc44a613586775f969d | |
parent | b7993cebb841b0da7a33e9d5ce301a9fd3209165 (diff) |
NFSv4.1: Set the RPC_CLNT_CREATE_INFINITE_SLOTS flag for NFSv4.1 transports
This ensures that the RPC layer doesn't override the NFS session
negotiation.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | fs/nfs/client.c | 2 | ||||
-rw-r--r-- | fs/nfs/nfs4client.c | 2 | ||||
-rw-r--r-- | include/linux/nfs_fs_sb.h | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c index 84d8eae203a7..c513b0cc835f 100644 --- a/fs/nfs/client.c +++ b/fs/nfs/client.c | |||
@@ -593,6 +593,8 @@ int nfs_create_rpc_client(struct nfs_client *clp, | |||
593 | args.flags |= RPC_CLNT_CREATE_DISCRTRY; | 593 | args.flags |= RPC_CLNT_CREATE_DISCRTRY; |
594 | if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags)) | 594 | if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags)) |
595 | args.flags |= RPC_CLNT_CREATE_NONPRIVPORT; | 595 | args.flags |= RPC_CLNT_CREATE_NONPRIVPORT; |
596 | if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags)) | ||
597 | args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS; | ||
596 | 598 | ||
597 | if (!IS_ERR(clp->cl_rpcclient)) | 599 | if (!IS_ERR(clp->cl_rpcclient)) |
598 | return 0; | 600 | return 0; |
diff --git a/fs/nfs/nfs4client.c b/fs/nfs/nfs4client.c index 17b34b2da2df..f4d4d4ec6bf7 100644 --- a/fs/nfs/nfs4client.c +++ b/fs/nfs/nfs4client.c | |||
@@ -198,6 +198,8 @@ struct nfs_client *nfs4_init_client(struct nfs_client *clp, | |||
198 | /* Check NFS protocol revision and initialize RPC op vector */ | 198 | /* Check NFS protocol revision and initialize RPC op vector */ |
199 | clp->rpc_ops = &nfs_v4_clientops; | 199 | clp->rpc_ops = &nfs_v4_clientops; |
200 | 200 | ||
201 | if (clp->cl_minorversion != 0) | ||
202 | __set_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags); | ||
201 | __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); | 203 | __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); |
202 | error = nfs_create_rpc_client(clp, timeparms, authflavour); | 204 | error = nfs_create_rpc_client(clp, timeparms, authflavour); |
203 | if (error < 0) | 205 | if (error < 0) |
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index d8fdfdc7a8fe..3b7fa2abecca 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
@@ -40,6 +40,7 @@ struct nfs_client { | |||
40 | #define NFS_CS_NORESVPORT 0 /* - use ephemeral src port */ | 40 | #define NFS_CS_NORESVPORT 0 /* - use ephemeral src port */ |
41 | #define NFS_CS_DISCRTRY 1 /* - disconnect on RPC retry */ | 41 | #define NFS_CS_DISCRTRY 1 /* - disconnect on RPC retry */ |
42 | #define NFS_CS_MIGRATION 2 /* - transparent state migr */ | 42 | #define NFS_CS_MIGRATION 2 /* - transparent state migr */ |
43 | #define NFS_CS_INFINITE_SLOTS 3 /* - don't limit TCP slots */ | ||
43 | struct sockaddr_storage cl_addr; /* server identifier */ | 44 | struct sockaddr_storage cl_addr; /* server identifier */ |
44 | size_t cl_addrlen; | 45 | size_t cl_addrlen; |
45 | char * cl_hostname; /* hostname of server */ | 46 | char * cl_hostname; /* hostname of server */ |