Deleted Added
full compact
zio_impl.h (225736) zio_impl.h (243674)
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

--- 47 unchanged lines hidden (view full) ---

56
57 ZIO_STAGE_DVA_ALLOCATE = 1 << 12, /* -W--- */
58 ZIO_STAGE_DVA_FREE = 1 << 13, /* --F-- */
59 ZIO_STAGE_DVA_CLAIM = 1 << 14, /* ---C- */
60
61 ZIO_STAGE_READY = 1 << 15, /* RWFCI */
62
63 ZIO_STAGE_VDEV_IO_START = 1 << 16, /* RW--I */
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

--- 47 unchanged lines hidden (view full) ---

56
57 ZIO_STAGE_DVA_ALLOCATE = 1 << 12, /* -W--- */
58 ZIO_STAGE_DVA_FREE = 1 << 13, /* --F-- */
59 ZIO_STAGE_DVA_CLAIM = 1 << 14, /* ---C- */
60
61 ZIO_STAGE_READY = 1 << 15, /* RWFCI */
62
63 ZIO_STAGE_VDEV_IO_START = 1 << 16, /* RW--I */
64 ZIO_STAGE_VDEV_IO_DONE = 1 << 17, /* RW--I */
64 ZIO_STAGE_VDEV_IO_DONE = 1 << 17, /* RW--- */
65 ZIO_STAGE_VDEV_IO_ASSESS = 1 << 18, /* RW--I */
66
67 ZIO_STAGE_CHECKSUM_VERIFY = 1 << 19, /* R---- */
68
69 ZIO_STAGE_DONE = 1 << 20 /* RWFCI */
70};
71
72#define ZIO_INTERLOCK_STAGES \

--- 103 unchanged lines hidden ---
65 ZIO_STAGE_VDEV_IO_ASSESS = 1 << 18, /* RW--I */
66
67 ZIO_STAGE_CHECKSUM_VERIFY = 1 << 19, /* R---- */
68
69 ZIO_STAGE_DONE = 1 << 20 /* RWFCI */
70};
71
72#define ZIO_INTERLOCK_STAGES \

--- 103 unchanged lines hidden ---