aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/nfsd
diff options
context:
space:
mode:
authorJ.Bruce Fields <bfields@fieldses.org>2006-12-13 03:35:28 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-13 12:05:54 -0500
commita4f1706a9bd94d0e33e853a7e9f40b2650d54fbf (patch)
tree66c2bb36ac0b9da3edb13bcee77a46ab576a5e89 /include/linux/nfsd
parentd9e626f1e23358487595c2d3901126d00f9de7e0 (diff)
[PATCH] knfsd: nfsd4: move replay_owner to cstate
Tuck away the replay_owner in the cstate while we're at it. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu> Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/nfsd')
-rw-r--r--include/linux/nfsd/xdr4.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/include/linux/nfsd/xdr4.h b/include/linux/nfsd/xdr4.h
index 594b8ca69755..4e5cd05ea373 100644
--- a/include/linux/nfsd/xdr4.h
+++ b/include/linux/nfsd/xdr4.h
@@ -47,6 +47,7 @@
47struct nfsd4_compound_state { 47struct nfsd4_compound_state {
48 struct svc_fh current_fh; 48 struct svc_fh current_fh;
49 struct svc_fh save_fh; 49 struct svc_fh save_fh;
50 struct nfs4_stateowner *replay_owner;
50}; 51};
51 52
52struct nfsd4_change_info { 53struct nfsd4_change_info {
@@ -442,25 +443,21 @@ extern __be32 nfsd4_process_open1(struct nfsd4_open *open);
442extern __be32 nfsd4_process_open2(struct svc_rqst *rqstp, 443extern __be32 nfsd4_process_open2(struct svc_rqst *rqstp,
443 struct svc_fh *current_fh, struct nfsd4_open *open); 444 struct svc_fh *current_fh, struct nfsd4_open *open);
444extern __be32 nfsd4_open_confirm(struct svc_rqst *rqstp, 445extern __be32 nfsd4_open_confirm(struct svc_rqst *rqstp,
445 struct nfsd4_compound_state *, struct nfsd4_open_confirm *oc, 446 struct nfsd4_compound_state *, struct nfsd4_open_confirm *oc);
446 struct nfs4_stateowner **);
447extern __be32 nfsd4_close(struct svc_rqst *rqstp, 447extern __be32 nfsd4_close(struct svc_rqst *rqstp,
448 struct nfsd4_compound_state *, 448 struct nfsd4_compound_state *,
449 struct nfsd4_close *close, 449 struct nfsd4_close *close);
450 struct nfs4_stateowner **replay_owner);
451extern __be32 nfsd4_open_downgrade(struct svc_rqst *rqstp, 450extern __be32 nfsd4_open_downgrade(struct svc_rqst *rqstp,
452 struct nfsd4_compound_state *, struct nfsd4_open_downgrade *od, 451 struct nfsd4_compound_state *,
453 struct nfs4_stateowner **replay_owner); 452 struct nfsd4_open_downgrade *od);
454extern __be32 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *, 453extern __be32 nfsd4_lock(struct svc_rqst *rqstp, struct nfsd4_compound_state *,
455 struct nfsd4_lock *lock, 454 struct nfsd4_lock *lock);
456 struct nfs4_stateowner **replay_owner);
457extern __be32 nfsd4_lockt(struct svc_rqst *rqstp, 455extern __be32 nfsd4_lockt(struct svc_rqst *rqstp,
458 struct nfsd4_compound_state *, 456 struct nfsd4_compound_state *,
459 struct nfsd4_lockt *lockt); 457 struct nfsd4_lockt *lockt);
460extern __be32 nfsd4_locku(struct svc_rqst *rqstp, 458extern __be32 nfsd4_locku(struct svc_rqst *rqstp,
461 struct nfsd4_compound_state *, 459 struct nfsd4_compound_state *,
462 struct nfsd4_locku *locku, 460 struct nfsd4_locku *locku);
463 struct nfs4_stateowner **replay_owner);
464extern __be32 461extern __be32
465nfsd4_release_lockowner(struct svc_rqst *rqstp, 462nfsd4_release_lockowner(struct svc_rqst *rqstp,
466 struct nfsd4_release_lockowner *rlockowner); 463 struct nfsd4_release_lockowner *rlockowner);