diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2010-05-16 16:47:08 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-01 19:29:43 -0400 |
commit | 5878453dbde627a8e1b5a4693087e36cb88d45b1 (patch) | |
tree | 0cc34915aca412599363af87e59f16fb327a28a3 /fs/nfsd/state.h | |
parent | 1c8556026edac60368ceef446f0febc08014ba78 (diff) | |
download | linux-5878453dbde627a8e1b5a4693087e36cb88d45b1.tar.bz2 |
nfsd4: generic callback code
Make the recall callback code more generic, so that other callbacks
will be able to use it too.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index f988b90ec213..6e592148ad80 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -72,6 +72,8 @@ struct nfsd4_cb_args { struct nfsd4_callback { struct nfsd4_cb_args cb_args; + struct rpc_message cb_msg; + const struct rpc_call_ops *cb_ops; struct work_struct cb_work; }; |