aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_super.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2008-05-20 01:11:11 -0400
committerNiv Sardi <xaiki@debian.org>2008-07-28 02:58:33 -0400
commit120226c11a6277d3e761393f0995c55218fabebb (patch)
treeaf12cd891981e116467fbaa9332c975bf20fac54 /fs/xfs/linux-2.6/xfs_super.c
parenteffa2eda3ab9c013585349b8afd305dc5decf771 (diff)
[XFS] add missing call to xfs_filestream_unmount on xfs_mountfs failure
SGI-PV: 981951 SGI-Modid: xfs-linux-melb:xfs-kern:31199a Signed-off-by: Christoph Hellwig <hch@infradead.org> Signed-off-by: David Chinner <dgc@sgi.com> Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index 4c662d63d626..41eea24a46e4 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -1810,7 +1810,7 @@ xfs_fs_fill_super(
1810 1810
1811 error = xfs_mountfs(mp, flags); 1811 error = xfs_mountfs(mp, flags);
1812 if (error) 1812 if (error)
1813 goto out_free_sb; 1813 goto out_filestream_unmount;
1814 1814
1815 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname); 1815 XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
1816 1816
@@ -1850,6 +1850,8 @@ xfs_fs_fill_super(
1850 kfree(args); 1850 kfree(args);
1851 return 0; 1851 return 0;
1852 1852
1853 out_filestream_unmount:
1854 xfs_filestream_unmount(mp);
1853 out_free_sb: 1855 out_free_sb:
1854 xfs_freesb(mp); 1856 xfs_freesb(mp);
1855 out_destroy_counters: 1857 out_destroy_counters: