xfs: remove XFS_bflush

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
This commit is contained in:
Christoph Hellwig 2011-10-10 16:52:52 +00:00 committed by Alex Elder
parent 02b102df15
commit a9add83e5a
6 changed files with 6 additions and 8 deletions

View file

@ -294,6 +294,4 @@ extern int xfs_flush_buftarg(xfs_buftarg_t *, int);
#define xfs_getsize_buftarg(buftarg) block_size((buftarg)->bt_bdev) #define xfs_getsize_buftarg(buftarg) block_size((buftarg)->bt_bdev)
#define xfs_readonly_buftarg(buftarg) bdev_read_only((buftarg)->bt_bdev) #define xfs_readonly_buftarg(buftarg) bdev_read_only((buftarg)->bt_bdev)
#define XFS_bflush(buftarg) xfs_flush_buftarg(buftarg, 1)
#endif /* __XFS_BUF_H__ */ #endif /* __XFS_BUF_H__ */

View file

@ -3654,7 +3654,7 @@ xlog_do_recover(
return error; return error;
} }
XFS_bflush(log->l_mp->m_ddev_targp); xfs_flush_buftarg(log->l_mp->m_ddev_targp, 1);
/* /*
* If IO errors happened during recovery, bail out. * If IO errors happened during recovery, bail out.

View file

@ -1481,7 +1481,7 @@ xfs_unmountfs(
* state as much as possible. * state as much as possible.
*/ */
xfs_reclaim_inodes(mp, 0); xfs_reclaim_inodes(mp, 0);
XFS_bflush(mp->m_ddev_targp); xfs_flush_buftarg(mp->m_ddev_targp, 1);
xfs_reclaim_inodes(mp, SYNC_WAIT); xfs_reclaim_inodes(mp, SYNC_WAIT);
xfs_qm_unmount(mp); xfs_qm_unmount(mp);

View file

@ -1681,7 +1681,7 @@ xfs_qm_quotacheck(
* quotacheck'd stamp on the superblock. So, here we do a synchronous * quotacheck'd stamp on the superblock. So, here we do a synchronous
* flush. * flush.
*/ */
XFS_bflush(mp->m_ddev_targp); xfs_flush_buftarg(mp->m_ddev_targp, 1);
/* /*
* If one type of quotas is off, then it will lose its * If one type of quotas is off, then it will lose its

View file

@ -1015,7 +1015,7 @@ xfs_fs_put_super(
*/ */
xfs_filestream_unmount(mp); xfs_filestream_unmount(mp);
XFS_bflush(mp->m_ddev_targp); xfs_flush_buftarg(mp->m_ddev_targp, 1);
xfs_unmountfs(mp); xfs_unmountfs(mp);
xfs_freesb(mp); xfs_freesb(mp);
@ -1439,7 +1439,7 @@ xfs_fs_fill_super(
*/ */
xfs_filestream_unmount(mp); xfs_filestream_unmount(mp);
XFS_bflush(mp->m_ddev_targp); xfs_flush_buftarg(mp->m_ddev_targp, 1);
xfs_unmountfs(mp); xfs_unmountfs(mp);
goto out_free_sb; goto out_free_sb;

View file

@ -377,7 +377,7 @@ xfs_quiesce_data(
/* flush data-only devices */ /* flush data-only devices */
if (mp->m_rtdev_targp) if (mp->m_rtdev_targp)
XFS_bflush(mp->m_rtdev_targp); xfs_flush_buftarg(mp->m_rtdev_targp, 1);
return error ? error : error2; return error ? error : error2;
} }