diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-11-20 11:02:55 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-11-21 09:29:51 -0500 |
commit | ae72ae676045274c82f3c25159a9dd7cfcf5ffae (patch) | |
tree | 09013f55649287d90b48f63cdbdbef44b17ae521 | |
parent | 5df904aeb0d9baad90e78fc730dfe1afa4996005 (diff) |
NFSv4.1: Don't confuse CREATE_SESSION arguments and results
Don't store the target request and response sizes in the same
variables used to store the server's replies to those targets.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r-- | fs/nfs/nfs4proc.c | 30 | ||||
-rw-r--r-- | include/linux/nfs_fs_sb.h | 3 |
2 files changed, 20 insertions, 13 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index a32d953b08de..3e572dc316e4 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -5807,8 +5807,8 @@ void nfs4_destroy_session(struct nfs4_session *session) | |||
5807 | static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args) | 5807 | static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args) |
5808 | { | 5808 | { |
5809 | struct nfs4_session *session = args->client->cl_session; | 5809 | struct nfs4_session *session = args->client->cl_session; |
5810 | unsigned int mxrqst_sz = session->fc_attrs.max_rqst_sz, | 5810 | unsigned int mxrqst_sz = session->fc_target_max_rqst_sz, |
5811 | mxresp_sz = session->fc_attrs.max_resp_sz; | 5811 | mxresp_sz = session->fc_target_max_resp_sz; |
5812 | 5812 | ||
5813 | if (mxrqst_sz == 0) | 5813 | if (mxrqst_sz == 0) |
5814 | mxrqst_sz = NFS_MAX_FILE_IO_SIZE; | 5814 | mxrqst_sz = NFS_MAX_FILE_IO_SIZE; |
@@ -6015,24 +6015,28 @@ int nfs4_init_session(struct nfs_server *server) | |||
6015 | { | 6015 | { |
6016 | struct nfs_client *clp = server->nfs_client; | 6016 | struct nfs_client *clp = server->nfs_client; |
6017 | struct nfs4_session *session; | 6017 | struct nfs4_session *session; |
6018 | unsigned int rsize, wsize; | 6018 | unsigned int target_max_rqst_sz = NFS_MAX_FILE_IO_SIZE; |
6019 | unsigned int target_max_resp_sz = NFS_MAX_FILE_IO_SIZE; | ||
6019 | 6020 | ||
6020 | if (!nfs4_has_session(clp)) | 6021 | if (!nfs4_has_session(clp)) |
6021 | return 0; | 6022 | return 0; |
6022 | 6023 | ||
6024 | if (server->rsize != 0) | ||
6025 | target_max_resp_sz = server->rsize; | ||
6026 | target_max_resp_sz += nfs41_maxread_overhead; | ||
6027 | |||
6028 | if (server->wsize != 0) | ||
6029 | target_max_rqst_sz = server->wsize; | ||
6030 | target_max_rqst_sz += nfs41_maxwrite_overhead; | ||
6031 | |||
6023 | session = clp->cl_session; | 6032 | session = clp->cl_session; |
6024 | spin_lock(&clp->cl_lock); | 6033 | spin_lock(&clp->cl_lock); |
6025 | if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) { | 6034 | if (test_and_clear_bit(NFS4_SESSION_INITING, &session->session_state)) { |
6026 | 6035 | /* Initialise targets and channel attributes */ | |
6027 | rsize = server->rsize; | 6036 | session->fc_target_max_rqst_sz = target_max_rqst_sz; |
6028 | if (rsize == 0) | 6037 | session->fc_attrs.max_rqst_sz = target_max_rqst_sz; |
6029 | rsize = NFS_MAX_FILE_IO_SIZE; | 6038 | session->fc_target_max_resp_sz = target_max_resp_sz; |
6030 | wsize = server->wsize; | 6039 | session->fc_attrs.max_resp_sz = target_max_resp_sz; |
6031 | if (wsize == 0) | ||
6032 | wsize = NFS_MAX_FILE_IO_SIZE; | ||
6033 | |||
6034 | session->fc_attrs.max_rqst_sz = wsize + nfs41_maxwrite_overhead; | ||
6035 | session->fc_attrs.max_resp_sz = rsize + nfs41_maxread_overhead; | ||
6036 | } | 6040 | } |
6037 | spin_unlock(&clp->cl_lock); | 6041 | spin_unlock(&clp->cl_lock); |
6038 | 6042 | ||
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index a9e76ee1adca..97c8f9191880 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
@@ -242,6 +242,9 @@ struct nfs4_session { | |||
242 | struct nfs4_channel_attrs bc_attrs; | 242 | struct nfs4_channel_attrs bc_attrs; |
243 | struct nfs4_slot_table bc_slot_table; | 243 | struct nfs4_slot_table bc_slot_table; |
244 | struct nfs_client *clp; | 244 | struct nfs_client *clp; |
245 | /* Create session arguments */ | ||
246 | unsigned int fc_target_max_rqst_sz; | ||
247 | unsigned int fc_target_max_resp_sz; | ||
245 | }; | 248 | }; |
246 | 249 | ||
247 | #endif /* CONFIG_NFS_V4 */ | 250 | #endif /* CONFIG_NFS_V4 */ |