mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
vfs: mnt_parent moved to struct mount
the second victim... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -292,7 +292,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
|
||||
{
|
||||
struct vfsmount *m;
|
||||
struct mount *child;
|
||||
struct vfsmount *parent = mnt->mnt.mnt_parent;
|
||||
struct vfsmount *parent = mnt->mnt_parent;
|
||||
int ret = 0;
|
||||
|
||||
if (&mnt->mnt == parent)
|
||||
@@ -322,7 +322,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
|
||||
*/
|
||||
static void __propagate_umount(struct mount *mnt)
|
||||
{
|
||||
struct vfsmount *parent = mnt->mnt.mnt_parent;
|
||||
struct vfsmount *parent = mnt->mnt_parent;
|
||||
struct vfsmount *m;
|
||||
|
||||
BUG_ON(parent == &mnt->mnt);
|
||||
|
Reference in New Issue
Block a user