diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-10-06 14:41:18 -0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-10-18 16:08:07 -0400 |
commit | 1a1a3e97bad42e92cd2f32e81c396c8ee0bddb28 (patch) | |
tree | 6c8291164698decff609dfda60285a7d94c0a832 /fs/xfs/xfs_log_recover.c | |
parent | 6c77b0ea1bdf85dfd48c20ceb10fd215a95c66e2 (diff) |
xfs: remove xfs_buf wrappers
Stop having two different names for many buffer functions and use
the more descriptive xfs_buf_* names directly.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
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)); |