diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-10-30 01:58:21 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 01:58:21 -0400 |
commit | fd6bcc5b63051392ba709a8fd33173b263669e0a (patch) | |
tree | fe3898818a9c8e09011a98de8d1caa9e98ae2479 /fs/xfs/xfs_bmap.c | |
parent | 8cc938fe4237e50bea4aa557ed53b06de2319d49 (diff) |
[XFS] kill xfs_bmbt_log_block and xfs_bmbt_log_recs
These are equivalent to the xfs_btree_* versions, and the only remaining
caller can be switched to the generic one after they are exported. Also
remove some now dead infrastructure in xfs_bmap_btree.c.
SGI-PV: 985583
SGI-Modid: xfs-linux-melb:xfs-kern:32207a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Signed-off-by: Bill O'Donnell <billodo@sgi.com>
Signed-off-by: David Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_bmap.c')
-rw-r--r-- | fs/xfs/xfs_bmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index 74761ca2c63d..5cceb8d3c162 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c | |||
@@ -3563,8 +3563,8 @@ xfs_bmap_extents_to_btree( | |||
3563 | * Do all this logging at the end so that | 3563 | * Do all this logging at the end so that |
3564 | * the root is at the right level. | 3564 | * the root is at the right level. |
3565 | */ | 3565 | */ |
3566 | xfs_bmbt_log_block(cur, abp, XFS_BB_ALL_BITS); | 3566 | xfs_btree_log_block(cur, abp, XFS_BB_ALL_BITS); |
3567 | xfs_bmbt_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs)); | 3567 | xfs_btree_log_recs(cur, abp, 1, be16_to_cpu(ablock->bb_numrecs)); |
3568 | ASSERT(*curp == NULL); | 3568 | ASSERT(*curp == NULL); |
3569 | *curp = cur; | 3569 | *curp = cur; |
3570 | *logflagsp = XFS_ILOG_CORE | XFS_ILOG_FBROOT(whichfork); | 3570 | *logflagsp = XFS_ILOG_CORE | XFS_ILOG_FBROOT(whichfork); |