Lines Matching refs:drrs

1690 receive_spill(struct receive_writer_arg *rwa, struct drr_spill *drrs,  in receive_spill()  argument
1698 if (drrs->drr_length < SPA_MINBLOCKSIZE || in receive_spill()
1699 drrs->drr_length > spa_maxblocksize(dmu_objset_spa(rwa->os))) in receive_spill()
1708 if (rwa->spill && DRR_SPILL_IS_UNMODIFIED(drrs->drr_flags)) { in receive_spill()
1714 if (!DMU_OT_IS_VALID(drrs->drr_type) || in receive_spill()
1715 drrs->drr_compressiontype >= ZIO_COMPRESS_FUNCTIONS || in receive_spill()
1716 drrs->drr_compressed_size == 0) in receive_spill()
1722 if (dmu_object_info(rwa->os, drrs->drr_object, NULL) != 0) in receive_spill()
1725 if (drrs->drr_object > rwa->max_object) in receive_spill()
1726 rwa->max_object = drrs->drr_object; in receive_spill()
1728 VERIFY0(dmu_bonus_hold(rwa->os, drrs->drr_object, FTAG, &db)); in receive_spill()
1752 if (db_spill->db_size != drrs->drr_length) { in receive_spill()
1755 drrs->drr_length, tx)); in receive_spill()
1761 DMU_OT_BYTESWAP(drrs->drr_type); in receive_spill()
1763 DRR_SPILL_PAYLOAD_SIZE(drrs)); in receive_spill()
2178 struct drr_spill *drrs = &ra->rrd->header.drr_u.drr_spill; in receive_read_record() local
2180 int len = DRR_SPILL_PAYLOAD_SIZE(drrs); in receive_read_record()
2185 !!DRR_IS_RAW_BYTESWAPPED(drrs->drr_flags) ^ in receive_read_record()
2189 dmu_objset_id(ra->os), byteorder, drrs->drr_salt, in receive_read_record()
2190 drrs->drr_iv, drrs->drr_mac, drrs->drr_type, in receive_read_record()
2191 drrs->drr_compressed_size, drrs->drr_length, in receive_read_record()
2192 drrs->drr_compressiontype); in receive_read_record()
2195 DMU_OT_IS_METADATA(drrs->drr_type), in receive_read_record()
2196 drrs->drr_length); in receive_read_record()
2279 struct drr_spill *drrs = &rrd->header.drr_u.drr_spill; in receive_process_record() local
2280 err = receive_spill(rwa, drrs, rrd->arc_buf); in receive_process_record()