aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: