aboutsummaryrefslogtreecommitdiffstats
path: root/fs/namespace.c
diff options
context:
space:
mode:
authorNikolay Borisov <nborisov@suse.com>2020-03-04 18:12:45 +0200
committerAl Viro <viro@zeniv.linux.org.uk>2020-05-29 10:35:24 -0400
commit5ad05cc8e0463f106be7ef5d1074dd877132d60a (patch)
treea636b6dab4fb841d9db73cf2b2a4e7891dd1b798 /fs/namespace.c
parent8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff)
downloadlinux-5ad05cc8e0463f106be7ef5d1074dd877132d60a.tar.gz
vfs: Remove duplicated d_mountpoint check in __is_local_mountpoint
This function acts as an out-of-line helper for is_local_mountpoint is only called after the latter verifies the dentry is not a mountpoint. There's no semantic changes and the resulting object code is smaller: add/remove: 0/0 grow/shrink: 0/1 up/down: 0/-26 (-26) Function old new delta __is_local_mountpoint 147 121 -26 Total: Before=34161, After=34135, chg -0.08% Signed-off-by: Nikolay Borisov <nborisov@suse.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r--fs/namespace.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index a28e4db075ede..e6aed405611da 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -669,9 +669,6 @@ bool __is_local_mountpoint(struct dentry *dentry)
struct mount *mnt;
bool is_covered = false;
- if (!d_mountpoint(dentry))
- goto out;
-
down_read(&namespace_sem);
list_for_each_entry(mnt, &ns->list, mnt_list) {
is_covered = (mnt->mnt_mountpoint == dentry);
@@ -679,7 +676,7 @@ bool __is_local_mountpoint(struct dentry *dentry)
break;
}
up_read(&namespace_sem);
-out:
+
return is_covered;
}