aboutsummaryrefslogtreecommitdiff
path: root/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h
blob: e7503b733cc0506fa2f069735b6e8e6fb26d393b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#ifndef _ZIO_IMPL_H
#define	_ZIO_IMPL_H

#include <sys/zfs_context.h>
#include <sys/zio.h>

#ifdef	__cplusplus
extern "C" {
#endif

/*
 * I/O Groups: pipeline stage definitions.
 */
typedef enum zio_stage {
	ZIO_STAGE_OPEN = 0,			/* RWFCI */

	ZIO_STAGE_ISSUE_ASYNC,			/* -W--- */

	ZIO_STAGE_READ_BP_INIT,			/* R---- */
	ZIO_STAGE_WRITE_BP_INIT,		/* -W--- */

	ZIO_STAGE_CHECKSUM_GENERATE,		/* -W--- */

	ZIO_STAGE_GANG_ASSEMBLE,		/* RWFC- */
	ZIO_STAGE_GANG_ISSUE,			/* RWFC- */

	ZIO_STAGE_DVA_ALLOCATE,			/* -W--- */
	ZIO_STAGE_DVA_FREE,			/* --F-- */
	ZIO_STAGE_DVA_CLAIM,			/* ---C- */

	ZIO_STAGE_READY,			/* RWFCI */

	ZIO_STAGE_VDEV_IO_START,		/* RW--I */
	ZIO_STAGE_VDEV_IO_DONE,			/* RW--I */
	ZIO_STAGE_VDEV_IO_ASSESS,		/* RW--I */

	ZIO_STAGE_CHECKSUM_VERIFY,		/* R---- */

	ZIO_STAGE_DONE,				/* RWFCI */
	ZIO_STAGES
} zio_stage_t;

#define	ZIO_INTERLOCK_STAGES					\
	((1U << ZIO_STAGE_READY) |				\
	(1U << ZIO_STAGE_DONE))

#define	ZIO_INTERLOCK_PIPELINE					\
	ZIO_INTERLOCK_STAGES

#define	ZIO_VDEV_IO_STAGES					\
	((1U << ZIO_STAGE_VDEV_IO_START) |			\
	(1U << ZIO_STAGE_VDEV_IO_DONE) |			\
	(1U << ZIO_STAGE_VDEV_IO_ASSESS))

#define	ZIO_VDEV_CHILD_PIPELINE					\
	(ZIO_VDEV_IO_STAGES |					\
	(1U << ZIO_STAGE_DONE))

#define	ZIO_READ_COMMON_STAGES					\
	(ZIO_INTERLOCK_STAGES |					\
	ZIO_VDEV_IO_STAGES |					\
	(1U << ZIO_STAGE_CHECKSUM_VERIFY))

#define	ZIO_READ_PHYS_PIPELINE					\
	ZIO_READ_COMMON_STAGES

#define	ZIO_READ_PIPELINE					\
	(ZIO_READ_COMMON_STAGES |				\
	(1U << ZIO_STAGE_READ_BP_INIT))

#define	ZIO_WRITE_COMMON_STAGES					\
	(ZIO_INTERLOCK_STAGES |					\
	ZIO_VDEV_IO_STAGES |					\
	(1U << ZIO_STAGE_ISSUE_ASYNC) |				\
	(1U << ZIO_STAGE_CHECKSUM_GENERATE))

#define	ZIO_WRITE_PHYS_PIPELINE					\
	ZIO_WRITE_COMMON_STAGES

#define	ZIO_REWRITE_PIPELINE					\
	(ZIO_WRITE_COMMON_STAGES |				\
	(1U << ZIO_STAGE_WRITE_BP_INIT))

#define	ZIO_WRITE_PIPELINE					\
	(ZIO_WRITE_COMMON_STAGES |				\
	(1U << ZIO_STAGE_WRITE_BP_INIT) |			\
	(1U << ZIO_STAGE_DVA_ALLOCATE))

#define	ZIO_GANG_STAGES						\
	((1U << ZIO_STAGE_GANG_ASSEMBLE) |			\
	(1U << ZIO_STAGE_GANG_ISSUE))

#define	ZIO_FREE_PIPELINE					\
	(ZIO_INTERLOCK_STAGES |					\
	(1U << ZIO_STAGE_DVA_FREE))

#define	ZIO_CLAIM_PIPELINE					\
	(ZIO_INTERLOCK_STAGES |					\
	(1U << ZIO_STAGE_DVA_CLAIM))

#define	ZIO_IOCTL_PIPELINE					\
	(ZIO_INTERLOCK_STAGES |					\
	(1U << ZIO_STAGE_VDEV_IO_START) |			\
	(1U << ZIO_STAGE_VDEV_IO_ASSESS))

#define	ZIO_CONFIG_LOCK_BLOCKING_STAGES				\
	((1U << ZIO_STAGE_VDEV_IO_START) |			\
	(1U << ZIO_STAGE_DVA_ALLOCATE) |			\
	(1U << ZIO_STAGE_DVA_CLAIM))

extern void zio_inject_init(void);
extern void zio_inject_fini(void);

#ifdef	__cplusplus
}
#endif

#endif	/* _ZIO_IMPL_H */