aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/libxfs/xfs_btree.h
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2016-08-03 11:03:38 +1000
committerDave Chinner <david@fromorbit.com>2016-08-03 11:03:38 +1000
commit70b2265935544c2ba64619172fd757bd0ca91800 (patch)
tree630e69695904ef6a9d5476f8f74291b4ec64ed0c /fs/xfs/libxfs/xfs_btree.h
parentxfs: during btree split, save new block key & ptr for future insertion (diff)
downloadlinux-dev-70b2265935544c2ba64619172fd757bd0ca91800.tar.xz
linux-dev-70b2265935544c2ba64619172fd757bd0ca91800.zip
xfs: add function pointers for get/update keys to the btree
Add some function pointers to bc_ops to get the btree keys for leaf and node blocks, and to update parent keys of a block. Convert the _btree_updkey calls to use our new pointer, and modify the tree shape changing code to call the appropriate get_*_keys pointer instead of _btree_copy_keys because the overlapping btree has to calculate high key values. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_btree.h')
-rw-r--r--fs/xfs/libxfs/xfs_btree.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/fs/xfs/libxfs/xfs_btree.h b/fs/xfs/libxfs/xfs_btree.h
index b4f3035ae05e..e097e60400d8 100644
--- a/fs/xfs/libxfs/xfs_btree.h
+++ b/fs/xfs/libxfs/xfs_btree.h
@@ -180,6 +180,19 @@ struct xfs_btree_ops {
union xfs_btree_rec *r1,
union xfs_btree_rec *r2);
#endif
+
+ /* derive the low & high keys from the records in a leaf block */
+ void (*get_leaf_keys)(struct xfs_btree_cur *cur,
+ struct xfs_btree_block *block,
+ union xfs_btree_key *key);
+
+ /* derive the low & high keys from the keys in a node block */
+ void (*get_node_keys)(struct xfs_btree_cur *cur,
+ struct xfs_btree_block *block,
+ union xfs_btree_key *key);
+
+ /* update the parent keys of given btree level */
+ int (*update_keys)(struct xfs_btree_cur *cur, int level);
};
/*
@@ -475,4 +488,10 @@ bool xfs_btree_sblock_verify(struct xfs_buf *bp, unsigned int max_recs);
uint xfs_btree_compute_maxlevels(struct xfs_mount *mp, uint *limits,
unsigned long len);
+void xfs_btree_get_leaf_keys(struct xfs_btree_cur *cur,
+ struct xfs_btree_block *block, union xfs_btree_key *key);
+void xfs_btree_get_node_keys(struct xfs_btree_cur *cur,
+ struct xfs_btree_block *block, union xfs_btree_key *key);
+int xfs_btree_update_keys(struct xfs_btree_cur *cur, int level);
+
#endif /* __XFS_BTREE_H__ */