diff options
author | Alexandros Batsakis <batsakis@netapp.com> | 2009-12-05 13:27:02 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-12-05 13:27:02 -0500 |
commit | 31f0960778c78198957cf02cc970d92b72b929e4 (patch) | |
tree | b5d061437c4a952e0fe78006a2ad9186c2e6ecc9 /fs/nfs/callback.h | |
parent | c79571a508801e055a0be583d6dc70bddad7bb64 (diff) | |
download | linux-31f0960778c78198957cf02cc970d92b72b929e4.tar.gz linux-31f0960778c78198957cf02cc970d92b72b929e4.tar.bz2 linux-31f0960778c78198957cf02cc970d92b72b929e4.zip |
nfs41: V2 initial support for CB_RECALL_ANY
For now the clients returns _all_ the delegations of the specificed type
it holds
Signed-off-by: Alexandros Batsakis <batsakis@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/callback.h')
-rw-r--r-- | fs/nfs/callback.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/nfs/callback.h b/fs/nfs/callback.h index 07baa8254ca1..0ca830984c4b 100644 --- a/fs/nfs/callback.h +++ b/fs/nfs/callback.h @@ -106,6 +106,17 @@ struct cb_sequenceres { extern unsigned nfs4_callback_sequence(struct cb_sequenceargs *args, struct cb_sequenceres *res); + +#define RCA4_TYPE_MASK_RDATA_DLG 0 +#define RCA4_TYPE_MASK_WDATA_DLG 1 + +struct cb_recallanyargs { + struct sockaddr *craa_addr; + uint32_t craa_objs_to_keep; + uint32_t craa_type_mask; +}; + +extern unsigned nfs4_callback_recallany(struct cb_recallanyargs *args, void *dummy); #endif /* CONFIG_NFS_V4_1 */ extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res); |