Searched refs:dn_phys (Results 1 – 8 of 8) sorted by relevance
/titanic_44/usr/src/uts/common/fs/zfs/ |
H A D | dnode_sync.c | 44 int nblkptr = dn->dn_phys->dn_nblkptr; in dnode_increase_indirection() 45 int old_toplvl = dn->dn_phys->dn_nlevels - 1; in dnode_increase_indirection() 52 ASSERT(dn->dn_phys->dn_type != DMU_OT_NONE); in dnode_increase_indirection() 54 ASSERT(new_level > 1 && dn->dn_phys->dn_nlevels > 0); in dnode_increase_indirection() 56 db = dbuf_hold_level(dn, dn->dn_phys->dn_nlevels, 0, FTAG); in dnode_increase_indirection() 59 dn->dn_phys->dn_nlevels = new_level; in dnode_increase_indirection() 61 dn->dn_object, dn->dn_phys->dn_nlevels); in dnode_increase_indirection() 65 if (!BP_IS_HOLE(&dn->dn_phys->dn_blkptr[i])) in dnode_increase_indirection() 73 bcopy(dn->dn_phys->dn_blkptr, db->db.db_data, in dnode_increase_indirection() 93 &dn->dn_phys->dn_blkptr[child->db_blkid]); in dnode_increase_indirection() [all …]
|
H A D | dnode.c | 234 ASSERT(dn->dn_phys); in dnode_verify() 238 ASSERT(DMU_OT_IS_VALID(dn->dn_phys->dn_type)); in dnode_verify() 247 if (dn->dn_phys->dn_type != DMU_OT_NONE || dn->dn_allocated_txg != 0) { in dnode_verify() 270 if (dn->dn_phys->dn_type != DMU_OT_NONE) in dnode_verify() 271 ASSERT3U(dn->dn_phys->dn_nlevels, <=, dn->dn_nlevels); in dnode_verify() 274 ASSERT3P(dn->dn_phys, ==, in dnode_verify() 396 1<<(sizeof (dn->dn_phys->dn_datablkszsec) * 8)); in dnode_setdblksz() 419 dn->dn_phys = dnp; in dnode_create() 442 ASSERT(DMU_OT_IS_VALID(dn->dn_phys->dn_type)); in dnode_create() 556 ASSERT(bcmp(dn->dn_phys, &dnode_phys_zero, sizeof (dnode_phys_t)) == 0); in dnode_allocate() [all …]
|
H A D | dbuf.c | 476 &dn->dn_phys->dn_blkptr[db->db_blkid]); in dbuf_verify() 652 int bonuslen = MIN(dn->dn_bonuslen, dn->dn_phys->dn_bonuslen); in dbuf_read_impl() 660 bcopy(DN_BONUS(dn->dn_phys), db->db.db_data, bonuslen); in dbuf_read_impl() 1233 ASSERT((dn->dn_phys->dn_nlevels == 0 && db->db_level == 0) || in dbuf_dirty() 1234 dn->dn_phys->dn_nlevels > db->db_level || in dbuf_dirty() 1782 (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) in dbuf_findbp() 1783 *bpp = &dn->dn_phys->dn_spill; in dbuf_findbp() 1792 if (dn->dn_phys->dn_nlevels == 0) in dbuf_findbp() 1795 nlevels = dn->dn_phys->dn_nlevels; in dbuf_findbp() 1802 (blkid > (dn->dn_phys->dn_maxblkid >> (level * epbs)))) { in dbuf_findbp() [all …]
|
H A D | dmu_objset.c | 1255 ASSERT(dn->dn_phys->dn_type == DMU_OT_NONE || in dmu_objset_do_userquota_updates() 1256 dn->dn_phys->dn_flags & in dmu_objset_do_userquota_updates() 1284 do_userquota_update(os, DN_USED_BYTES(dn->dn_phys), in dmu_objset_do_userquota_updates() 1285 dn->dn_phys->dn_flags, dn->dn_newuid, in dmu_objset_do_userquota_updates() 1369 data = DN_BONUS(dn->dn_phys); in dmu_objset_userquota_get_ids() 1376 data = DN_BONUS(dn->dn_phys); in dmu_objset_userquota_get_ids()
|
H A D | dmu_tx.c | 473 blkptr_t *bp = dn->dn_phys->dn_blkptr; in dmu_tx_count_free() 761 bp = &dn->dn_phys->dn_blkptr[0]; in dmu_tx_hold_zap() 1557 if (!(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) { in dmu_tx_hold_spill() 1562 bp = &dn->dn_phys->dn_spill; in dmu_tx_hold_spill()
|
H A D | dmu.c | 1893 dnp = dn->dn_phys; in dmu_object_info_from_dnode() 1964 *nblk512 = ((DN_USED_BYTES(dn->dn_phys) + SPA_MINBLOCKSIZE/2) >> in dmu_object_size_from_db()
|
/titanic_44/usr/src/uts/common/fs/zfs/sys/ |
H A D | dnode.h | 162 dnode_phys_t *dn_phys; /* pointer into dn->dn_dbuf->db.db_data */ member
|
/titanic_44/usr/src/cmd/zdb/ |
H A D | zdb.c | 1284 dnode_phys_t *dnp = dn->dn_phys; in dump_indirect() 1896 (dn->dn_phys->dn_flags & DNODE_FLAG_USED_BYTES) ? in dump_object() 1898 (dn->dn_phys->dn_flags & DNODE_FLAG_USERUSED_ACCOUNTED) ? in dump_object() 1900 (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR) ? in dump_object() 1903 (longlong_t)dn->dn_phys->dn_maxblkid); in dump_object()
|