]> git.proxmox.com Git - mirror_zfs.git/blame - include/sys/zio.h
OpenZFS 7990 - libzfs: snapspec_cb() does not need to call zfs_strdup()
[mirror_zfs.git] / include / sys / zio.h
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
428870ff 23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
a38718a6 24 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
64fc7762 25 * Copyright (c) 2012, 2017 by Delphix. All rights reserved.
9759c60f 26 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
a38718a6 27 */
34dc7c2f
BB
28
29#ifndef _ZIO_H
30#define _ZIO_H
31
fcff0f35 32#include <sys/zio_priority.h>
34dc7c2f
BB
33#include <sys/zfs_context.h>
34#include <sys/spa.h>
35#include <sys/txg.h>
36#include <sys/avl.h>
34dc7c2f
BB
37#include <sys/fs/zfs.h>
38#include <sys/zio_impl.h>
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
428870ff
BB
44/*
45 * Embedded checksum
46 */
47#define ZEC_MAGIC 0x210da7ab10c7a11ULL
34dc7c2f 48
428870ff
BB
49typedef struct zio_eck {
50 uint64_t zec_magic; /* for validation, endianness */
51 zio_cksum_t zec_cksum; /* 256-bit checksum */
52} zio_eck_t;
34dc7c2f
BB
53
54/*
55 * Gang block headers are self-checksumming and contain an array
56 * of block pointers.
57 */
58#define SPA_GANGBLOCKSIZE SPA_MINBLOCKSIZE
59#define SPA_GBH_NBLKPTRS ((SPA_GANGBLOCKSIZE - \
428870ff 60 sizeof (zio_eck_t)) / sizeof (blkptr_t))
34dc7c2f 61#define SPA_GBH_FILLER ((SPA_GANGBLOCKSIZE - \
428870ff 62 sizeof (zio_eck_t) - \
34dc7c2f
BB
63 (SPA_GBH_NBLKPTRS * sizeof (blkptr_t))) /\
64 sizeof (uint64_t))
65
34dc7c2f
BB
66typedef struct zio_gbh {
67 blkptr_t zg_blkptr[SPA_GBH_NBLKPTRS];
68 uint64_t zg_filler[SPA_GBH_FILLER];
428870ff 69 zio_eck_t zg_tail;
34dc7c2f
BB
70} zio_gbh_phys_t;
71
72enum zio_checksum {
73 ZIO_CHECKSUM_INHERIT = 0,
74 ZIO_CHECKSUM_ON,
75 ZIO_CHECKSUM_OFF,
76 ZIO_CHECKSUM_LABEL,
77 ZIO_CHECKSUM_GANG_HEADER,
78 ZIO_CHECKSUM_ZILOG,
79 ZIO_CHECKSUM_FLETCHER_2,
80 ZIO_CHECKSUM_FLETCHER_4,
81 ZIO_CHECKSUM_SHA256,
428870ff 82 ZIO_CHECKSUM_ZILOG2,
3c67d83a
TH
83 ZIO_CHECKSUM_NOPARITY,
84 ZIO_CHECKSUM_SHA512,
85 ZIO_CHECKSUM_SKEIN,
86 ZIO_CHECKSUM_EDONR,
34dc7c2f
BB
87 ZIO_CHECKSUM_FUNCTIONS
88};
89
9b67f605
MA
90/*
91 * The number of "legacy" compression functions which can be set on individual
92 * objects.
93 */
94#define ZIO_CHECKSUM_LEGACY_FUNCTIONS ZIO_CHECKSUM_ZILOG2
95
9babb374 96#define ZIO_CHECKSUM_ON_VALUE ZIO_CHECKSUM_FLETCHER_4
34dc7c2f
BB
97#define ZIO_CHECKSUM_DEFAULT ZIO_CHECKSUM_ON
98
428870ff
BB
99#define ZIO_CHECKSUM_MASK 0xffULL
100#define ZIO_CHECKSUM_VERIFY (1 << 8)
101
102#define ZIO_DEDUPCHECKSUM ZIO_CHECKSUM_SHA256
103#define ZIO_DEDUPDITTO_MIN 100
104
9b67f605
MA
105/*
106 * The number of "legacy" compression functions which can be set on individual
107 * objects.
108 */
109#define ZIO_COMPRESS_LEGACY_FUNCTIONS ZIO_COMPRESS_LZ4
110
99197f03
JG
111/*
112 * The meaning of "compress = on" selected by the compression features enabled
113 * on a given pool.
114 */
115#define ZIO_COMPRESS_LEGACY_ON_VALUE ZIO_COMPRESS_LZJB
116#define ZIO_COMPRESS_LZ4_ON_VALUE ZIO_COMPRESS_LZ4
117
118#define ZIO_COMPRESS_DEFAULT ZIO_COMPRESS_OFF
34dc7c2f 119
428870ff
BB
120#define BOOTFS_COMPRESS_VALID(compress) \
121 ((compress) == ZIO_COMPRESS_LZJB || \
9759c60f 122 (compress) == ZIO_COMPRESS_LZ4 || \
99197f03 123 (compress) == ZIO_COMPRESS_ON || \
428870ff
BB
124 (compress) == ZIO_COMPRESS_OFF)
125
a69052be
BB
126/*
127 * Default Linux timeout for a sd device.
128 */
d1d7e268 129#define ZIO_DELAY_MAX (30 * MILLISEC)
a69052be 130
34dc7c2f
BB
131#define ZIO_FAILURE_MODE_WAIT 0
132#define ZIO_FAILURE_MODE_CONTINUE 1
133#define ZIO_FAILURE_MODE_PANIC 2
134
428870ff
BB
135enum zio_flag {
136 /*
137 * Flags inherited by gang, ddt, and vdev children,
138 * and that must be equal for two zios to aggregate
139 */
140 ZIO_FLAG_DONT_AGGREGATE = 1 << 0,
141 ZIO_FLAG_IO_REPAIR = 1 << 1,
142 ZIO_FLAG_SELF_HEAL = 1 << 2,
143 ZIO_FLAG_RESILVER = 1 << 3,
144 ZIO_FLAG_SCRUB = 1 << 4,
572e2857 145 ZIO_FLAG_SCAN_THREAD = 1 << 5,
b02fe35d 146 ZIO_FLAG_PHYSICAL = 1 << 6,
428870ff
BB
147
148#define ZIO_FLAG_AGG_INHERIT (ZIO_FLAG_CANFAIL - 1)
149
150 /*
151 * Flags inherited by ddt, gang, and vdev children.
152 */
b02fe35d
AR
153 ZIO_FLAG_CANFAIL = 1 << 7, /* must be first for INHERIT */
154 ZIO_FLAG_SPECULATIVE = 1 << 8,
155 ZIO_FLAG_CONFIG_WRITER = 1 << 9,
156 ZIO_FLAG_DONT_RETRY = 1 << 10,
157 ZIO_FLAG_DONT_CACHE = 1 << 11,
158 ZIO_FLAG_NODATA = 1 << 12,
159 ZIO_FLAG_INDUCE_DAMAGE = 1 << 13,
3dfb57a3 160 ZIO_FLAG_IO_ALLOCATING = 1 << 14,
428870ff
BB
161
162#define ZIO_FLAG_DDT_INHERIT (ZIO_FLAG_IO_RETRY - 1)
163#define ZIO_FLAG_GANG_INHERIT (ZIO_FLAG_IO_RETRY - 1)
164
165 /*
166 * Flags inherited by vdev children.
167 */
3dfb57a3
DB
168 ZIO_FLAG_IO_RETRY = 1 << 15, /* must be first for INHERIT */
169 ZIO_FLAG_PROBE = 1 << 16,
170 ZIO_FLAG_TRYHARD = 1 << 17,
171 ZIO_FLAG_OPTIONAL = 1 << 18,
428870ff
BB
172
173#define ZIO_FLAG_VDEV_INHERIT (ZIO_FLAG_DONT_QUEUE - 1)
174
175 /*
176 * Flags not inherited by any children.
177 */
3dfb57a3
DB
178 ZIO_FLAG_DONT_QUEUE = 1 << 19, /* must be first for INHERIT */
179 ZIO_FLAG_DONT_PROPAGATE = 1 << 20,
180 ZIO_FLAG_IO_BYPASS = 1 << 21,
181 ZIO_FLAG_IO_REWRITE = 1 << 22,
182 ZIO_FLAG_RAW = 1 << 23,
183 ZIO_FLAG_GANG_CHILD = 1 << 24,
184 ZIO_FLAG_DDT_CHILD = 1 << 25,
185 ZIO_FLAG_GODFATHER = 1 << 26,
186 ZIO_FLAG_NOPWRITE = 1 << 27,
187 ZIO_FLAG_REEXECUTED = 1 << 28,
188 ZIO_FLAG_DELEGATED = 1 << 29,
189 ZIO_FLAG_FASTWRITE = 1 << 30
428870ff
BB
190};
191
192#define ZIO_FLAG_MUSTSUCCEED 0
193
194#define ZIO_DDT_CHILD_FLAGS(zio) \
195 (((zio)->io_flags & ZIO_FLAG_DDT_INHERIT) | \
196 ZIO_FLAG_DDT_CHILD | ZIO_FLAG_CANFAIL)
197
b128c09f
BB
198#define ZIO_GANG_CHILD_FLAGS(zio) \
199 (((zio)->io_flags & ZIO_FLAG_GANG_INHERIT) | \
200 ZIO_FLAG_GANG_CHILD | ZIO_FLAG_CANFAIL)
201
428870ff
BB
202#define ZIO_VDEV_CHILD_FLAGS(zio) \
203 (((zio)->io_flags & ZIO_FLAG_VDEV_INHERIT) | \
204 ZIO_FLAG_CANFAIL)
205
b128c09f
BB
206enum zio_child {
207 ZIO_CHILD_VDEV = 0,
208 ZIO_CHILD_GANG,
428870ff 209 ZIO_CHILD_DDT,
b128c09f
BB
210 ZIO_CHILD_LOGICAL,
211 ZIO_CHILD_TYPES
212};
213
214enum zio_wait_type {
215 ZIO_WAIT_READY = 0,
216 ZIO_WAIT_DONE,
217 ZIO_WAIT_TYPES
218};
219
34dc7c2f
BB
220/*
221 * We'll take the unused errnos, 'EBADE' and 'EBADR' (from the Convergent
222 * graveyard) to indicate checksum errors and fragmentation.
223 */
224#define ECKSUM EBADE
225#define EFRAGS EBADR
226
34dc7c2f
BB
227typedef void zio_done_func_t(zio_t *zio);
228
3dfb57a3 229extern int zio_dva_throttle_enabled;
e8b96c60 230extern const char *zio_type_name[ZIO_TYPES];
34dc7c2f
BB
231
232/*
233 * A bookmark is a four-tuple <objset, object, level, blkid> that uniquely
234 * identifies any block in the pool. By convention, the meta-objset (MOS)
428870ff
BB
235 * is objset 0, and the meta-dnode is object 0. This covers all blocks
236 * except root blocks and ZIL blocks, which are defined as follows:
34dc7c2f 237 *
428870ff
BB
238 * Root blocks (objset_phys_t) are object 0, level -1: <objset, 0, -1, 0>.
239 * ZIL blocks are bookmarked <objset, 0, -2, blkid == ZIL sequence number>.
240 * dmu_sync()ed ZIL data blocks are bookmarked <objset, object, -2, blkid>.
fcff0f35 241 * dnode visit bookmarks are <objset, object id of dnode, -3, 0>.
34dc7c2f 242 *
428870ff
BB
243 * Note: this structure is called a bookmark because its original purpose
244 * was to remember where to resume a pool-wide traverse.
34dc7c2f 245 *
5dbd68a3
MA
246 * Note: this structure is passed between userland and the kernel, and is
247 * stored on disk (by virtue of being incorporated into other on-disk
248 * structures, e.g. dsl_scan_phys_t).
34dc7c2f 249 */
5dbd68a3 250struct zbookmark_phys {
34dc7c2f
BB
251 uint64_t zb_objset;
252 uint64_t zb_object;
253 int64_t zb_level;
254 uint64_t zb_blkid;
1421c891 255};
34dc7c2f 256
428870ff
BB
257#define SET_BOOKMARK(zb, objset, object, level, blkid) \
258{ \
259 (zb)->zb_objset = objset; \
260 (zb)->zb_object = object; \
261 (zb)->zb_level = level; \
262 (zb)->zb_blkid = blkid; \
263}
264
265#define ZB_DESTROYED_OBJSET (-1ULL)
266
267#define ZB_ROOT_OBJECT (0ULL)
268#define ZB_ROOT_LEVEL (-1LL)
269#define ZB_ROOT_BLKID (0ULL)
270
271#define ZB_ZIL_OBJECT (0ULL)
272#define ZB_ZIL_LEVEL (-2LL)
273
fcff0f35
PD
274#define ZB_DNODE_LEVEL (-3LL)
275#define ZB_DNODE_BLKID (0ULL)
276
9ae529ec
CS
277#define ZB_IS_ZERO(zb) \
278 ((zb)->zb_objset == 0 && (zb)->zb_object == 0 && \
279 (zb)->zb_level == 0 && (zb)->zb_blkid == 0)
280#define ZB_IS_ROOT(zb) \
281 ((zb)->zb_object == ZB_ROOT_OBJECT && \
282 (zb)->zb_level == ZB_ROOT_LEVEL && \
283 (zb)->zb_blkid == ZB_ROOT_BLKID)
284
b128c09f
BB
285typedef struct zio_prop {
286 enum zio_checksum zp_checksum;
287 enum zio_compress zp_compress;
288 dmu_object_type_t zp_type;
289 uint8_t zp_level;
428870ff 290 uint8_t zp_copies;
03c6040b
GW
291 boolean_t zp_dedup;
292 boolean_t zp_dedup_verify;
293 boolean_t zp_nopwrite;
b128c09f
BB
294} zio_prop_t;
295
428870ff
BB
296typedef struct zio_cksum_report zio_cksum_report_t;
297
298typedef void zio_cksum_finish_f(zio_cksum_report_t *rep,
299 const void *good_data);
300typedef void zio_cksum_free_f(void *cbdata, size_t size);
301
302struct zio_bad_cksum; /* defined in zio_checksum.h */
9ae529ec 303struct dnode_phys;
a6255b7f 304struct abd;
428870ff
BB
305
306struct zio_cksum_report {
307 struct zio_cksum_report *zcr_next;
308 nvlist_t *zcr_ereport;
309 nvlist_t *zcr_detector;
310 void *zcr_cbdata;
311 size_t zcr_cbinfo; /* passed to zcr_free() */
312 uint64_t zcr_align;
313 uint64_t zcr_length;
314 zio_cksum_finish_f *zcr_finish;
315 zio_cksum_free_f *zcr_free;
316
317 /* internal use only */
318 struct zio_bad_cksum *zcr_ckinfo; /* information from failure */
319};
320
321typedef void zio_vsd_cksum_report_f(zio_t *zio, zio_cksum_report_t *zcr,
322 void *arg);
323
324zio_vsd_cksum_report_f zio_vsd_default_cksum_report;
325
326typedef struct zio_vsd_ops {
327 zio_done_func_t *vsd_free;
328 zio_vsd_cksum_report_f *vsd_cksum_report;
329} zio_vsd_ops_t;
330
b128c09f
BB
331typedef struct zio_gang_node {
332 zio_gbh_phys_t *gn_gbh;
333 struct zio_gang_node *gn_child[SPA_GBH_NBLKPTRS];
334} zio_gang_node_t;
335
336typedef zio_t *zio_gang_issue_func_t(zio_t *zio, blkptr_t *bp,
a6255b7f 337 zio_gang_node_t *gn, struct abd *data, uint64_t offset);
b128c09f 338
a6255b7f 339typedef void zio_transform_func_t(zio_t *zio, struct abd *data, uint64_t size);
b128c09f
BB
340
341typedef struct zio_transform {
a6255b7f 342 struct abd *zt_orig_abd;
b128c09f
BB
343 uint64_t zt_orig_size;
344 uint64_t zt_bufsize;
345 zio_transform_func_t *zt_transform;
346 struct zio_transform *zt_next;
347} zio_transform_t;
348
349typedef int zio_pipe_stage_t(zio_t *zio);
350
351/*
352 * The io_reexecute flags are distinct from io_flags because the child must
353 * be able to propagate them to the parent. The normal io_flags are local
354 * to the zio, not protected by any lock, and not modifiable by children;
355 * the reexecute flags are protected by io_lock, modifiable by children,
356 * and always propagated -- even when ZIO_FLAG_DONT_PROPAGATE is set.
357 */
358#define ZIO_REEXECUTE_NOW 0x01
359#define ZIO_REEXECUTE_SUSPEND 0x02
360
4e21fd06
DB
361typedef struct zio_alloc_list {
362 list_t zal_list;
363 uint64_t zal_size;
364} zio_alloc_list_t;
365
d164b209
BB
366typedef struct zio_link {
367 zio_t *zl_parent;
368 zio_t *zl_child;
369 list_node_t zl_parent_node;
370 list_node_t zl_child_node;
371} zio_link_t;
372
34dc7c2f
BB
373struct zio {
374 /* Core information about this I/O */
5dbd68a3 375 zbookmark_phys_t io_bookmark;
b128c09f
BB
376 zio_prop_t io_prop;
377 zio_type_t io_type;
378 enum zio_child io_child_type;
379 int io_cmd;
e8b96c60 380 zio_priority_t io_priority;
b128c09f 381 uint8_t io_reexecute;
d164b209 382 uint8_t io_state[ZIO_WAIT_TYPES];
34dc7c2f 383 uint64_t io_txg;
b128c09f 384 spa_t *io_spa;
34dc7c2f 385 blkptr_t *io_bp;
428870ff 386 blkptr_t *io_bp_override;
34dc7c2f 387 blkptr_t io_bp_copy;
d164b209
BB
388 list_t io_parent_list;
389 list_t io_child_list;
34dc7c2f 390 zio_t *io_logical;
b128c09f 391 zio_transform_t *io_transform_stack;
34dc7c2f
BB
392
393 /* Callback info */
bc77ba73
PD
394 zio_done_func_t *io_ready;
395 zio_done_func_t *io_children_ready;
e8b96c60 396 zio_done_func_t *io_physdone;
34dc7c2f
BB
397 zio_done_func_t *io_done;
398 void *io_private;
428870ff 399 int64_t io_prev_space_delta; /* DMU private */
34dc7c2f 400 blkptr_t io_bp_orig;
2aa34383
DK
401 /* io_lsize != io_orig_size iff this is a raw write */
402 uint64_t io_lsize;
34dc7c2f
BB
403
404 /* Data represented by this I/O */
a6255b7f
DQ
405 struct abd *io_abd;
406 struct abd *io_orig_abd;
34dc7c2f 407 uint64_t io_size;
428870ff 408 uint64_t io_orig_size;
34dc7c2f
BB
409
410 /* Stuff for the vdev stack */
411 vdev_t *io_vd;
412 void *io_vsd;
428870ff
BB
413 const zio_vsd_ops_t *io_vsd_ops;
414
34dc7c2f 415 uint64_t io_offset;
cb682a17 416 hrtime_t io_timestamp; /* submitted at */
3dfb57a3 417 hrtime_t io_queued_timestamp;
26ef0cc7 418 hrtime_t io_target_timestamp;
cb682a17 419 hrtime_t io_delta; /* vdev queue service delta */
193a37cb
TH
420 hrtime_t io_delay; /* Device access time (disk or */
421 /* file). */
e8b96c60 422 avl_node_t io_queue_node;
ec8501ee 423 avl_node_t io_offset_node;
3dfb57a3 424 avl_node_t io_alloc_node;
4e21fd06 425 zio_alloc_list_t io_alloc_list;
34dc7c2f
BB
426
427 /* Internal pipeline state */
428870ff
BB
428 enum zio_flag io_flags;
429 enum zio_stage io_stage;
430 enum zio_stage io_pipeline;
431 enum zio_flag io_orig_flags;
432 enum zio_stage io_orig_stage;
433 enum zio_stage io_orig_pipeline;
3dfb57a3 434 enum zio_stage io_pipeline_trace;
b128c09f
BB
435 int io_error;
436 int io_child_error[ZIO_CHILD_TYPES];
437 uint64_t io_children[ZIO_CHILD_TYPES][ZIO_WAIT_TYPES];
428870ff 438 uint64_t io_child_count;
e8b96c60 439 uint64_t io_phys_children;
428870ff 440 uint64_t io_parent_count;
b128c09f 441 uint64_t *io_stall;
9babb374 442 zio_t *io_gang_leader;
b128c09f
BB
443 zio_gang_node_t *io_gang_tree;
444 void *io_executor;
34dc7c2f
BB
445 void *io_waiter;
446 kmutex_t io_lock;
447 kcondvar_t io_cv;
448
449 /* FMA state */
428870ff 450 zio_cksum_report_t *io_cksum_report;
34dc7c2f 451 uint64_t io_ena;
a38718a6
GA
452
453 /* Taskq dispatching state */
454 taskq_ent_t io_tqent;
34dc7c2f
BB
455};
456
64fc7762 457extern int zio_bookmark_compare(const void *, const void *);
3dfb57a3 458
d164b209 459extern zio_t *zio_null(zio_t *pio, spa_t *spa, vdev_t *vd,
428870ff 460 zio_done_func_t *done, void *private, enum zio_flag flags);
34dc7c2f
BB
461
462extern zio_t *zio_root(spa_t *spa,
428870ff 463 zio_done_func_t *done, void *private, enum zio_flag flags);
34dc7c2f 464
a6255b7f
DQ
465extern zio_t *zio_read(zio_t *pio, spa_t *spa, const blkptr_t *bp,
466 struct abd *data, uint64_t lsize, zio_done_func_t *done, void *private,
5dbd68a3 467 zio_priority_t priority, enum zio_flag flags, const zbookmark_phys_t *zb);
34dc7c2f 468
b128c09f 469extern zio_t *zio_write(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
a6255b7f 470 struct abd *data, uint64_t size, uint64_t psize, const zio_prop_t *zp,
bc77ba73
PD
471 zio_done_func_t *ready, zio_done_func_t *children_ready,
472 zio_done_func_t *physdone, zio_done_func_t *done,
473 void *private, zio_priority_t priority, enum zio_flag flags,
474 const zbookmark_phys_t *zb);
34dc7c2f 475
b128c09f 476extern zio_t *zio_rewrite(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp,
a6255b7f 477 struct abd *data, uint64_t size, zio_done_func_t *done, void *private,
5dbd68a3 478 zio_priority_t priority, enum zio_flag flags, zbookmark_phys_t *zb);
b128c09f 479
03c6040b
GW
480extern void zio_write_override(zio_t *zio, blkptr_t *bp, int copies,
481 boolean_t nopwrite);
34dc7c2f 482
428870ff 483extern void zio_free(spa_t *spa, uint64_t txg, const blkptr_t *bp);
34dc7c2f 484
428870ff
BB
485extern zio_t *zio_claim(zio_t *pio, spa_t *spa, uint64_t txg,
486 const blkptr_t *bp,
487 zio_done_func_t *done, void *private, enum zio_flag flags);
34dc7c2f
BB
488
489extern zio_t *zio_ioctl(zio_t *pio, spa_t *spa, vdev_t *vd, int cmd,
e8b96c60 490 zio_done_func_t *done, void *private, enum zio_flag flags);
34dc7c2f
BB
491
492extern zio_t *zio_read_phys(zio_t *pio, vdev_t *vd, uint64_t offset,
a6255b7f 493 uint64_t size, struct abd *data, int checksum,
e8b96c60
MA
494 zio_done_func_t *done, void *private, zio_priority_t priority,
495 enum zio_flag flags, boolean_t labels);
34dc7c2f
BB
496
497extern zio_t *zio_write_phys(zio_t *pio, vdev_t *vd, uint64_t offset,
a6255b7f 498 uint64_t size, struct abd *data, int checksum,
e8b96c60
MA
499 zio_done_func_t *done, void *private, zio_priority_t priority,
500 enum zio_flag flags, boolean_t labels);
34dc7c2f 501
428870ff
BB
502extern zio_t *zio_free_sync(zio_t *pio, spa_t *spa, uint64_t txg,
503 const blkptr_t *bp, enum zio_flag flags);
504
505extern int zio_alloc_zil(spa_t *spa, uint64_t txg, blkptr_t *new_bp,
920dd524 506 uint64_t size, boolean_t use_slog);
428870ff 507extern void zio_free_zil(spa_t *spa, uint64_t txg, blkptr_t *bp);
34dc7c2f 508extern void zio_flush(zio_t *zio, vdev_t *vd);
428870ff 509extern void zio_shrink(zio_t *zio, uint64_t size);
34dc7c2f
BB
510
511extern int zio_wait(zio_t *zio);
512extern void zio_nowait(zio_t *zio);
513extern void zio_execute(zio_t *zio);
514extern void zio_interrupt(zio_t *zio);
26ef0cc7
TH
515extern void zio_delay_init(zio_t *zio);
516extern void zio_delay_interrupt(zio_t *zio);
34dc7c2f 517
3dfb57a3
DB
518extern zio_t *zio_walk_parents(zio_t *cio, zio_link_t **);
519extern zio_t *zio_walk_children(zio_t *pio, zio_link_t **);
d164b209
BB
520extern zio_t *zio_unique_parent(zio_t *cio);
521extern void zio_add_child(zio_t *pio, zio_t *cio);
522
34dc7c2f
BB
523extern void *zio_buf_alloc(size_t size);
524extern void zio_buf_free(void *buf, size_t size);
525extern void *zio_data_buf_alloc(size_t size);
526extern void zio_data_buf_free(void *buf, size_t size);
527
a6255b7f 528extern void zio_push_transform(zio_t *zio, struct abd *abd, uint64_t size,
d3c2ae1c
GW
529 uint64_t bufsize, zio_transform_func_t *transform);
530extern void zio_pop_transforms(zio_t *zio);
531
34dc7c2f
BB
532extern void zio_resubmit_stage_async(void *);
533
34dc7c2f 534extern zio_t *zio_vdev_child_io(zio_t *zio, blkptr_t *bp, vdev_t *vd,
a6255b7f 535 uint64_t offset, struct abd *data, uint64_t size, int type,
e8b96c60
MA
536 zio_priority_t priority, enum zio_flag flags,
537 zio_done_func_t *done, void *private);
34dc7c2f 538
b128c09f 539extern zio_t *zio_vdev_delegated_io(vdev_t *vd, uint64_t offset,
a6255b7f 540 struct abd *data, uint64_t size, int type, zio_priority_t priority,
428870ff 541 enum zio_flag flags, zio_done_func_t *done, void *private);
b128c09f 542
34dc7c2f
BB
543extern void zio_vdev_io_bypass(zio_t *zio);
544extern void zio_vdev_io_reissue(zio_t *zio);
545extern void zio_vdev_io_redone(zio_t *zio);
546
547extern void zio_checksum_verified(zio_t *zio);
b128c09f 548extern int zio_worst_error(int e1, int e2);
34dc7c2f 549
428870ff
BB
550extern enum zio_checksum zio_checksum_select(enum zio_checksum child,
551 enum zio_checksum parent);
552extern enum zio_checksum zio_checksum_dedup_select(spa_t *spa,
553 enum zio_checksum child, enum zio_checksum parent);
99197f03
JG
554extern enum zio_compress zio_compress_select(spa_t *spa,
555 enum zio_compress child, enum zio_compress parent);
34dc7c2f 556
b128c09f 557extern void zio_suspend(spa_t *spa, zio_t *zio);
9babb374 558extern int zio_resume(spa_t *spa);
b128c09f 559extern void zio_resume_wait(spa_t *spa);
34dc7c2f
BB
560
561/*
562 * Initial setup and teardown.
563 */
564extern void zio_init(void);
565extern void zio_fini(void);
566
567/*
568 * Fault injection
569 */
570struct zinject_record;
571extern uint32_t zio_injection_enabled;
572extern int zio_inject_fault(char *name, int flags, int *id,
573 struct zinject_record *record);
574extern int zio_inject_list_next(int *id, char *name, size_t buflen,
575 struct zinject_record *record);
576extern int zio_clear_fault(int id);
428870ff 577extern void zio_handle_panic_injection(spa_t *spa, char *tag, uint64_t type);
34dc7c2f 578extern int zio_handle_fault_injection(zio_t *zio, int error);
9babb374 579extern int zio_handle_device_injection(vdev_t *vd, zio_t *zio, int error);
b128c09f 580extern int zio_handle_label_injection(zio_t *zio, int error);
428870ff 581extern void zio_handle_ignored_writes(zio_t *zio);
26ef0cc7 582extern hrtime_t zio_handle_io_delay(zio_t *zio);
428870ff
BB
583
584/*
585 * Checksum ereport functions
586 */
587extern void zfs_ereport_start_checksum(spa_t *spa, vdev_t *vd, struct zio *zio,
588 uint64_t offset, uint64_t length, void *arg, struct zio_bad_cksum *info);
589extern void zfs_ereport_finish_checksum(zio_cksum_report_t *report,
590 const void *good_data, const void *bad_data, boolean_t drop_if_identical);
591
428870ff
BB
592extern void zfs_ereport_free_checksum(zio_cksum_report_t *report);
593
594/* If we have the good data in hand, this function can be used */
595extern void zfs_ereport_post_checksum(spa_t *spa, vdev_t *vd,
596 struct zio *zio, uint64_t offset, uint64_t length,
597 const void *good_data, const void *bad_data, struct zio_bad_cksum *info);
598
599/* Called from spa_sync(), but primarily an injection handler */
600extern void spa_handle_ignored_writes(spa_t *spa);
34dc7c2f 601
5dbd68a3 602/* zbookmark_phys functions */
fcff0f35
PD
603boolean_t zbookmark_subtree_completed(const struct dnode_phys *dnp,
604 const zbookmark_phys_t *subtree_root, const zbookmark_phys_t *last_block);
605int zbookmark_compare(uint16_t dbss1, uint8_t ibs1, uint16_t dbss2,
606 uint8_t ibs2, const zbookmark_phys_t *zb1, const zbookmark_phys_t *zb2);
9ae529ec 607
34dc7c2f
BB
608#ifdef __cplusplus
609}
610#endif
611
612#endif /* _ZIO_H */