diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2008-02-13 14:55:17 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-02-13 23:24:05 -0500 |
commit | 4267c9561d9c3bb2abf45abed9c75a1c892d7d15 (patch) | |
tree | cc2d15122ac06bebb25c87b53dc61e387c70f350 /fs | |
parent | 8e60029f403781b8a63b7ffdb7dc1faff6ca651e (diff) |
NFS: Allow text-based mounts via compat_sys_mount
The compat_sys_mount() system call throws EINVAL for text-based NFSv4
mounts.
The text-based mount interface assumes that any mount option blob that
doesn't set the version field to "1" is a C string (ie not a legacy
mount request). The compat_sys_mount() call treats blobs that don't
set the version field to "1" as an error. We just relax the check in
compat_sys_mount() a bit to allow C strings to be passed down to the NFSv4
client.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/compat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/compat.c b/fs/compat.c index ee80ff341d37..439292aa1ec6 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -702,9 +702,6 @@ static int do_nfs4_super_data_conv(void *raw_data) | |||
702 | real->flags = raw->flags; | 702 | real->flags = raw->flags; |
703 | real->version = raw->version; | 703 | real->version = raw->version; |
704 | } | 704 | } |
705 | else { | ||
706 | return -EINVAL; | ||
707 | } | ||
708 | 705 | ||
709 | return 0; | 706 | return 0; |
710 | } | 707 | } |