summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/state.h
diff options
context:
space:
mode:
authorJ. Bruce Fields2010-06-07 00:12:14 +0200
committerJ. Bruce Fields2010-10-02 01:29:44 +0200
commitc7662518c781edc8059cd9737d18168154bf7510 (patch)
treec622e315c4df927a915f2a7992eb946ae168b3b4 /fs/nfsd/state.h
parentnfsd4: clean up session allocation (diff)
downloadkernel-qcow2-linux-c7662518c781edc8059cd9737d18168154bf7510.tar.gz
kernel-qcow2-linux-c7662518c781edc8059cd9737d18168154bf7510.tar.xz
kernel-qcow2-linux-c7662518c781edc8059cd9737d18168154bf7510.zip
nfsd4: keep per-session list of connections
The spec requires us in various places to keep track of the connections associated with each session. Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r--fs/nfsd/state.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h
index 58bc2a63ca14..29413c2ed270 100644
--- a/fs/nfsd/state.h
+++ b/fs/nfsd/state.h
@@ -152,6 +152,13 @@ struct nfsd4_clid_slot {
struct nfsd4_create_session sl_cr_ses;
};
+struct nfsd4_conn {
+ struct list_head cn_persession;
+ struct svc_xprt *cn_xprt;
+/* CDFC4_FORE, CDFC4_BACK: */
+ unsigned char cn_flags;
+};
+
struct nfsd4_session {
struct kref se_ref;
struct list_head se_hash; /* hash by sessionid */
@@ -161,6 +168,7 @@ struct nfsd4_session {
struct nfs4_sessionid se_sessionid;
struct nfsd4_channel_attrs se_fchannel;
struct nfsd4_channel_attrs se_bchannel;
+ struct list_head se_conns;
struct nfsd4_slot *se_slots[]; /* forward channel slots */
};