Explorar o código

[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>
Christoph Hellwig %!s(int64=17) %!d(string=hai) anos
pai
achega
120226c11a
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      fs/xfs/linux-2.6/xfs_super.c

+ 3 - 1
fs/xfs/linux-2.6/xfs_super.c

@@ -1810,7 +1810,7 @@ xfs_fs_fill_super(
 
 
 	error = xfs_mountfs(mp, flags);
 	error = xfs_mountfs(mp, flags);
 	if (error)
 	if (error)
-		goto out_free_sb;
+		goto out_filestream_unmount;
 
 
 	XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
 	XFS_SEND_MOUNT(mp, DM_RIGHT_NULL, args->mtpt, args->fsname);
 
 
@@ -1850,6 +1850,8 @@ xfs_fs_fill_super(
 	kfree(args);
 	kfree(args);
 	return 0;
 	return 0;
 
 
+ out_filestream_unmount:
+	xfs_filestream_unmount(mp);
  out_free_sb:
  out_free_sb:
 	xfs_freesb(mp);
 	xfs_freesb(mp);
  out_destroy_counters:
  out_destroy_counters: