| /freebsd-head/sys/contrib/openzfs/module/zfs/ |
| HD | dmu_traverse.c | 187 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE; in traverse_prefetch_metadata() local 204 zio_flags |= ZIO_FLAG_RAW; in traverse_prefetch_metadata() 207 ZIO_PRIORITY_ASYNC_READ, zio_flags, &flags, zb); in traverse_prefetch_metadata() 368 uint32_t zio_flags = ZIO_FLAG_CANFAIL; in traverse_visitbp() local 378 zio_flags |= ZIO_FLAG_RAW; in traverse_visitbp() 381 ZIO_PRIORITY_ASYNC_READ, zio_flags, &flags, zb); in traverse_visitbp() 400 uint32_t zio_flags = ZIO_FLAG_CANFAIL; in traverse_visitbp() local 405 zio_flags |= ZIO_FLAG_RAW; in traverse_visitbp() 408 ZIO_PRIORITY_ASYNC_READ, zio_flags, &flags, zb); in traverse_visitbp() 567 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE; in traverse_prefetcher() local [all …]
|
| HD | dmu_diff.c | 140 int zio_flags = ZIO_FLAG_CANFAIL; in diff_cb() local 144 zio_flags |= ZIO_FLAG_RAW; in diff_cb() 147 ZIO_PRIORITY_ASYNC_READ, zio_flags, &aflags, zb) != 0) in diff_cb()
|
| HD | dsl_scan.c | 360 static void scan_exec_io(dsl_pool_t *dp, const blkptr_t *bp, int zio_flags, 2095 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SCAN_THREAD; in dsl_scan_prefetch_thread() local 2126 zio_flags |= ZIO_FLAG_RAW; in dsl_scan_prefetch_thread() 2138 zio_flags, &flags, &spic->spic_zb); in dsl_scan_prefetch_thread() 2209 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SCAN_THREAD; in dsl_scan_recurse() local 2235 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb); in dsl_scan_recurse() 2259 zio_flags |= ZIO_FLAG_RAW; in dsl_scan_recurse() 2263 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb); in dsl_scan_recurse() 2282 ZIO_PRIORITY_SCRUB, zio_flags, &flags, zb); in dsl_scan_recurse() 4008 int zio_flags = ZIO_FLAG_SCAN_THREAD | ZIO_FLAG_RAW | in read_by_block_level() local [all …]
|
| HD | zil.c | 249 zio_flag_t zio_flags = ZIO_FLAG_CANFAIL; in zil_read_log_block() local 255 zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB; in zil_read_log_block() 258 zio_flags |= ZIO_FLAG_SPECULATIVE; in zil_read_log_block() 261 zio_flags |= ZIO_FLAG_RAW; in zil_read_log_block() 267 abuf, ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb); in zil_read_log_block() 322 zio_flag_t zio_flags = ZIO_FLAG_CANFAIL; in zil_read_log_data() local 336 zio_flags |= ZIO_FLAG_SPECULATIVE | ZIO_FLAG_SCRUB; in zil_read_log_data() 344 zio_flags |= ZIO_FLAG_RAW; in zil_read_log_data() 351 ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb); in zil_read_log_data()
|
| HD | arc.c | 5672 int zio_flags, arc_flags_t *arc_flags, const zbookmark_phys_t *zb) in arc_read() argument 5678 boolean_t compressed_read = (zio_flags & ZIO_FLAG_RAW_COMPRESS) != 0; in arc_read() 5680 (zio_flags & ZIO_FLAG_RAW_ENCRYPT) != 0; in arc_read() 5682 (zio_flags & ZIO_FLAG_RAW_ENCRYPT) != 0; in arc_read() 5799 spa, NULL, NULL, NULL, zio_flags); in arc_read() 5848 if ((zio_flags & ZIO_FLAG_SPECULATIVE) == 0) { in arc_read() 5862 ASSERT((zio_flags & ZIO_FLAG_SPECULATIVE) || in arc_read() 5892 if (zio_flags & ZIO_FLAG_CONFIG_WRITER) { in arc_read() 6020 zio_flags |= ZIO_FLAG_RAW; in arc_read() 6027 zio_flags |= ZIO_FLAG_RAW_COMPRESS; in arc_read() [all …]
|
| HD | dbuf.c | 1592 int err, zio_flags; in dbuf_read_impl() local 1650 zio_flags = (flags & DB_RF_CANFAIL) ? in dbuf_read_impl() 1654 zio_flags |= ZIO_FLAG_RAW; in dbuf_read_impl() 1666 dbuf_read_done, db, ZIO_PRIORITY_SYNC_READ, zio_flags, in dbuf_read_impl() 3568 int zio_flags = ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE; in dbuf_issue_final_prefetch() local 3576 zio_flags |= ZIO_FLAG_RAW; in dbuf_issue_final_prefetch() 3583 dpa->dpa_prio, zio_flags, &aflags, &dpa->dpa_zb); in dbuf_issue_final_prefetch()
|
| HD | dmu_recv.c | 2295 zio_flag_t zio_flags = 0; in flush_write_batch_impl() local 2317 zio_flags |= ZIO_FLAG_RAW; in flush_write_batch_impl() 2323 zio_flags |= ZIO_FLAG_RAW_COMPRESS; in flush_write_batch_impl() 2347 drrw->drr_offset, abd, &zp, zio_flags, tx); in flush_write_batch_impl()
|
| HD | dmu_objset.c | 502 zio_flag_t zio_flags = ZIO_FLAG_CANFAIL; in dmu_objset_open_impl() local 512 zio_flags |= ZIO_FLAG_RAW; in dmu_objset_open_impl() 518 ZIO_PRIORITY_SYNC_READ, zio_flags, &aflags, &zb); in dmu_objset_open_impl()
|
| /freebsd-head/sys/contrib/openzfs/include/os/linux/zfs/sys/ |
| HD | trace_common.h | 42 __field(zio_flag_t, zio_flags) \ 71 __entry->zio_flags = zio->io_flags; \ 103 __entry->zio_flags, __entry->zio_stage, __entry->zio_pipeline, \
|
| /freebsd-head/sys/contrib/openzfs/include/sys/ |
| HD | arc.h | 325 int zio_flags, const zbookmark_phys_t *zb);
|