diff options
author | Trond Myklebust | 2010-03-25 13:54:49 -0400 |
---|---|---|
committer | Trond Myklebust | 2010-04-09 19:08:16 -0400 |
commit | 1544fa0f7a46241582abc48f07b74f3d846379e4 (patch) | |
tree | 2557435df56c5beadf9ad8c3dabc93b07a78aed9 /fs | |
parent | 80e60639f1b7c121a7fea53920c5a4b94009361a (diff) |
NFS: Fix the mode calculation in nfs_find_open_context
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/inode.c | 8 |
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; |