Searched refs:bc_ops (Results 1 – 9 of 9) sorted by relevance
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_btree_staging.c | 143 memcpy(nops, cur->bc_ops, sizeof(struct xfs_btree_ops)); in xfs_btree_stage_afakeroot() 152 cur->bc_ops = nops; in xfs_btree_stage_afakeroot() 174 kmem_free((void *)cur->bc_ops); in xfs_btree_commit_afakeroot() 176 cur->bc_ops = ops; in xfs_btree_commit_afakeroot() 224 memcpy(nops, cur->bc_ops, sizeof(struct xfs_btree_ops)); in xfs_btree_stage_ifakeroot() 232 cur->bc_ops = nops; in xfs_btree_stage_ifakeroot() 257 kmem_free((void *)cur->bc_ops); in xfs_btree_commit_ifakeroot() 260 cur->bc_ops = ops; in xfs_btree_commit_ifakeroot() 452 cur->bc_ops->init_rec_from_cur(cur, block_rec); in xfs_btree_bload_leaf() 519 if (level == cur->bc_nlevels - 1 && cur->bc_ops->get_dmaxrecs) in xfs_btree_bload_max_npb() [all …]
|
H A D | xfs_btree.c | 150 cur->bc_ops->get_maxrecs(cur, level)) in __xfs_btree_check_lblock() 216 cur->bc_ops->get_maxrecs(cur, level)) in __xfs_btree_check_sblock() 413 error = cur->bc_ops->free_block(cur, bp); in xfs_btree_free_block() 454 kmem_free(cur->bc_ops); in xfs_btree_del_cursor() 482 new = cur->bc_ops->dup_cursor(cur); in xfs_btree_dup_cursor() 500 cur->bc_ops->buf_ops); in xfs_btree_dup_cursor() 620 (n - 1) * cur->bc_ops->rec_len; in xfs_btree_rec_offset() 632 (n - 1) * cur->bc_ops->key_len; in xfs_btree_key_offset() 644 (n - 1) * cur->bc_ops->key_len + (cur->bc_ops->key_len / 2); in xfs_btree_high_key_offset() 657 cur->bc_ops->get_maxrecs(cur, level) * cur->bc_ops->key_len + in xfs_btree_ptr_offset() [all …]
|
H A D | xfs_btree.h | 272 const struct xfs_btree_ops *bc_ops; member 603 return cur->bc_ops->diff_two_keys(cur, key1, key2, NULL) < 0; in xfs_btree_keycmp_lt() 612 return cur->bc_ops->diff_two_keys(cur, key1, key2, NULL) > 0; in xfs_btree_keycmp_gt() 621 return cur->bc_ops->diff_two_keys(cur, key1, key2, NULL) == 0; in xfs_btree_keycmp_eq() 659 return cur->bc_ops->diff_two_keys(cur, key1, key2, mask) < 0; in xfs_btree_masked_keycmp_lt() 669 return cur->bc_ops->diff_two_keys(cur, key1, key2, mask) > 0; in xfs_btree_masked_keycmp_gt()
|
H A D | xfs_alloc_btree.c | 509 cur->bc_ops = &xfs_cntbt_ops; in xfs_allocbt_init_common() 513 cur->bc_ops = &xfs_bnobt_ops; in xfs_allocbt_init_common()
|
H A D | xfs_ialloc_btree.c | 461 cur->bc_ops = &xfs_inobt_ops; in xfs_inobt_init_common() 464 cur->bc_ops = &xfs_finobt_ops; in xfs_inobt_init_common()
|
H A D | xfs_refcount_btree.c | 357 cur->bc_ops = &xfs_refcountbt_ops; in xfs_refcountbt_init_common()
|
H A D | xfs_rmap_btree.c | 514 cur->bc_ops = &xfs_rmapbt_ops; in xfs_rmapbt_init_common()
|
H A D | xfs_bmap_btree.c | 565 cur->bc_ops = &xfs_bmbt_ops; in xfs_bmbt_init_cursor()
|
/openbmc/linux/fs/xfs/scrub/ |
H A D | btree.c | 156 !cur->bc_ops->recs_inorder(cur, &bs->lastrec, rec)) in xchk_btree_rec() 158 memcpy(&bs->lastrec, rec, cur->bc_ops->rec_len); in xchk_btree_rec() 165 cur->bc_ops->init_key_from_rec(&key, rec); in xchk_btree_rec() 175 cur->bc_ops->init_high_key_from_rec(&hkey, rec); in xchk_btree_rec() 204 !cur->bc_ops->keys_inorder(cur, &bs->lastkey[level - 1].key, key)) in xchk_btree_key() 206 memcpy(&bs->lastkey[level - 1].key, key, cur->bc_ops->key_len); in xchk_btree_key() 506 if (numrecs >= cur->bc_ops->get_minrecs(cur, level)) in xchk_btree_check_minrecs() 523 root_maxrecs = cur->bc_ops->get_dmaxrecs(cur, root_level); in xchk_btree_check_minrecs() 736 cur->bc_ops->init_ptr_from_cur(cur, &ptr); in xchk_btree()
|