new helper: do_new_mount_fc()
authorDavid Howells <dhowells@redhat.com>
Sun, 4 Nov 2018 12:43:08 +0000 (07:43 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 30 Jan 2019 22:44:25 +0000 (17:44 -0500)
commit132e460848f4261b8a6b9c28fae52bf9e02b52fd
tree6efa9049652905a5931b564a64d0aa609979d91b
parenta0c9a8b8fd9fd572b0d60276beb2142c8f59f9b8
new helper: do_new_mount_fc()

Create an fs_context-aware version of do_new_mount().  This takes an
fs_context with a superblock already attached to it.

Make do_new_mount() use do_new_mount_fc() rather than do_new_mount(); this
allows the consolidation of the mount creation, check and add steps.

To make this work, mount_too_revealing() is changed to take a superblock
rather than a mount (which the fs_context doesn't have available), allowing
this check to be done before the mount object is created.

Signed-off-by: David Howells <dhowells@redhat.com>
Co-developed-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namespace.c