diff options
author | Eric Sandeen <sandeen@sgi.com> | 2006-01-10 23:34:19 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-01-10 23:34:19 -0500 |
commit | 65be60541909c7bf8c384cde3502c18cc362939e (patch) | |
tree | 6a8edc80147e7e444c74eb15d122dfb325013b49 /fs/xfs/xfs_log.c | |
parent | 0d14824c0774d050cb4232e1e470e5fc9e32e587 (diff) |
[XFS] remove unused "readonly" arg from xlog_find_tail and xlog_recover
SGI-PV: 946611
SGI-Modid: xfs-linux-melb:xfs-kern:203307a
Signed-off-by: Eric Sandeen <sandeen@sgi.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_log.c')
-rw-r--r-- | fs/xfs/xfs_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c index 29af51275ca9..ecb1067494f0 100644 --- a/fs/xfs/xfs_log.c +++ b/fs/xfs/xfs_log.c | |||
@@ -428,7 +428,7 @@ xfs_log_mount(xfs_mount_t *mp, | |||
428 | if (readonly) | 428 | if (readonly) |
429 | vfsp->vfs_flag &= ~VFS_RDONLY; | 429 | vfsp->vfs_flag &= ~VFS_RDONLY; |
430 | 430 | ||
431 | error = xlog_recover(mp->m_log, readonly); | 431 | error = xlog_recover(mp->m_log); |
432 | 432 | ||
433 | if (readonly) | 433 | if (readonly) |
434 | vfsp->vfs_flag |= VFS_RDONLY; | 434 | vfsp->vfs_flag |= VFS_RDONLY; |