nfsd4: mask out non-access bits in nfs4_access_to_omode
authorJ. Bruce Fields <bfields@redhat.com>
Thu, 2 Sep 2010 19:23:16 +0000 (15:23 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Thu, 2 Sep 2010 19:25:09 +0000 (15:25 -0400)
This fixes an unnecessary BUG().

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4state.c

index 3dfef06..cf0d2ff 100644 (file)
@@ -440,7 +440,7 @@ test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
 
 static int nfs4_access_to_omode(u32 access)
 {
-       switch (access) {
+       switch (access & NFS4_SHARE_ACCESS_BOTH) {
        case NFS4_SHARE_ACCESS_READ:
                return O_RDONLY;
        case NFS4_SHARE_ACCESS_WRITE: