diff options
author | J. Bruce Fields <bfields@redhat.com> | 2010-10-04 23:12:59 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-01-11 15:04:09 -0500 |
commit | 1d1bc8f2074f0b728dfca2a3c16f2f5a3f298ffc (patch) | |
tree | 314aae91a98ab5358886a1d8517151f40816ec4c /fs/nfsd/state.h | |
parent | 4c6493785a1ea9c3b3522f199760a90a30e1626c (diff) | |
download | linux-1d1bc8f2074f0b728dfca2a3c16f2f5a3f298ffc.tar.bz2 |
nfsd4: support BIND_CONN_TO_SESSION
Basic xdr and processing for BIND_CONN_TO_SESSION. This adds a
connection to the list of connections associated with a session.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index cf6dc83fd545..442f6d8e024c 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -148,6 +148,11 @@ struct nfsd4_create_session { u32 gid; }; +struct nfsd4_bind_conn_to_session { + struct nfs4_sessionid sessionid; + u32 dir; +}; + /* The single slot clientid cache structure */ struct nfsd4_clid_slot { u32 sl_seqid; |