diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-10-30 01:54:22 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 01:54:22 -0400 |
commit | 8186e517fab1854554c48955cdbcbb6710e7baef (patch) | |
tree | c948ac3cc49516c256ed9ab9355eb49c9f7c2a43 /fs/xfs/xfs_bmap_btree.c | |
parent | de227dd9604934d2a6d33cd332d1be431719c93e (diff) |
[XFS] make btree root in inode support generic
The bmap btree is rooted in the inode and not in a disk block. Make the
support for this feature more generic by adding a btree flag to for this
feature instead of relying on the XFS_BTNUM_BMAP btnum check.
Also clean up xfs_btree_get_block where this new flag is used.
Based upon a patch from Dave Chinner.
SGI-PV: 985583
SGI-Modid: xfs-linux-melb:xfs-kern:32180a
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_btree.c')
-rw-r--r-- | fs/xfs/xfs_bmap_btree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_bmap_btree.c b/fs/xfs/xfs_bmap_btree.c index cfbdd00045cf..d9bbed676e0c 100644 --- a/fs/xfs/xfs_bmap_btree.c +++ b/fs/xfs/xfs_bmap_btree.c | |||
@@ -2656,6 +2656,7 @@ xfs_bmbt_init_cursor( | |||
2656 | cur->bc_blocklog = mp->m_sb.sb_blocklog; | 2656 | cur->bc_blocklog = mp->m_sb.sb_blocklog; |
2657 | 2657 | ||
2658 | cur->bc_ops = &xfs_bmbt_ops; | 2658 | cur->bc_ops = &xfs_bmbt_ops; |
2659 | cur->bc_flags = XFS_BTREE_ROOT_IN_INODE; | ||
2659 | 2660 | ||
2660 | cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork); | 2661 | cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork); |
2661 | cur->bc_private.b.ip = ip; | 2662 | cur->bc_private.b.ip = ip; |