commit | 1f063d2cdf332a8a5722006b1345d15d16007c6e | [log] [tgz] |
---|---|---|
author | Trond Myklebust <Trond.Myklebust@netapp.com> | Thu Apr 22 15:35:55 2010 -0400 |
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | Thu Apr 22 15:35:55 2010 -0400 |
tree | 4295c3fd46390f12e1ed2354998a91007f85fb13 | |
parent | 3d7b08945e54a3a5358d5890240619a013cb7388 [diff] [blame] |
NFSv4: Don't attempt an atomic open if the file is a mountpoint Fix https://bugzilla.kernel.org/show_bug.cgi?id=15789 Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index be46f26..fbb4cf7 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c
@@ -1050,7 +1050,7 @@ struct inode *dir; int openflags, ret = 0; - if (!is_atomic_open(nd)) + if (!is_atomic_open(nd) || d_mountpoint(dentry)) goto no_open; parent = dget_parent(dentry); dir = parent->d_inode;