diff options
author | Andy Adamson <andros@netapp.com> | 2009-07-23 19:02:16 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-07-28 14:30:29 -0400 |
commit | 49557cc74c7bdf6a984be227ead9a84b3a26f053 (patch) | |
tree | 796abd9b62301d16f3307dacd0b21e47b79622b1 /include/linux/nfsd | |
parent | 88e588d56a2f0226a34386b94a03fda97d2b8e67 (diff) |
nfsd41: Use separate DRC for setclientid
Instead of trying to share the generic 4.1 reply cache code for the
CREATE_SESSION reply cache, it's simpler to handle CREATE_SESSION
separately.
The nfs41 single slot clientid DRC holds the results of create session
processing. CREATE_SESSION can be preceeded by a SEQUENCE operation
(an embedded CREATE_SESSION) and the create session single slot cache must be
maintained. nfsd4_replay_cache_entry() and nfsd4_store_cache_entry() do not
implement the replay of an embedded CREATE_SESSION.
The clientid DRC slot does not need the inuse, cachethis or other fields that
the multiple slot session cache uses. Replace the clientid DRC cache struct
nfs4_slot cache with a new nfsd4_clid_slot cache. Save the xdr struct
nfsd4_create_session into the cache at the end of processing, and on a replay,
replace the struct for the replay request with the cached version all while
under the state lock.
nfsd4_proc_compound will handle both the solo and embedded CREATE_SESSION case
via the normal use of encode_operation.
Errors that do not change the create session cache:
A create session NFS4ERR_STALE_CLIENTID error means that a client record
(and associated create session slot) could not be found and therefore can't
be changed. NFSERR_SEQ_MISORDERED errors do not change the slot cache.
All other errors get cached.
Remove the clientid DRC specific check in nfs4svc_encode_compoundres to
put the session only if cstate.session is set which will now always be true.
Signed-off-by: Andy Adamson <andros@netapp.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'include/linux/nfsd')
-rw-r--r-- | include/linux/nfsd/state.h | 21 | ||||
-rw-r--r-- | include/linux/nfsd/xdr4.h | 12 |
2 files changed, 20 insertions, 13 deletions
diff --git a/include/linux/nfsd/state.h b/include/linux/nfsd/state.h index a6c87d623891..58bb19784e12 100644 --- a/include/linux/nfsd/state.h +++ b/include/linux/nfsd/state.h | |||
@@ -127,6 +127,25 @@ struct nfsd4_channel_attrs { | |||
127 | u32 rdma_attrs; | 127 | u32 rdma_attrs; |
128 | }; | 128 | }; |
129 | 129 | ||
130 | struct nfsd4_create_session { | ||
131 | clientid_t clientid; | ||
132 | struct nfs4_sessionid sessionid; | ||
133 | u32 seqid; | ||
134 | u32 flags; | ||
135 | struct nfsd4_channel_attrs fore_channel; | ||
136 | struct nfsd4_channel_attrs back_channel; | ||
137 | u32 callback_prog; | ||
138 | u32 uid; | ||
139 | u32 gid; | ||
140 | }; | ||
141 | |||
142 | /* The single slot clientid cache structure */ | ||
143 | struct nfsd4_clid_slot { | ||
144 | u32 sl_seqid; | ||
145 | __be32 sl_status; | ||
146 | struct nfsd4_create_session sl_cr_ses; | ||
147 | }; | ||
148 | |||
130 | struct nfsd4_session { | 149 | struct nfsd4_session { |
131 | struct kref se_ref; | 150 | struct kref se_ref; |
132 | struct list_head se_hash; /* hash by sessionid */ | 151 | struct list_head se_hash; /* hash by sessionid */ |
@@ -193,7 +212,7 @@ struct nfs4_client { | |||
193 | 212 | ||
194 | /* for nfs41 */ | 213 | /* for nfs41 */ |
195 | struct list_head cl_sessions; | 214 | struct list_head cl_sessions; |
196 | struct nfsd4_slot cl_slot; /* create_session slot */ | 215 | struct nfsd4_clid_slot cl_cs_slot; /* create_session slot */ |
197 | u32 cl_exchange_flags; | 216 | u32 cl_exchange_flags; |
198 | struct nfs4_sessionid cl_sessionid; | 217 | struct nfs4_sessionid cl_sessionid; |
199 | }; | 218 | }; |
diff --git a/include/linux/nfsd/xdr4.h b/include/linux/nfsd/xdr4.h index 2bacf7535069..5e4beb0deb80 100644 --- a/include/linux/nfsd/xdr4.h +++ b/include/linux/nfsd/xdr4.h | |||
@@ -366,18 +366,6 @@ struct nfsd4_exchange_id { | |||
366 | int spa_how; | 366 | int spa_how; |
367 | }; | 367 | }; |
368 | 368 | ||
369 | struct nfsd4_create_session { | ||
370 | clientid_t clientid; | ||
371 | struct nfs4_sessionid sessionid; | ||
372 | u32 seqid; | ||
373 | u32 flags; | ||
374 | struct nfsd4_channel_attrs fore_channel; | ||
375 | struct nfsd4_channel_attrs back_channel; | ||
376 | u32 callback_prog; | ||
377 | u32 uid; | ||
378 | u32 gid; | ||
379 | }; | ||
380 | |||
381 | struct nfsd4_sequence { | 369 | struct nfsd4_sequence { |
382 | struct nfs4_sessionid sessionid; /* request/response */ | 370 | struct nfs4_sessionid sessionid; /* request/response */ |
383 | u32 seqid; /* request/response */ | 371 | u32 seqid; /* request/response */ |