aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/inode.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2010-03-25 13:54:49 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2010-04-09 19:08:16 -0400
commit1544fa0f7a46241582abc48f07b74f3d846379e4 (patch)
tree2557435df56c5beadf9ad8c3dabc93b07a78aed9 /fs/nfs/inode.c
parentNFSv4: Fall back to ordinary lookup if nfs4_atomic_open() returns EISDIR (diff)
downloadlinux-dev-1544fa0f7a46241582abc48f07b74f3d846379e4.tar.xz
linux-dev-1544fa0f7a46241582abc48f07b74f3d846379e4.zip
NFS: Fix the mode calculation in nfs_find_open_context
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r--fs/nfs/inode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 737128f777f3..50a56edca0b5 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -623,10 +623,10 @@ struct nfs_open_context *nfs_find_open_context(struct inode *inode, struct rpc_c
list_for_each_entry(pos, &nfsi->open_files, list) {
if (cred != NULL && pos->cred != cred)
continue;
- if ((pos->mode & mode) == mode) {
- ctx = get_nfs_open_context(pos);
- break;
- }
+ if ((pos->mode & (FMODE_READ|FMODE_WRITE)) != mode)
+ continue;
+ ctx = get_nfs_open_context(pos);
+ break;
}
spin_unlock(&inode->i_lock);
return ctx;