]> git.karo-electronics.de Git - karo-tx-linux.git/commit
vfs: Add a function to lazily unmount all mounts from any dentry.
authorEric W. Biederman <ebiederman@twitter.com>
Thu, 3 Oct 2013 08:31:18 +0000 (01:31 -0700)
committerEric W. Biederman <ebiederm@xmission.com>
Tue, 25 Feb 2014 03:37:40 +0000 (19:37 -0800)
commit1615300afb60b83d833409a12cef0a5df524d465
tree6b5e14f1997bae90f38db0e697d74651d6846be9
parentd5d3708a0f57a7f3a237c84c213232a8145352a9
vfs: Add a function to lazily unmount all mounts from any dentry.

The new function detach_mounts comes in two pieces.  The first piece
is a static inline test of d_mounpoint that returns immediately
without taking any locks if d_mounpoint is not set.  In the common
case when mountpoints are absent this allows the vfs to continue
running with it's same cacheline foot print.

The second piece of detach_mounts __detach_mounts actually does the
work and it assumes that a mountpoint is present so it is slow and
takes namespace_sem for write, and then locks the mount hash (aka
mount_lock) after a struct mountpoint has been found.

With those two locks held each entry on the list of mounts on a
mountpoint is selected and lazily unmounted until all of the mount
have been lazily unmounted.

v7: Wrote a proper change description and removed the changelog
    documenting deleted wrong turns.

Signed-off-by: Eric W. Biederman <ebiederman@twitter.com>
fs/mount.h
fs/namespace.c