Home
last modified time | relevance | path

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

/freebsd-13.1/sys/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,
438 void dnode_byteswap(dnode_phys_t *dnp);
/freebsd-13.1/sys/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()
113 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.c72 const dnode_phys_t *dnp, uint64_t objset, uint64_t object);
73 static void prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *,
156 resume_skip_check(traverse_data_t *td, const dnode_phys_t *dnp, in resume_skip_check()
224 traverse_visitbp(traverse_data_t *td, const dnode_phys_t *dnp, in traverse_visitbp()
373 dnode_phys_t *child_dnp; in traverse_visitbp()
499 prefetch_dnode_metadata(traverse_data_t *td, const dnode_phys_t *dnp, in prefetch_dnode_metadata()
517 traverse_dnode(traverse_data_t *td, const blkptr_t *bp, const dnode_phys_t *dnp, in traverse_dnode()
565 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;
305 (dnode_phys_t *)dn->dn_dbuf->db.db_data + in dnode_verify()
314 dnode_byteswap(dnode_phys_t *dnp) in dnode_byteswap()
320 bzero(dnp, sizeof (dnode_phys_t)); in dnode_byteswap()
371 ASSERT3U(sizeof (dnode_phys_t), ==, (1<<DNODE_SHIFT)); in dnode_buf_byteswap()
372 ASSERT((size & (sizeof (dnode_phys_t)-1)) == 0); in dnode_buf_byteswap()
375 dnode_phys_t *dnp = (void *)(((char *)vbuf) + i); in dnode_buf_byteswap()
1282 dnode_phys_t *dn_block; in dnode_hold_impl()
1338 blk = dbuf_whichblock(mdn, 0, object * sizeof (dnode_phys_t)); in dnode_hold_impl()
1363 dn_block = (dnode_phys_t *)db->db.db_data; in dnode_hold_impl()
[all …]
H A Ddsl_scan.c1544 dnode_phys_t tmp_dnp; in dsl_scan_check_prefetch_resume()
1545 dnode_phys_t *dnp = (spc->spc_root) ? NULL : &tmp_dnp; in dsl_scan_check_prefetch_resume()
1606 dsl_scan_prefetch_dnode(dsl_scan_t *scn, dnode_phys_t *dnp, in dsl_scan_prefetch_dnode()
1667 dnode_phys_t *cdnp; in dsl_scan_prefetch_cb()
1766 dsl_scan_check_resume(dsl_scan_t *scn, const dnode_phys_t *dnp, in dsl_scan_check_resume()
1802 dnode_phys_t *dnp, dsl_dataset_t *ds, dsl_scan_t *scn,
1806 dnode_phys_t *dnp, uint64_t object, dmu_tx_t *tx);
1814 dnode_phys_t *dnp, const blkptr_t *bp, in dsl_scan_recurse()
1861 dnode_phys_t *cdnp; in dsl_scan_recurse()
1928 dmu_objset_type_t ostype, dnode_phys_t *dnp, in dsl_scan_visitdnode()
[all …]
H A Ddnode_sync.c600 bzero(dn->dn_phys, sizeof (dnode_phys_t) * dn->dn_num_slots); in dnode_sync_free()
628 dnode_phys_t *dnp = dn->dn_phys; in dnode_sync()
631 static const dnode_phys_t zerodn __maybe_unused = { 0 }; in dnode_sync()
H A Dbptree.c152 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.c181 dnode_phys_t *dnp;
231 size_t size = sizeof (dnode_phys_t) * in range_free()
702 dnode_phys_t *dnp) in dump_dnode()
H A Ddmu.c694 object * sizeof (dnode_phys_t)); in dmu_prefetch()
2142 dnode_phys_t *dnp = dn->dn_phys; in __dmu_object_info_from_dnode()
H A Ddsl_destroy.c704 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in kill_blkptr()
H A Ddbuf.c4505 dnode_phys_t *dnp = in dbuf_write_ready()
4852 dnode_phys_t *dnp = db->db.db_data; in dbuf_remap()
H A Ddmu_objset.c1542 dnode_phys_t *dnp = &os->os_phys->os_meta_dnode; in dmu_objset_write_ready()
H A Dzio.c5006 zbookmark_subtree_completed(const dnode_phys_t *dnp, in zbookmark_subtree_completed()
H A Dspa.c2293 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in spa_load_verify_cb()
/freebsd-13.1/stand/libsa/zfs/
H A Dzfsimpl.c150 static const dnode_phys_t *dnode_cache_obj;
161 dnode_phys_t *);
2925 dnode_phys_t *dnode) in objset_get_dnode()
2931 dnode, sizeof(dnode_phys_t)); in objset_get_dnode()
3128 dnode_phys_t child_dir_zap, dir; in zfs_lookup_dataset()
3271 dnode_phys_t dataset; in zfs_mount_dataset()
3296 dnode_phys_t dir, propdir; in zfs_get_root()
3391 dnode_phys_t dir; in check_mos_features()
3437 dnode_phys_t dir; in load_nvlist()
3473 dnode_phys_t dir; in zfs_spa_init()
[all …]
H A Dzfs.c89 dnode_phys_t f_dnode;
/freebsd-13.1/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzio_crypt.c824 dnode_phys_t *dnp, *sdnp, *ddnp; in zio_crypt_copy_dnode_bonus()
828 sdnp = (dnode_phys_t *)src; in zio_crypt_copy_dnode_bonus()
829 ddnp = (dnode_phys_t *)dst; in zio_crypt_copy_dnode_bonus()
971 boolean_t should_bswap, dnode_phys_t *dnp) in zio_crypt_do_dnode_hmac_updates()
974 dnode_phys_t *adnp; in zio_crypt_do_dnode_hmac_updates()
980 adnp = (dnode_phys_t *)tmp_dncore; in zio_crypt_do_dnode_hmac_updates()
1426 dnode_phys_t *dnp, *adnp, *sdnp, *ddnp; in zio_crypt_init_uios_dnode()
1441 sdnp = (dnode_phys_t *)src; in zio_crypt_init_uios_dnode()
1442 ddnp = (dnode_phys_t *)dst; in zio_crypt_init_uios_dnode()
1499 crypt_len = offsetof(dnode_phys_t, dn_blkptr); in zio_crypt_init_uios_dnode()
[all …]
/freebsd-13.1/tools/tools/zfsboottest/
H A Dzfsboottest.c87 zfs_read(spa_t *spa, dnode_phys_t *dn, void *buf, size_t size, off_t off) in zfs_read()
111 dnode_phys_t dn;
/freebsd-13.1/sys/cddl/boot/zfs/
H A Dzfsimpl.h1131 } dnode_phys_t; typedef
1327 dnode_phys_t os_meta_dnode;
1333 char os_pad0[OBJSET_PHYS_SIZE_V2 - sizeof (dnode_phys_t)*3 -
1336 dnode_phys_t os_userused_dnode;
1337 dnode_phys_t os_groupused_dnode;
1338 dnode_phys_t os_projectused_dnode;
1340 sizeof (dnode_phys_t)];
1505 const dnode_phys_t *zap_dnode;
1784 dnode_phys_t *vim_dn;
/freebsd-13.1/sys/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, tmp_dncore; in zio_crypt_do_dnode_hmac_updates()
1049 size_t dn_core_size = offsetof(dnode_phys_t, dn_blkptr); in zio_crypt_do_dnode_hmac_updates()
1602 dnode_phys_t *dnp, *adnp, *sdnp, *ddnp; in zio_crypt_init_uios_dnode()
1617 sdnp = (dnode_phys_t *)src; in zio_crypt_init_uios_dnode()
1618 ddnp = (dnode_phys_t *)dst; in zio_crypt_init_uios_dnode()
1686 crypt_len = offsetof(dnode_phys_t, dn_blkptr); in zio_crypt_init_uios_dnode()
[all …]
/freebsd-13.1/sys/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()
/freebsd-13.1/stand/efi/boot1/
H A Dzfs_module.c143 dnode_phys_t dn; in load()
/freebsd-13.1/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c2174 blkid2offset(const dnode_phys_t *dnp, const blkptr_t *bp, in blkid2offset()
2317 const dnode_phys_t *dnp) in print_indirect()
2346 visit_indirect(spa_t *spa, const dnode_phys_t *dnp, in visit_indirect()
2396 dnode_phys_t *dnp = dn->dn_phys; in dump_indirect()
5356 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in zdb_blkptr_cb()
6642 const zbookmark_phys_t *zb, const dnode_phys_t *dnp, void *arg) in zdb_ddt_add_cb()