aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_super.c
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2014-05-14 19:36:59 -0400
committerDave Chinner <david@fromorbit.com>2014-05-14 19:36:59 -0400
commit232c2f5c65dd80055e7163a5c82e3816119330e6 (patch)
treee103eaf14b6c9d4b24f9a33a0d3d218b3a76bbac /fs/xfs/xfs_super.c
parentfdd3a2ae2e48310491e605c46201c95629dd450b (diff)
parentb94acd4786dce4379e986e6d58bdd74f8986af2f (diff)
Merge branch 'xfs-filestreams-lookup' into for-next
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r--fs/xfs/xfs_super.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index 6e6673543777..8f0333b3f7a0 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -1749,13 +1749,9 @@ init_xfs_fs(void)
1749 if (error) 1749 if (error)
1750 goto out_destroy_wq; 1750 goto out_destroy_wq;
1751 1751
1752 error = xfs_filestream_init();
1753 if (error)
1754 goto out_mru_cache_uninit;
1755
1756 error = xfs_buf_init(); 1752 error = xfs_buf_init();
1757 if (error) 1753 if (error)
1758 goto out_filestream_uninit; 1754 goto out_mru_cache_uninit;
1759 1755
1760 error = xfs_init_procfs(); 1756 error = xfs_init_procfs();
1761 if (error) 1757 if (error)
@@ -1782,8 +1778,6 @@ init_xfs_fs(void)
1782 xfs_cleanup_procfs(); 1778 xfs_cleanup_procfs();
1783 out_buf_terminate: 1779 out_buf_terminate:
1784 xfs_buf_terminate(); 1780 xfs_buf_terminate();
1785 out_filestream_uninit:
1786 xfs_filestream_uninit();
1787 out_mru_cache_uninit: 1781 out_mru_cache_uninit:
1788 xfs_mru_cache_uninit(); 1782 xfs_mru_cache_uninit();
1789 out_destroy_wq: 1783 out_destroy_wq:
@@ -1802,7 +1796,6 @@ exit_xfs_fs(void)
1802 xfs_sysctl_unregister(); 1796 xfs_sysctl_unregister();
1803 xfs_cleanup_procfs(); 1797 xfs_cleanup_procfs();
1804 xfs_buf_terminate(); 1798 xfs_buf_terminate();
1805 xfs_filestream_uninit();
1806 xfs_mru_cache_uninit(); 1799 xfs_mru_cache_uninit();
1807 xfs_destroy_workqueues(); 1800 xfs_destroy_workqueues();
1808 xfs_destroy_zones(); 1801 xfs_destroy_zones();