diff options
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index fefeae27f25e..b85437982a8d 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h | |||
@@ -70,6 +70,15 @@ struct nfsd4_cb_sequence { | |||
70 | struct nfs4_client *cbs_clp; | 70 | struct nfs4_client *cbs_clp; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | struct nfs4_rpc_args { | ||
74 | void *args_op; | ||
75 | struct nfsd4_cb_sequence args_seq; | ||
76 | }; | ||
77 | |||
78 | struct nfsd4_callback { | ||
79 | struct nfs4_rpc_args cb_args; | ||
80 | }; | ||
81 | |||
73 | struct nfs4_delegation { | 82 | struct nfs4_delegation { |
74 | struct list_head dl_perfile; | 83 | struct list_head dl_perfile; |
75 | struct list_head dl_perclnt; | 84 | struct list_head dl_perclnt; |
@@ -86,6 +95,7 @@ struct nfs4_delegation { | |||
86 | stateid_t dl_stateid; | 95 | stateid_t dl_stateid; |
87 | struct knfsd_fh dl_fh; | 96 | struct knfsd_fh dl_fh; |
88 | int dl_retries; | 97 | int dl_retries; |
98 | struct nfsd4_callback dl_recall; | ||
89 | }; | 99 | }; |
90 | 100 | ||
91 | /* client delegation callback info */ | 101 | /* client delegation callback info */ |