aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r--fs/xfs/xfs_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c
index 0816c5d6d76b..9c23864d4fd0 100644
--- a/fs/xfs/xfs_log.c
+++ b/fs/xfs/xfs_log.c
@@ -588,12 +588,12 @@ error:
588 * mp - ubiquitous xfs mount point structure 588 * mp - ubiquitous xfs mount point structure
589 */ 589 */
590int 590int
591xfs_log_mount_finish(xfs_mount_t *mp, int mfsi_flags) 591xfs_log_mount_finish(xfs_mount_t *mp)
592{ 592{
593 int error; 593 int error;
594 594
595 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY)) 595 if (!(mp->m_flags & XFS_MOUNT_NORECOVERY))
596 error = xlog_recover_finish(mp->m_log, mfsi_flags); 596 error = xlog_recover_finish(mp->m_log);
597 else { 597 else {
598 error = 0; 598 error = 0;
599 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY); 599 ASSERT(mp->m_flags & XFS_MOUNT_RDONLY);