diff options
Diffstat (limited to 'fs/xfs/xfs_btree.h')
-rw-r--r-- | fs/xfs/xfs_btree.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/xfs/xfs_btree.h b/fs/xfs/xfs_btree.h index 593f82b01b6f..f5a4b8ec4cdd 100644 --- a/fs/xfs/xfs_btree.h +++ b/fs/xfs/xfs_btree.h | |||
@@ -503,8 +503,18 @@ xfs_btree_setbuf( | |||
503 | 503 | ||
504 | 504 | ||
505 | /* | 505 | /* |
506 | * Common btree core entry points. | ||
507 | */ | ||
508 | int xfs_btree_increment(struct xfs_btree_cur *, int, int *); | ||
509 | |||
510 | /* | ||
506 | * Helpers. | 511 | * Helpers. |
507 | */ | 512 | */ |
513 | static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block) | ||
514 | { | ||
515 | return be16_to_cpu(block->bb_numrecs); | ||
516 | } | ||
517 | |||
508 | static inline int xfs_btree_get_level(struct xfs_btree_block *block) | 518 | static inline int xfs_btree_get_level(struct xfs_btree_block *block) |
509 | { | 519 | { |
510 | return be16_to_cpu(block->bb_level); | 520 | return be16_to_cpu(block->bb_level); |