/titanic_41/usr/src/uts/common/fs/zfs/ |
H A D | dmu_object.c | 36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_alloc() argument 86 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_alloc() 97 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_claim() argument 108 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_claim() 117 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_reclaim() argument 130 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); in dmu_object_reclaim()
|
H A D | space_map.c | 467 int bonuslen; in space_map_alloc() local 471 bonuslen = sizeof (space_map_phys_t); in space_map_alloc() 472 ASSERT3U(bonuslen, <=, dmu_bonus_max()); in space_map_alloc() 474 bonuslen = SPACE_MAP_SIZE_V0; in space_map_alloc() 479 DMU_OT_SPACE_MAP_HEADER, bonuslen, tx); in space_map_alloc()
|
H A D | dnode.c | 536 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dnode_allocate() argument 560 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || in dnode_allocate() 561 (bonustype == DMU_OT_SA && bonuslen == 0) || in dnode_allocate() 562 (bonustype != DMU_OT_NONE && bonuslen != 0)); in dnode_allocate() 564 ASSERT3U(bonuslen, <=, DN_MAX_BONUSLEN); in dnode_allocate() 594 ((DN_MAX_BONUSLEN - bonuslen) >> SPA_BLKPTRSHIFT); in dnode_allocate() 596 dn->dn_bonuslen = bonuslen; in dnode_allocate() 619 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dnode_reallocate() argument 629 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || in dnode_reallocate() 630 (bonustype != DMU_OT_NONE && bonuslen != 0) || in dnode_reallocate() [all …]
|
H A D | zap_micro.c | 616 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_claim() argument 619 0, ot, bonustype, bonuslen, tx)); in zap_create_claim() 625 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_claim_norm() argument 629 err = dmu_object_claim(os, obj, ot, 0, bonustype, bonuslen, tx); in zap_create_claim_norm() 638 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create() argument 640 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx)); in zap_create() 645 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_norm() argument 647 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_norm() 656 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_flags() argument 658 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_flags()
|
H A D | zfs_znode.c | 777 int bonuslen; in zfs_mknode() local 797 bonuslen = (obj_type == DMU_OT_SA) ? in zfs_mknode() 813 obj_type, bonuslen, tx)); in zfs_mknode() 817 obj_type, bonuslen, tx); in zfs_mknode() 823 obj_type, bonuslen, tx)); in zfs_mknode() 827 obj_type, bonuslen, tx); in zfs_mknode()
|
H A D | dbuf.c | 652 int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen); in dbuf_read_impl() local 654 ASSERT3U(bonuslen, <=, db->db.db_size); in dbuf_read_impl() 657 if (bonuslen < DN_MAX_BONUSLEN) in dbuf_read_impl() 659 if (bonuslen) in dbuf_read_impl() 660 bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen); in dbuf_read_impl()
|
/titanic_41/usr/src/uts/common/fs/zfs/sys/ |
H A D | zap.h | 134 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 136 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 139 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 154 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 157 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
|
H A D | dnode.h | 288 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx); 290 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx);
|
H A D | dmu.h | 342 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *txp);
|