Hi all, this series is against the VFS vfs.super branch does two slightly related things: - move closing of the external devices in ext4 and xfs from ->put_super into ->kill_sb so that this isn't done under s_umount which creates lock ordere reversal - move freeing the private dta in s_fs_info into ->kill_sb for file systems that pass it in through the fs_context, as otherwise we could leak it before fill_super is called (this is something new on the vfs.super branch because of the changed place where blkdev_get is called) Diffstat: exfat/exfat_fs.h | 2 - exfat/super.c | 39 +++++++++++++------------- ext4/super.c | 50 +++++++++++++++++----------------- ntfs3/super.c | 33 ++++++++++------------ xfs/xfs_buf.c | 7 +++- xfs/xfs_super.c | 80 +++++++++++++++++++++++++------------------------------ 6 files changed, 102 insertions(+), 109 deletions(-)