| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| HD | dmu_object.c | 36 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_alloc() argument 80 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_alloc() 91 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_claim() argument 102 dnode_allocate(dn, ot, blocksize, 0, bonustype, bonuslen, tx); in dmu_object_claim() 111 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dmu_object_reclaim() argument 124 dnode_reallocate(dn, ot, blocksize, bonustype, bonuslen, tx); in dmu_object_reclaim()
|
| HD | space_map.c | 471 int bonuslen; in space_map_alloc() local 475 bonuslen = sizeof (space_map_phys_t); in space_map_alloc() 476 ASSERT3U(bonuslen, <=, dmu_bonus_max()); in space_map_alloc() 478 bonuslen = SPACE_MAP_SIZE_V0; in space_map_alloc() 483 DMU_OT_SPACE_MAP_HEADER, bonuslen, tx); in space_map_alloc()
|
| HD | dnode.c | 539 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dnode_allocate() argument 563 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || in dnode_allocate() 564 (bonustype == DMU_OT_SA && bonuslen == 0) || in dnode_allocate() 565 (bonustype != DMU_OT_NONE && bonuslen != 0)); in dnode_allocate() 567 ASSERT3U(bonuslen, <=, DN_MAX_BONUSLEN); in dnode_allocate() 597 ((DN_MAX_BONUSLEN - bonuslen) >> SPA_BLKPTRSHIFT); in dnode_allocate() 599 dn->dn_bonuslen = bonuslen; in dnode_allocate() 622 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in dnode_reallocate() argument 632 ASSERT((bonustype == DMU_OT_NONE && bonuslen == 0) || in dnode_reallocate() 633 (bonustype != DMU_OT_NONE && bonuslen != 0) || in dnode_reallocate() [all …]
|
| HD | zap_micro.c | 627 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_claim() argument 630 0, ot, bonustype, bonuslen, tx)); in zap_create_claim() 636 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_claim_norm() argument 640 err = dmu_object_claim(os, obj, ot, 0, bonustype, bonuslen, tx); in zap_create_claim_norm() 649 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create() argument 651 return (zap_create_norm(os, 0, ot, bonustype, bonuslen, tx)); in zap_create() 656 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_norm() argument 658 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_norm() 667 dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) in zap_create_flags() argument 669 uint64_t obj = dmu_object_alloc(os, ot, 0, bonustype, bonuslen, tx); in zap_create_flags()
|
| HD | zfs_znode.c | 782 int bonuslen; in zfs_mknode() local 802 bonuslen = (obj_type == DMU_OT_SA) ? in zfs_mknode() 818 obj_type, bonuslen, tx)); in zfs_mknode() 822 obj_type, bonuslen, tx); in zfs_mknode() 828 obj_type, bonuslen, tx)); in zfs_mknode() 832 obj_type, bonuslen, tx); in zfs_mknode()
|
| HD | dbuf.c | 637 int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen); in dbuf_read_impl() local 639 ASSERT3U(bonuslen, <=, db->db.db_size); in dbuf_read_impl() 642 if (bonuslen < DN_MAX_BONUSLEN) in dbuf_read_impl() 644 if (bonuslen) in dbuf_read_impl() 645 bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen); in dbuf_read_impl()
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| HD | 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);
|
| HD | 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);
|
| HD | dmu.h | 346 int blocksize, dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *txp);
|