diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-18 09:04:20 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-18 09:04:20 -0400 |
commit | 7cc90cc3ffe22a0d81b8d605b20a82ec7911012d (patch) | |
tree | a870fc960dd10a12be6fb905ea266c65547c11bb /fs/nfsd | |
parent | b12cea9198fa99ffd3de1776c323bc7464d26b44 (diff) | |
download | linux-7cc90cc3ffe22a0d81b8d605b20a82ec7911012d.tar.bz2 |
don't pass 'mounting_here' flag to follow_down()
it's always false now
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index da1d9701f8e4..ff93025ae2f7 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c @@ -87,7 +87,7 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, .dentry = dget(dentry)}; int err = 0; - err = follow_down(&path, false); + err = follow_down(&path); if (err < 0) goto out; |