diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2010-05-26 17:52:14 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2010-10-01 19:29:43 -0400 |
commit | cee277d92495a9ea49a6137fe7005d7c76b31b5b (patch) | |
tree | c7e80e31d64038d17761472d9a349330426d8c12 /fs/nfsd/nfs4state.c | |
parent | 5878453dbde627a8e1b5a4693087e36cb88d45b1 (diff) |
nfsd4: use generic callback code in null case
This will eventually allow us, for example, to kick off null callback
from contexts where we can't sleep.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r-- | fs/nfsd/nfs4state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index d347180ce55a..2f464fb26afc 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -978,6 +978,7 @@ static struct nfs4_client *create_client(struct xdr_netobj name, char *recdir, | |||
978 | INIT_LIST_HEAD(&clp->cl_delegations); | 978 | INIT_LIST_HEAD(&clp->cl_delegations); |
979 | INIT_LIST_HEAD(&clp->cl_sessions); | 979 | INIT_LIST_HEAD(&clp->cl_sessions); |
980 | INIT_LIST_HEAD(&clp->cl_lru); | 980 | INIT_LIST_HEAD(&clp->cl_lru); |
981 | INIT_WORK(&clp->cl_cb_null.cb_work, nfsd4_do_callback_rpc); | ||
981 | clp->cl_time = get_seconds(); | 982 | clp->cl_time = get_seconds(); |
982 | clear_bit(0, &clp->cl_cb_slot_busy); | 983 | clear_bit(0, &clp->cl_cb_slot_busy); |
983 | rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table"); | 984 | rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table"); |