Commit 120226c1 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Niv Sardi

[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: default avatarChristoph Hellwig <hch@infradead.org>
Signed-off-by: default avatarDavid Chinner <dgc@sgi.com>
Signed-off-by: default avatarLachlan McIlroy <lachlan@sgi.com>
parent effa2eda
......@@ -1810,7 +1810,7 @@ xfs_fs_fill_super(
error = xfs_mountfs(mp, flags);
if (error)
goto out_free_sb;
goto out_filestream_unmount;
XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
......@@ -1850,6 +1850,8 @@ xfs_fs_fill_super(
kfree(args);
return 0;
out_filestream_unmount:
xfs_filestream_unmount(mp);
out_free_sb:
xfs_freesb(mp);
out_destroy_counters:
......
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