diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-08-13 02:49:32 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-08-13 02:49:32 -0400 |
commit | 4249023a5d14f28d4e68ba15d24d25c0e5be71a6 (patch) | |
tree | 30d3d7992dc05879835bf96a5d7a6ab437d5a54b /fs/xfs/xfs_log.c | |
parent | 77508ec8e6ed72c9ba8ca74248a7aabd664e3f57 (diff) |
[XFS] cleanup xfs_mountfs
Remove all the useless flags and code keyed off it in xfs_mountfs.
SGI-PV: 981498
SGI-Modid: xfs-linux-melb:xfs-kern:31831a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 4 |
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 | */ |
590 | int | 590 | int |
591 | xfs_log_mount_finish(xfs_mount_t *mp, int mfsi_flags) | 591 | xfs_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); |