| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| dmu_object.c | 36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 97 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); 117 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx);
|
| space_map.c | 470 int bonuslen; local 474 bonuslen = sizeof (space_map_phys_t); 475 ASSERT3U(bonuslen, <=, dmu_bonus_max()); 477 bonuslen = SPACE_MAP_SIZE_V0; 482 DMU_OT_SPACE_MAP_HEADER, bonuslen, tx);
|
| dnode.c | 540 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 564 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 565 (bonustype == DMU_OT_SA && bonuslen == 0) || 566 (bonustype != DMU_OT_NONE && bonuslen != 0)); 568 ASSERT3U(bonuslen, <=, DN_MAX_BONUSLEN); 598 ((DN_MAX_BONUSLEN - bonuslen) >> SPA_BLKPTRSHIFT); 600 dn->dn_bonuslen = bonuslen; 623 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 633 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || 634 (bonustype != DMU_OT_NONE && bonuslen != 0) | [all...] |
| zap_micro.c | 681 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 684 0, ot, bonustype, bonuslen, tx)); 690 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 694 err = dmu_object_claim(os, obj, ot, 0, bonustype, bonuslen, tx); 703 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 705 return (zap_create_norm(os, 0, ot, 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, tx); 721 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) 723 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx) [all...] |
| zfs_znode.c | 803 * bonuslen - length of bonus buffer 940 int bonuslen; local 960 bonuslen = (obj_type == DMU_OT_SA) ? 976 obj_type, bonuslen, tx)); 980 obj_type, bonuslen, tx); 986 obj_type, bonuslen, tx)); 990 obj_type, bonuslen, tx);
|
| dbuf.c | 952 int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen); local 954 ASSERT3U(bonuslen, <=, db->db.db_size); 957 if (bonuslen < DN_MAX_BONUSLEN) 959 if (bonuslen) 960 bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen); local
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| zap.h | 135 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 137 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 140 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 155 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 158 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
|
| dnode.h | 291 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 293 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
|
| dmu.h | 350 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *txp);
|