Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1544fa0f authored by Trond Myklebust's avatar Trond Myklebust
Browse files

NFS: Fix the mode calculation in nfs_find_open_context

parent 80e60639
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -623,11 +623,11 @@ 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) {
		if ((pos->mode & (FMODE_READ|FMODE_WRITE)) != mode)
			continue;
		ctx = get_nfs_open_context(pos);
		break;
	}
	}
	spin_unlock(&inode->i_lock);
	return ctx;
}