diff options
author | Christoph Hellwig <hch@infradead.org> | 2008-10-30 01:55:34 -0400 |
---|---|---|
committer | Lachlan McIlroy <lachlan@sgi.com> | 2008-10-30 01:55:34 -0400 |
commit | 65f1eaeac0efc968797f3ac955b85ba3f5d4f9c8 (patch) | |
tree | 149c010e3a1d4abb60021ed39d3972459f63d13d /fs/xfs/xfs_ialloc_btree.c | |
parent | ce5e42db421a41b1ad0cfd68c6058566b963e14b (diff) |
[XFS] add helpers for addressing entities inside a btree block
Add new helpers in xfs_btree.c to find the record, key and block pointer
entries inside a btree block. To implement this genericly the
->get_maxrecs methods and two new xfs_btree_ops entries for the key and
record sizes are used. Also add a big comment describing how the
addressing inside a btree block works.
Note that these helpers are unused until users are introduced in the next
patches and this patch will thus cause some harmless compiler warnings.
SGI-PV: 985583
SGI-Modid: xfs-linux-melb:xfs-kern:32189a
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_ialloc_btree.c')
-rw-r--r-- | fs/xfs/xfs_ialloc_btree.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/xfs/xfs_ialloc_btree.c b/fs/xfs/xfs_ialloc_btree.c index 18867f1aacac..fc6db94492dc 100644 --- a/fs/xfs/xfs_ialloc_btree.c +++ b/fs/xfs/xfs_ialloc_btree.c | |||
@@ -2160,6 +2160,9 @@ xfs_inobt_trace_record( | |||
2160 | #endif /* XFS_BTREE_TRACE */ | 2160 | #endif /* XFS_BTREE_TRACE */ |
2161 | 2161 | ||
2162 | static const struct xfs_btree_ops xfs_inobt_ops = { | 2162 | static const struct xfs_btree_ops xfs_inobt_ops = { |
2163 | .rec_len = sizeof(xfs_inobt_rec_t), | ||
2164 | .key_len = sizeof(xfs_inobt_key_t), | ||
2165 | |||
2163 | .dup_cursor = xfs_inobt_dup_cursor, | 2166 | .dup_cursor = xfs_inobt_dup_cursor, |
2164 | .get_maxrecs = xfs_inobt_get_maxrecs, | 2167 | .get_maxrecs = xfs_inobt_get_maxrecs, |
2165 | 2168 | ||