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/namei.c | |
parent | b12cea9198fa99ffd3de1776c323bc7464d26b44 (diff) | |
download | op-kernel-dev-7cc90cc3ffe22a0d81b8d605b20a82ec7911012d.zip op-kernel-dev-7cc90cc3ffe22a0d81b8d605b20a82ec7911012d.tar.gz |
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/namei.c')
-rw-r--r-- | fs/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1065,7 +1065,7 @@ failed: * Care must be taken as namespace_sem may be held (indicated by mounting_here * being true). */ -int follow_down(struct path *path, bool mounting_here) +int follow_down(struct path *path) { unsigned managed; int ret; @@ -1086,7 +1086,7 @@ int follow_down(struct path *path, bool mounting_here) BUG_ON(!path->dentry->d_op); BUG_ON(!path->dentry->d_op->d_manage); ret = path->dentry->d_op->d_manage( - path->dentry, mounting_here, false); + path->dentry, false, false); if (ret < 0) return ret == -EISDIR ? 0 : ret; } |