diff options
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 351d71117f16..966d3f97458c 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c | |||
@@ -168,7 +168,7 @@ xlog_bread_noalign( | |||
168 | XFS_BUF_SET_TARGET(bp, log->l_mp->m_logdev_targp); | 168 | XFS_BUF_SET_TARGET(bp, log->l_mp->m_logdev_targp); |
169 | 169 | ||
170 | xfsbdstrat(log->l_mp, bp); | 170 | xfsbdstrat(log->l_mp, bp); |
171 | error = xfs_iowait(bp); | 171 | error = xfs_buf_iowait(bp); |
172 | if (error) | 172 | if (error) |
173 | xfs_ioerror_alert("xlog_bread", log->l_mp, | 173 | xfs_ioerror_alert("xlog_bread", log->l_mp, |
174 | bp, XFS_BUF_ADDR(bp)); | 174 | bp, XFS_BUF_ADDR(bp)); |
@@ -328,7 +328,7 @@ xlog_recover_iodone( | |||
328 | SHUTDOWN_META_IO_ERROR); | 328 | SHUTDOWN_META_IO_ERROR); |
329 | } | 329 | } |
330 | XFS_BUF_CLR_IODONE_FUNC(bp); | 330 | XFS_BUF_CLR_IODONE_FUNC(bp); |
331 | xfs_biodone(bp); | 331 | xfs_buf_ioend(bp, 0); |
332 | } | 332 | } |
333 | 333 | ||
334 | /* | 334 | /* |
@@ -3816,7 +3816,7 @@ xlog_do_recover( | |||
3816 | XFS_BUF_READ(bp); | 3816 | XFS_BUF_READ(bp); |
3817 | XFS_BUF_UNASYNC(bp); | 3817 | XFS_BUF_UNASYNC(bp); |
3818 | xfsbdstrat(log->l_mp, bp); | 3818 | xfsbdstrat(log->l_mp, bp); |
3819 | error = xfs_iowait(bp); | 3819 | error = xfs_buf_iowait(bp); |
3820 | if (error) { | 3820 | if (error) { |
3821 | xfs_ioerror_alert("xlog_do_recover", | 3821 | xfs_ioerror_alert("xlog_do_recover", |
3822 | log->l_mp, bp, XFS_BUF_ADDR(bp)); | 3822 | log->l_mp, bp, XFS_BUF_ADDR(bp)); |