Home
last modified time | relevance | path

Searched refs:dnode_phys_t (Results 1 – 20 of 20) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/sys/
H A Ddmu_objset.h76 dnode_phys_t os_meta_dnode;
82 char os_pad0[OBJSET_PHYS_SIZE_V2 - sizeof (dnode_phys_t)*3 -
85 dnode_phys_t os_userused_dnode;
86 dnode_phys_t os_groupused_dnode;
87 dnode_phys_t os_projectused_dnode;
89 sizeof (dnode_phys_t)];
H A Ddnode.h269 } dnode_phys_t; typedef
289 dnode_phys_t *dn_phys; /* pointer into dn->dn_dbuf->db.db_data */
412 void dnode_special_open(struct objset *dd, dnode_phys_t *dnp,
437 void dnode_byteswap(dnode_phys_t *dnp);
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddmu_diff.c89 report_dnode(dmu_diffarg_t *da, uint64_t object, dnode_phys_t *dnp) in report_dnode()
114 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in diff_cb()
135 dnode_phys_t *blk; in diff_cb()
H A Ddmu_traverse.c71 const dnode_phys_t *dnp, uint64_t objset, uint64_t object);
72 static void prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *,
155 resume_skip_check(traverse_data_t *td, const dnode_phys_t *dnp, in resume_skip_check()
219 traverse_visitbp(traverse_data_t *td, const dnode_phys_t *dnp, in traverse_visitbp()
337 dnode_phys_t *child_dnp; in traverse_visitbp()
463 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp, in prefetch_dnode_metadata()
481 traverse_dnode(traverse_data_t *td, const blkptr_t *bp, const dnode_phys_t *dnp, in traverse_dnode()
530 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in traverse_prefetcher()
H A Ddnode.c77 static dnode_phys_t dnode_phys_zero __maybe_unused;
306 (dnode_phys_t *)dn->dn_dbuf->db.db_data + in dnode_verify()
315 dnode_byteswap(dnode_phys_t *dnp) in dnode_byteswap()
321 bzero(dnp, sizeof (dnode_phys_t)); in dnode_byteswap()
372 ASSERT3U(sizeof (dnode_phys_t), ==, (1<<DNODE_SHIFT)); in dnode_buf_byteswap()
373 ASSERT((size & (sizeof (dnode_phys_t)-1)) == 0); in dnode_buf_byteswap()
376 dnode_phys_t *dnp = (void *)(((char *)vbuf) + i); in dnode_buf_byteswap()
1289 dnode_phys_t *dn_block; in dnode_hold_impl()
1345 blk = dbuf_whichblock(mdn, 0, object * sizeof (dnode_phys_t)); in dnode_hold_impl()
1370 dn_block = (dnode_phys_t *)db->db.db_data; in dnode_hold_impl()
[all …]
H A Ddsl_scan.c1541 dnode_phys_t tmp_dnp; in dsl_scan_check_prefetch_resume()
1542 dnode_phys_t *dnp = (spc->spc_root) ? NULL : &tmp_dnp; in dsl_scan_check_prefetch_resume()
1603 dsl_scan_prefetch_dnode(dsl_scan_t *scn, dnode_phys_t *dnp, in dsl_scan_prefetch_dnode()
1663 dnode_phys_t *cdnp; in dsl_scan_prefetch_cb()
1763 dsl_scan_check_resume(dsl_scan_t *scn, const dnode_phys_t *dnp, in dsl_scan_check_resume()
1799 dnode_phys_t *dnp, dsl_dataset_t *ds, dsl_scan_t *scn,
1803 dnode_phys_t *dnp, uint64_t object, dmu_tx_t *tx);
1811 dnode_phys_t *dnp, const blkptr_t *bp, in dsl_scan_recurse()
1845 dnode_phys_t *cdnp; in dsl_scan_recurse()
1912 dmu_objset_type_t ostype, dnode_phys_t *dnp, in dsl_scan_visitdnode()
[all …]
H A Ddnode_sync.c599 bzero(dn->dn_phys, sizeof (dnode_phys_t) * dn->dn_num_slots); in dnode_sync_free()
627 dnode_phys_t *dnp = dn->dn_phys; in dnode_sync()
630 static const dnode_phys_t zerodn __maybe_unused = { 0 }; in dnode_sync()
H A Dbptree.c153 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in bptree_visit_cb()
H A Ddmu_redact.c332 sizeof (dnode_phys_t)); in redact_cb()
336 sizeof (dnode_phys_t))) - 1; in redact_cb()
H A Ddmu_send.c180 dnode_phys_t *dnp;
230 size_t size = sizeof (dnode_phys_t) * in range_free()
697 dnode_phys_t *dnp) in dump_dnode()
H A Ddmu.c673 object * sizeof (dnode_phys_t)); in dmu_prefetch()
2129 dnode_phys_t *dnp = dn->dn_phys; in __dmu_object_info_from_dnode()
H A Ddsl_destroy.c710 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in kill_blkptr()
H A Ddbuf.c4409 dnode_phys_t *dnp = in dbuf_write_ready()
4756 dnode_phys_t *dnp = db->db.db_data; in dbuf_remap()
H A Ddmu_objset.c1537 dnode_phys_t *dnp = &os->os_phys->os_meta_dnode; in dmu_objset_write_ready()
H A Dzio.c4956 zbookmark_subtree_completed(const dnode_phys_t *dnp, in zbookmark_subtree_completed()
H A Dspa.c2222 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in spa_load_verify_cb()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzio_crypt.c818 dnode_phys_t *dnp, *sdnp, *ddnp; in zio_crypt_copy_dnode_bonus()
822 sdnp = (dnode_phys_t *)src; in zio_crypt_copy_dnode_bonus()
823 ddnp = (dnode_phys_t *)dst; in zio_crypt_copy_dnode_bonus()
965 boolean_t should_bswap, dnode_phys_t *dnp) in zio_crypt_do_dnode_hmac_updates()
968 dnode_phys_t *adnp; in zio_crypt_do_dnode_hmac_updates()
974 adnp = (dnode_phys_t *)tmp_dncore; in zio_crypt_do_dnode_hmac_updates()
1418 dnode_phys_t *dnp, *adnp, *sdnp, *ddnp; in zio_crypt_init_uios_dnode()
1433 sdnp = (dnode_phys_t *)src; in zio_crypt_init_uios_dnode()
1434 ddnp = (dnode_phys_t *)dst; in zio_crypt_init_uios_dnode()
1491 crypt_len = offsetof(dnode_phys_t, dn_blkptr); in zio_crypt_init_uios_dnode()
[all …]
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzio_crypt.c884 dnode_phys_t *dnp, *sdnp, *ddnp; in zio_crypt_copy_dnode_bonus()
888 sdnp = (dnode_phys_t *)src; in zio_crypt_copy_dnode_bonus()
889 ddnp = (dnode_phys_t *)dst; in zio_crypt_copy_dnode_bonus()
1045 boolean_t should_bswap, dnode_phys_t *dnp) in zio_crypt_do_dnode_hmac_updates()
1048 dnode_phys_t *adnp; in zio_crypt_do_dnode_hmac_updates()
1058 adnp = (dnode_phys_t *)tmp_dncore; in zio_crypt_do_dnode_hmac_updates()
1593 dnode_phys_t *dnp, *adnp, *sdnp, *ddnp; in zio_crypt_init_uios_dnode()
1608 sdnp = (dnode_phys_t *)src; in zio_crypt_init_uios_dnode()
1609 ddnp = (dnode_phys_t *)dst; in zio_crypt_init_uios_dnode()
1677 crypt_len = offsetof(dnode_phys_t, dn_blkptr); in zio_crypt_init_uios_dnode()
[all …]
/f-stack/freebsd/contrib/openzfs/cmd/zinject/
H A Dtranslate.c205 record->zi_start = record->zi_object * sizeof (dnode_phys_t); in initialize_range()
206 record->zi_end = record->zi_start + sizeof (dnode_phys_t); in initialize_range()
/f-stack/freebsd/contrib/openzfs/cmd/zdb/
H A Dzdb.c2144 blkid2offset(const dnode_phys_t *dnp, const blkptr_t *bp, in blkid2offset()
2285 const dnode_phys_t *dnp) in print_indirect()
2314 visit_indirect(spa_t *spa, const dnode_phys_t *dnp, in visit_indirect()
2364 dnode_phys_t *dnp = dn->dn_phys; in dump_indirect()
5242 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in zdb_blkptr_cb()
6510 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in zdb_ddt_add_cb()