aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfsd/state.h
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2010-05-26 17:40:53 -0400
committerJ. Bruce Fields <bfields@redhat.com>2010-10-01 19:29:43 -0400
commit586f36735e1d38c32bbfbb2716461e7178724b15 (patch)
tree7754079a37b0cc78f95bb32bbd682aa3f821ed2a /fs/nfsd/state.h
parent07263f1efe7d5b96e6713471abfa087f41bb2b7c (diff)
nfsd4: combine nfs4_rpc_args and nfsd4_cb_sequence
These two structs don't really need to be distinct as far as I can tell. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r--fs/nfsd/state.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h
index 322518c88e4b..59313f1d8e67 100644
--- a/fs/nfsd/state.h
+++ b/fs/nfsd/state.h
@@ -64,15 +64,10 @@ typedef struct {
64 (s)->si_fileid, \ 64 (s)->si_fileid, \
65 (s)->si_generation 65 (s)->si_generation
66 66
67struct nfsd4_cb_sequence {
68 /* args/res */
69 u32 cbs_minorversion;
70 struct nfs4_client *cbs_clp;
71};
72
73struct nfs4_rpc_args { 67struct nfs4_rpc_args {
74 void *args_op; 68 void *args_op;
75 struct nfsd4_cb_sequence args_seq; 69 struct nfs4_client *args_clp;
70 u32 args_minorversion;
76}; 71};
77 72
78struct nfsd4_callback { 73struct nfsd4_callback {