Commit 6203300e authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Lachlan McIlroy

[XFS] don't call xfs_freesb from xfs_unmountfs

xfs_readsb is called before xfs_mount so xfs_freesb should be called after
xfs_unmountfs, too. This means it now happens after a few things during
the of xfs_unmount which all have nothing to do with the superblock.

SGI-PV: 981498

SGI-Modid: xfs-linux-melb:xfs-kern:31835a
Signed-off-by: default avatarChristoph Hellwig <hch@infradead.org>
Signed-off-by: default avatarLachlan McIlroy <lachlan@sgi.com>
parent 41b5c2e7
...@@ -1147,6 +1147,7 @@ xfs_fs_put_super( ...@@ -1147,6 +1147,7 @@ xfs_fs_put_super(
} }
xfs_unmountfs(mp); xfs_unmountfs(mp);
xfs_freesb(mp);
xfs_icsb_destroy_counters(mp); xfs_icsb_destroy_counters(mp);
xfs_close_devices(mp); xfs_close_devices(mp);
xfs_qmops_put(mp); xfs_qmops_put(mp);
...@@ -1803,7 +1804,7 @@ xfs_fs_fill_super( ...@@ -1803,7 +1804,7 @@ xfs_fs_fill_super(
WARN_ON(error); WARN_ON(error);
xfs_unmountfs(mp); xfs_unmountfs(mp);
goto out_free_fsname; goto out_free_sb;
} }
STATIC int STATIC int
......
...@@ -1296,8 +1296,6 @@ xfs_unmountfs( ...@@ -1296,8 +1296,6 @@ xfs_unmountfs(
xfs_unmountfs_wait(mp); /* wait for async bufs */ xfs_unmountfs_wait(mp); /* wait for async bufs */
xfs_log_unmount(mp); /* Done! No more fs ops. */ xfs_log_unmount(mp); /* Done! No more fs ops. */
xfs_freesb(mp);
/* /*
* All inodes from this mount point should be freed. * All inodes from this mount point should be freed.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment