Skip to content

Commit

Permalink
[XFS] add missing call to xfs_filestream_unmount on xfs_mountfs failure
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Christoph Hellwig authored and Niv Sardi committed Jul 28, 2008
1 parent effa2ed commit 120226c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fs/xfs/linux-2.6/xfs_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 120226c

Please sign in to comment.