| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | zio.c | 756 if (BP_GET_PSIZE(bp) > SPA_MAXBLOCKSIZE) { in zfs_blkptr_verify() 758 bp, (longlong_t)BP_GET_PSIZE(bp)); in zfs_blkptr_verify() 935 BP_GET_PSIZE(bp), 0))); in zio_free() 1003 zio = zio_create(pio, spa, txg, bp, NULL, BP_GET_PSIZE(bp), in zio_claim() 1233 BP_IS_EMBEDDED(bp) ? BPE_GET_PSIZE(bp) : BP_GET_PSIZE(bp); in zio_read_bp_init() 1439 BP_GET_PSIZE(bp) == psize && in zio_write_compress() 1946 return (zio_read(pio, pio->io_spa, bp, data, BP_GET_PSIZE(bp), in zio_read_gang() 1971 data, BP_GET_PSIZE(bp)); in zio_rewrite_gang() 1981 data, BP_GET_PSIZE(bp), NULL, NULL, pio->io_priority, in zio_rewrite_gang() 1993 BP_IS_GANG(bp) ? SPA_GANGBLOCKSIZE : BP_GET_PSIZE(bp), in zio_free_gang() [all …]
|
| D | bpobj.c | 248 bpo->bpo_phys->bpo_comp -= BP_GET_PSIZE(bp); in bpobj_iterate_impl() 515 bpo->bpo_phys->bpo_comp += BP_GET_PSIZE(bp); in bpobj_enqueue() 541 sra->comp += BP_GET_PSIZE(bp); in space_range_cb()
|
| D | bptree.c | 164 ba->ba_phys->bt_comp -= BP_GET_PSIZE(bp); in bptree_visit_cb()
|
| D | dsl_scan.c | 421 zio_nowait(zio_free_sync(pio, dp->dp_spa, txg, bpp, BP_GET_PSIZE(bpp), in dsl_free_sync() 1457 dmu_tx_get_txg(tx), bp, BP_GET_PSIZE(bp), 0)); in dsl_scan_free_block_cb() 1460 -BP_GET_PSIZE(bp), -BP_GET_UCSIZE(bp), tx); in dsl_scan_free_block_cb() 1766 zb->zb_psize += BP_GET_PSIZE(bp); in count_block() 1814 size_t size = BP_GET_PSIZE(bp); in dsl_scan_scrub_cb()
|
| D | zio_checksum.c | 388 (BP_IS_GANG(bp) ? SPA_GANGBLOCKSIZE : BP_GET_PSIZE(bp))); in zio_checksum_error()
|
| D | dsl_deadlist.c | 231 dl->dl_phys->dl_comp += BP_GET_PSIZE(bp); in dsl_deadlist_insert()
|
| D | dsl_destroy.c | 161 poa->comp += BP_GET_PSIZE(bp); in process_old_cb()
|
| D | ddt.c | 298 DDK_SET_PSIZE(ddk, BP_GET_PSIZE(bp)); in ddt_key_fill()
|
| D | arc.c | 1735 VERIFY3U(BP_GET_PSIZE(zio->io_bp), ==, HDR_GET_PSIZE(hdr)); in arc_cksum_is_equal() 4576 ASSERT3U(HDR_GET_PSIZE(hdr), ==, BP_GET_PSIZE(bp)); in arc_hdr_verify() 4895 uint64_t psize = BP_GET_PSIZE(bp); in arc_read() 5401 uint64_t psize = BP_IS_HOLE(zio->io_bp) ? 0 : BP_GET_PSIZE(zio->io_bp); in arc_write_ready()
|
| D | dsl_dataset.c | 119 int compressed = BP_GET_PSIZE(bp); in dsl_dataset_block_born() 167 int compressed = BP_GET_PSIZE(bp); in dsl_dataset_block_kill()
|
| D | spa.c | 1965 size_t size = BP_GET_PSIZE(bp); in spa_load_verify_cb() 6276 BP_GET_PSIZE(bp), zio->io_flags)); in spa_free_sync_cb()
|
| D | dmu_send.c | 324 DDK_SET_PSIZE(&drrw->drr_key, BP_GET_PSIZE(bp)); in dump_write()
|
| D | dbuf.c | 2357 ASSERT3U(BP_GET_PSIZE(zio->io_bp), ==, zio->io_size); in dbuf_prefetch_indirect_done()
|
| /freebsd-10-stable/sys/boot/zfs/ |
| D | zfsimpl.c | 413 psize = BP_GET_PSIZE(bp); in vdev_read_phys() 1121 pbuf += BP_GET_PSIZE(gbp); in zio_read_gang() 1185 size = BP_GET_PSIZE(bp); in zio_read() 1191 if (size != BP_GET_PSIZE(bp) || cpfunc != ZIO_COMPRESS_OFF) in zio_read() 1203 BP_GET_PSIZE(bp), buf, BP_GET_LSIZE(bp)); in zio_read() 1204 else if (size != BP_GET_PSIZE(bp)) in zio_read() 1205 bcopy(pbuf, buf, BP_GET_PSIZE(bp)); in zio_read()
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| D | spa.h | 387 #define BP_GET_PSIZE(bp) \ macro 445 BP_GET_PSIZE(bp) : BP_GET_LSIZE(bp)) 509 BP_GET_PSIZE(bp)) 601 (u_longlong_t)BP_GET_PSIZE(bp), \
|
| /freebsd-10-stable/sys/cddl/boot/zfs/ |
| D | zfsimpl.h | 351 #define BP_GET_PSIZE(bp) \ macro 385 BP_GET_PSIZE(bp) : BP_GET_LSIZE(bp));
|
| D | zfssubr.c | 199 size = BP_GET_PSIZE(bp); in zio_checksum_verify()
|
| /freebsd-10-stable/cddl/contrib/opensolaris/cmd/zdb/ |
| D | zdb.c | 1245 (u_longlong_t)BP_GET_PSIZE(bp), in snprintf_blkptr_compact() 2394 zb->zb_psize += BP_GET_PSIZE(bp); in zdb_count_block() 2402 int idx = BP_GET_PSIZE(bp) >> SPA_MINBLOCKSHIFT; in zdb_count_block() 2539 size_t size = BP_GET_PSIZE(bp); in zdb_blkptr_cb() 3047 zdde->zdde_ref_psize += BP_GET_PSIZE(bp); in zdb_ddt_add_cb()
|
| /freebsd-10-stable/cddl/contrib/opensolaris/cmd/ztest/ |
| D | ztest.c | 5133 psize = BP_GET_PSIZE(&blk); in ztest_ddt_repair()
|