Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4d70278 authored by Miklos Szeredi's avatar Miklos Szeredi Committed by Linus Torvalds
Browse files

[PATCH] namespace.c: cleanup in mark_mounts_for_expiry()



This patch simplifies mark_mounts_for_expiry() by using detach_mnt() instead
of duplicating everything it does.

It should be an equivalent transformation except for righting the dput/mntput
order.

Al Viro said: "Looks sane".

Signed-off-by: default avatarMiklos Szeredi <miklos@szeredi.hu>
Cc: <viro@parcelfarce.linux.theplanet.co.uk>
Acked-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1ce88cf4
Loading
Loading
Loading
Loading
+3 −14
Original line number Diff line number Diff line
@@ -880,24 +880,13 @@ void mark_mounts_for_expiry(struct list_head *mounts)
		/* check that it is still dead: the count should now be 2 - as
		 * contributed by the vfsmount parent and the mntget above */
		if (atomic_read(&mnt->mnt_count) == 2) {
			struct vfsmount *xdmnt;
			struct dentry *xdentry;
			struct nameidata old_nd;

			/* delete from the namespace */
			list_del_init(&mnt->mnt_list);
			list_del_init(&mnt->mnt_child);
			list_del_init(&mnt->mnt_hash);
			mnt->mnt_mountpoint->d_mounted--;

			xdentry = mnt->mnt_mountpoint;
			mnt->mnt_mountpoint = mnt->mnt_root;
			xdmnt = mnt->mnt_parent;
			mnt->mnt_parent = mnt;

			detach_mnt(mnt, &old_nd);
			spin_unlock(&vfsmount_lock);

			mntput(xdmnt);
			dput(xdentry);
			path_release(&old_nd);

			/* now lay it to rest if this was the last ref on the
			 * superblock */