diff options
author | Mi Jinlong <mijinlong@cn.fujitsu.com> | 2011-03-23 05:57:07 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-04-29 20:47:53 -0400 |
commit | a62573dc353b255dbbc8520bfdcb1c8a8c1ada87 (patch) | |
tree | 23c0b4cd8dfe6a0670237d946df6b5b184c25f1b /include/linux/nfs4.h | |
parent | ac6721a13e5b1a90728e790600f827a5e5f5da2f (diff) |
nfsd41: add flag checking for create_session
Teach the NFS server to reject invalid create_session flags.
Also do some minor formatting adjustments.
Signed-off-by: Mi Jinlong <mijinlong@cn.fujitsu.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'include/linux/nfs4.h')
-rw-r--r-- | include/linux/nfs4.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index b528f6d4b860..8937727e7039 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
@@ -570,9 +570,11 @@ struct nfs4_sessionid { | |||
570 | }; | 570 | }; |
571 | 571 | ||
572 | /* Create Session Flags */ | 572 | /* Create Session Flags */ |
573 | #define SESSION4_PERSIST 0x001 | 573 | #define SESSION4_PERSIST 0x001 |
574 | #define SESSION4_BACK_CHAN 0x002 | 574 | #define SESSION4_BACK_CHAN 0x002 |
575 | #define SESSION4_RDMA 0x004 | 575 | #define SESSION4_RDMA 0x004 |
576 | |||
577 | #define SESSION4_FLAG_MASK_A 0x007 | ||
576 | 578 | ||
577 | enum state_protect_how4 { | 579 | enum state_protect_how4 { |
578 | SP4_NONE = 0, | 580 | SP4_NONE = 0, |