Remove path_release_on_umount()
path_release_on_umount() should only be called from sys_umount(). I merged the function into sys_umount() instead of having in in namei.c. Signed-off-by: Jan Blunck <jblunck@suse.de> Acked-by: Christoph Hellwig <hch@lst.de> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
db74ece990
commit
429731b155
10
fs/namei.c
10
fs/namei.c
@ -368,16 +368,6 @@ void path_release(struct nameidata *nd)
|
||||
mntput(nd->mnt);
|
||||
}
|
||||
|
||||
/*
|
||||
* umount() mustn't call path_release()/mntput() as that would clear
|
||||
* mnt_expiry_mark
|
||||
*/
|
||||
void path_release_on_umount(struct nameidata *nd)
|
||||
{
|
||||
dput(nd->dentry);
|
||||
mntput_no_expire(nd->mnt);
|
||||
}
|
||||
|
||||
/**
|
||||
* release_open_intent - free up open intent resources
|
||||
* @nd: pointer to nameidata
|
||||
|
Reference in New Issue
Block a user