Commit 3a2393d7 authored by Al Viro's avatar Al Viro

vfs: opencode mntget() mnt_set_mountpoint()

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 909b0a88
...@@ -572,8 +572,9 @@ static void detach_mnt(struct mount *mnt, struct path *old_path) ...@@ -572,8 +572,9 @@ static void detach_mnt(struct mount *mnt, struct path *old_path)
void mnt_set_mountpoint(struct mount *mnt, struct dentry *dentry, void mnt_set_mountpoint(struct mount *mnt, struct dentry *dentry,
struct mount *child_mnt) struct mount *child_mnt)
{ {
child_mnt->mnt_parent = real_mount(mntget(&mnt->mnt)); mnt_add_count(mnt, 1); /* essentially, that's mntget */
child_mnt->mnt_mountpoint = dget(dentry); child_mnt->mnt_mountpoint = dget(dentry);
child_mnt->mnt_parent = mnt;
spin_lock(&dentry->d_lock); spin_lock(&dentry->d_lock);
dentry->d_flags |= DCACHE_MOUNTED; dentry->d_flags |= DCACHE_MOUNTED;
spin_unlock(&dentry->d_lock); spin_unlock(&dentry->d_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment