Deleted Added
full compact
spa_impl.h (268123) spa_impl.h (272598)
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

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

201 kmutex_t spa_history_lock; /* history lock */
202 vdev_t *spa_pending_vdev; /* pending vdev additions */
203 kmutex_t spa_props_lock; /* property lock */
204 uint64_t spa_pool_props_object; /* object for properties */
205 uint64_t spa_bootfs; /* default boot filesystem */
206 uint64_t spa_failmode; /* failure mode for the pool */
207 uint64_t spa_delegation; /* delegation on/off */
208 list_t spa_config_list; /* previous cache file(s) */
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

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

201 kmutex_t spa_history_lock; /* history lock */
202 vdev_t *spa_pending_vdev; /* pending vdev additions */
203 kmutex_t spa_props_lock; /* property lock */
204 uint64_t spa_pool_props_object; /* object for properties */
205 uint64_t spa_bootfs; /* default boot filesystem */
206 uint64_t spa_failmode; /* failure mode for the pool */
207 uint64_t spa_delegation; /* delegation on/off */
208 list_t spa_config_list; /* previous cache file(s) */
209 zio_t *spa_async_zio_root; /* root of all async I/O */
209 /* per-CPU array of root of async I/O: */
210 zio_t **spa_async_zio_root;
210 zio_t *spa_suspend_zio_root; /* root of all suspended I/O */
211 kmutex_t spa_suspend_lock; /* protects suspend_zio_root */
212 kcondvar_t spa_suspend_cv; /* notification of resume */
213 uint8_t spa_suspended; /* pool is suspended */
214 uint8_t spa_claiming; /* pool is doing zil_claim() */
215 boolean_t spa_debug; /* debug enabled? */
216 boolean_t spa_is_root; /* pool is root */
217 int spa_minref; /* num refs when first opened */

--- 74 unchanged lines hidden ---
211 zio_t *spa_suspend_zio_root; /* root of all suspended I/O */
212 kmutex_t spa_suspend_lock; /* protects suspend_zio_root */
213 kcondvar_t spa_suspend_cv; /* notification of resume */
214 uint8_t spa_suspended; /* pool is suspended */
215 uint8_t spa_claiming; /* pool is doing zil_claim() */
216 boolean_t spa_debug; /* debug enabled? */
217 boolean_t spa_is_root; /* pool is root */
218 int spa_minref; /* num refs when first opened */

--- 74 unchanged lines hidden ---