diff options
author | Felix Blyakher <felixb@sgi.com> | 2009-03-16 10:15:27 -0400 |
---|---|---|
committer | Felix Blyakher <felixb@sgi.com> | 2009-03-16 10:15:27 -0400 |
commit | 4740cd8b4f27d6ac11e76c432d5d03fb780b2596 (patch) | |
tree | 46cb64d646ce1481dc9e606740742c40c9e6af50 /fs/xfs/xfs_mount.c | |
parent | cb1b77804091cc3491da4338a3599e318f358b25 (diff) | |
parent | 6cc87645e2a3c28d857b074e90bf88bfcd117afa (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/fs/xfs/xfs
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 664961e45e02..2549a235dad2 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
@@ -1194,7 +1194,7 @@ xfs_mountfs( | |||
1194 | out_rele_rip: | 1194 | out_rele_rip: |
1195 | IRELE(rip); | 1195 | IRELE(rip); |
1196 | out_log_dealloc: | 1196 | out_log_dealloc: |
1197 | xfs_log_unmount_dealloc(mp); | 1197 | xfs_log_unmount(mp); |
1198 | out_free_perag: | 1198 | out_free_perag: |
1199 | xfs_free_perag(mp); | 1199 | xfs_free_perag(mp); |
1200 | out_remove_uuid: | 1200 | out_remove_uuid: |
@@ -1280,7 +1280,8 @@ xfs_unmountfs( | |||
1280 | "Freespace may not be correct on next mount."); | 1280 | "Freespace may not be correct on next mount."); |
1281 | xfs_unmountfs_writesb(mp); | 1281 | xfs_unmountfs_writesb(mp); |
1282 | xfs_unmountfs_wait(mp); /* wait for async bufs */ | 1282 | xfs_unmountfs_wait(mp); /* wait for async bufs */ |
1283 | xfs_log_unmount(mp); /* Done! No more fs ops. */ | 1283 | xfs_log_unmount_write(mp); |
1284 | xfs_log_unmount(mp); | ||
1284 | 1285 | ||
1285 | if ((mp->m_flags & XFS_MOUNT_NOUUID) == 0) | 1286 | if ((mp->m_flags & XFS_MOUNT_NOUUID) == 0) |
1286 | uuid_table_remove(&mp->m_sb.sb_uuid); | 1287 | uuid_table_remove(&mp->m_sb.sb_uuid); |