/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | dmu_object.c | 36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 95 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 106 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 117 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 126 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 139 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); 35 dmu_object_alloc(objset_t *os, dmu_object_type_t ot, int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 105 dmu_object_claim(objset_t *os, uint64_t object, dmu_object_type_t ot, int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 125 dmu_object_reclaim(objset_t *os, uint64_t object, dmu_object_type_t ot, int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument
|
H A D | space_map.c | 466 int bonuslen; local 470 bonuslen = sizeof (space_map_phys_t); 471 ASSERT3U(bonuslen, <=, dmu_bonus_max()); 473 bonuslen = SPACE_MAP_SIZE_V0; 478 DMU_OT_SPACE_MAP_HEADER, bonuslen, tx);
|
H A D | zfs_znode.c | 755 * bonuslen - length of bonus buffer 774 int bonuslen; local 794 bonuslen = (obj_type == DMU_OT_SA) ? 810 obj_type, bonuslen, tx)); 814 obj_type, bonuslen, tx); 820 obj_type, bonuslen, tx)); 824 obj_type, bonuslen, tx);
|
H A D | dnode.c | 534 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 558 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 559 (bonustype == DMU_OT_SA && bonuslen == 0) || 560 (bonustype != DMU_OT_NONE && bonuslen != 0)); 562 ASSERT3U(bonuslen, <=, DN_MAX_BONUSLEN); 592 ((DN_MAX_BONUSLEN - bonuslen) >> SPA_BLKPTRSHIFT); 594 dn->dn_bonuslen = bonuslen; 617 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 627 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 628 (bonustype != DMU_OT_NONE && bonuslen ! 533 dnode_allocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, int ibs, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 616 dnode_reallocate(dnode_t *dn, dmu_object_type_t ot, int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument [all...] |
H A D | zap_micro.c | 670 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 673 0, ot, bonustype, bonuslen, tx)); 679 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 683 err = dmu_object_claim(os, obj, ot, 0, bonustype, bonuslen, tx); 692 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 694 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx)); 699 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 701 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); 710 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 712 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, t 669 zap_create_claim(objset_t *os, uint64_t obj, dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 677 zap_create_claim_norm(objset_t *os, uint64_t obj, int normflags, dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 691 zap_create(objset_t *os, dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 698 zap_create_norm(objset_t *os, int normflags, dmu_object_type_t ot, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument 708 zap_create_flags(objset_t *os, int normflags, zap_flags_t flags, dmu_object_type_t ot, int leaf_blockshift, int indirect_blockshift, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) argument [all...] |
H A D | dbuf.c | 951 int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen); local 953 ASSERT3U(bonuslen, <=, db->db.db_size); 956 if (bonuslen < DN_MAX_BONUSLEN) 958 if (bonuslen) 959 bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen); local
|