diff options
author | Steve Dickson <steved@redhat.com> | 2013-05-22 12:50:38 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-06-08 16:20:13 -0400 |
commit | 42c2c4249cd0192e29eec71e3e94d7bbc383c8de (patch) | |
tree | 7b82190aaaf9fd8ecb7404559b0f8cd0a49e818f /include/linux/nfs4.h | |
parent | eb9ae686507bc5a5ca78e6b3fbe629cd5cc67864 (diff) |
NFSv4.2: Added NFS v4.2 support to the NFS client
This enable NFSv4.2 support. To enable this code the
CONFIG_NFS_V4_2 Kconfig define needs to be set and
the -o v4.2 mount option need to be used.
Signed-off-by: Steve Dickson <steved@redhat.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/nfs4.h')
-rw-r--r-- | include/linux/nfs4.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 7764aca1c6b7..42046004a2f6 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
@@ -399,11 +399,15 @@ enum lock_type4 { | |||
399 | #define NFS4_VERSION 4 | 399 | #define NFS4_VERSION 4 |
400 | #define NFS4_MINOR_VERSION 0 | 400 | #define NFS4_MINOR_VERSION 0 |
401 | 401 | ||
402 | #if defined(CONFIG_NFS_V4_2) | ||
403 | #define NFS4_MAX_MINOR_VERSION 2 | ||
404 | #else | ||
402 | #if defined(CONFIG_NFS_V4_1) | 405 | #if defined(CONFIG_NFS_V4_1) |
403 | #define NFS4_MAX_MINOR_VERSION 1 | 406 | #define NFS4_MAX_MINOR_VERSION 1 |
404 | #else | 407 | #else |
405 | #define NFS4_MAX_MINOR_VERSION 0 | 408 | #define NFS4_MAX_MINOR_VERSION 0 |
406 | #endif /* CONFIG_NFS_V4_1 */ | 409 | #endif /* CONFIG_NFS_V4_1 */ |
410 | #endif /* CONFIG_NFS_V4_2 */ | ||
407 | 411 | ||
408 | #define NFS4_DEBUG 1 | 412 | #define NFS4_DEBUG 1 |
409 | 413 | ||