aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorWeston Andros Adamson <dros@netapp.com>2012-05-24 13:22:50 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2012-05-24 16:22:19 -0400
commit7c44f1ae4a21458a1ea3d6482ffb3136f1df6d2b (patch)
treea66f9b3fb7a5252a87dbcee40562a1e8ed47dc9b /include/linux
parentd23d61c8d351f5ced44ce87caf1fa3baab4c3f89 (diff)
nfs4.1: add BIND_CONN_TO_SESSION operation
This patch adds the BIND_CONN_TO_SESSION operation which is needed for upcoming SP4_MACH_CRED work and useful for recovering from broken connections without destroying the session. Signed-off-by: Weston Andros Adamson <dros@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nfs4.h5
-rw-r--r--include/linux/nfs_xdr.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h
index 72b6bada0d79..a2b71cbfc44a 100644
--- a/include/linux/nfs4.h
+++ b/include/linux/nfs4.h
@@ -69,6 +69,10 @@
69#define NFS4_CDFC4_FORE_OR_BOTH 0x3 69#define NFS4_CDFC4_FORE_OR_BOTH 0x3
70#define NFS4_CDFC4_BACK_OR_BOTH 0x7 70#define NFS4_CDFC4_BACK_OR_BOTH 0x7
71 71
72#define NFS4_CDFS4_FORE 0x1
73#define NFS4_CDFS4_BACK 0x2
74#define NFS4_CDFS4_BOTH 0x3
75
72#define NFS4_SET_TO_SERVER_TIME 0 76#define NFS4_SET_TO_SERVER_TIME 0
73#define NFS4_SET_TO_CLIENT_TIME 1 77#define NFS4_SET_TO_CLIENT_TIME 1
74 78
@@ -589,6 +593,7 @@ enum {
589 NFSPROC4_CLNT_SECINFO, 593 NFSPROC4_CLNT_SECINFO,
590 594
591 /* nfs41 */ 595 /* nfs41 */
596 NFSPROC4_CLNT_BIND_CONN_TO_SESSION,
592 NFSPROC4_CLNT_EXCHANGE_ID, 597 NFSPROC4_CLNT_EXCHANGE_ID,
593 NFSPROC4_CLNT_CREATE_SESSION, 598 NFSPROC4_CLNT_CREATE_SESSION,
594 NFSPROC4_CLNT_DESTROY_SESSION, 599 NFSPROC4_CLNT_DESTROY_SESSION,
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h
index 201c312152fb..6387fc0097fe 100644
--- a/include/linux/nfs_xdr.h
+++ b/include/linux/nfs_xdr.h
@@ -1125,6 +1125,12 @@ struct nfs41_impl_id {
1125 struct nfstime4 date; 1125 struct nfstime4 date;
1126}; 1126};
1127 1127
1128struct nfs41_bind_conn_to_session_res {
1129 struct nfs4_session *session;
1130 u32 dir;
1131 bool use_conn_in_rdma_mode;
1132};
1133
1128struct nfs41_exchange_id_res { 1134struct nfs41_exchange_id_res {
1129 struct nfs_client *client; 1135 struct nfs_client *client;
1130 u32 flags; 1136 u32 flags;