diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-11-01 18:09:48 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-11-07 19:39:58 -0500 |
commit | cb73a9f4649bf63c0397e565a15abf8a91ecf56f (patch) | |
tree | 96fb7200465a50047c92089ee4b504a3ebcfe9bb /fs/nfsd/nfs4state.c | |
parent | c6bb3ca27d78b902baa143b931a8d9ef53298afa (diff) | |
download | blackbird-op-linux-cb73a9f4649bf63c0397e565a15abf8a91ecf56f.tar.gz blackbird-op-linux-cb73a9f4649bf63c0397e565a15abf8a91ecf56f.zip |
nfsd4: implement backchannel_ctl operation
This operation is mandatory for servers to implement.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r-- | fs/nfsd/nfs4state.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index dbbbd2fe5236..4023e77687ee 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -1865,6 +1865,20 @@ static __be32 nfsd4_map_bcts_dir(u32 *dir) return nfserr_inval; } +__be32 nfsd4_backchannel_ctl(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_backchannel_ctl *bc) +{ + struct nfsd4_session *session = cstate->session; + + spin_lock(&client_lock); + session->se_cb_prog = bc->bc_cb_program; + session->se_cb_sec = bc->bc_cb_sec; + spin_unlock(&client_lock); + + nfsd4_probe_callback(session->se_client); + + return nfs_ok; +} + __be32 nfsd4_bind_conn_to_session(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_bind_conn_to_session *bcts) |