]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/spa_misc.c
OpenZFS 7614, 9064 - zfs device evacuation/removal
[mirror_zfs.git] / module / zfs / spa_misc.c
index d1303b5c2205090f1e32aa7a88fe4918319022c8..5c6e825671b012d8860bb13182903331c44e7586 100644 (file)
  */
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
+ * Copyright (c) 2011, 2017 by Delphix. All rights reserved.
  * Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
  * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
+ * Copyright 2013 Saso Kiselkov. All rights reserved.
+ * Copyright (c) 2017 Datto Inc.
  */
 
 #include <sys/zfs_context.h>
@@ -53,7 +55,8 @@
 #include <sys/ddt.h>
 #include <sys/kstat.h>
 #include "zfs_prop.h"
-#include "zfeature_common.h"
+#include <sys/zfeature.h>
+#include "qat.h"
 
 /*
  * SPA locking
@@ -240,8 +243,12 @@ kmem_cache_t *spa_buffer_pool;
 int spa_mode_global;
 
 #ifdef ZFS_DEBUG
-/* Everything except dprintf and spa is on by default in debug builds */
-int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SPA);
+/*
+ * Everything except dprintf, set_error, spa, and indirect_remap is on
+ * by default in debug builds.
+ */
+int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SET_ERROR |
+    ZFS_DEBUG_SPA | ZFS_DEBUG_INDIRECT_REMAP);
 #else
 int zfs_flags = 0;
 #endif
@@ -289,18 +296,41 @@ int zfs_free_leak_on_eio = B_FALSE;
 /*
  * Expiration time in milliseconds. This value has two meanings. First it is
  * used to determine when the spa_deadman() logic should fire. By default the
- * spa_deadman() will fire if spa_sync() has not completed in 1000 seconds.
+ * spa_deadman() will fire if spa_sync() has not completed in 600 seconds.
  * Secondly, the value determines if an I/O is considered "hung". Any I/O that
  * has not completed in zfs_deadman_synctime_ms is considered "hung" resulting
- * in a system panic.
+ * in one of three behaviors controlled by zfs_deadman_failmode.
+ */
+unsigned long zfs_deadman_synctime_ms = 600000ULL;
+
+/*
+ * This value controls the maximum amount of time zio_wait() will block for an
+ * outstanding IO.  By default this is 300 seconds at which point the "hung"
+ * behavior will be applied as described for zfs_deadman_synctime_ms.
+ */
+unsigned long zfs_deadman_ziotime_ms = 300000ULL;
+
+/*
+ * Check time in milliseconds. This defines the frequency at which we check
+ * for hung I/O.
  */
-unsigned long zfs_deadman_synctime_ms = 1000000ULL;
+unsigned long  zfs_deadman_checktime_ms = 60000ULL;
 
 /*
  * By default the deadman is enabled.
  */
 int zfs_deadman_enabled = 1;
 
+/*
+ * Controls the behavior of the deadman when it detects a "hung" I/O.
+ * Valid values are zfs_deadman_failmode=<wait|continue|panic>.
+ *
+ * wait     - Wait for the "hung" I/O (default)
+ * continue - Attempt to recover from a "hung" I/O
+ * panic    - Panic the system
+ */
+char *zfs_deadman_failmode = "wait";
+
 /*
  * The worst case is single-sector max-parity RAID-Z blocks, in which
  * case the space requirement is exactly (VDEV_RAIDZ_MAXPARITY + 1)
@@ -334,9 +364,14 @@ int spa_asize_inflation = 24;
  * it is possible to run the pool completely out of space, causing it to
  * be permanently read-only.
  *
+ * Note that on very small pools, the slop space will be larger than
+ * 3.2%, in an effort to have it be at least spa_min_slop (128MB),
+ * but we never allow it to be more than half the pool size.
+ *
  * See also the comments in zfs_space_check_t.
  */
 int spa_slop_shift = 5;
+uint64_t spa_min_slop = 128 * 1024 * 1024;
 
 /*
  * ==========================================================================
@@ -346,9 +381,7 @@ int spa_slop_shift = 5;
 static void
 spa_config_lock_init(spa_t *spa)
 {
-       int i;
-
-       for (i = 0; i < SCL_LOCKS; i++) {
+       for (int i = 0; i < SCL_LOCKS; i++) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                mutex_init(&scl->scl_lock, NULL, MUTEX_DEFAULT, NULL);
                cv_init(&scl->scl_cv, NULL, CV_DEFAULT, NULL);
@@ -361,9 +394,7 @@ spa_config_lock_init(spa_t *spa)
 static void
 spa_config_lock_destroy(spa_t *spa)
 {
-       int i;
-
-       for (i = 0; i < SCL_LOCKS; i++) {
+       for (int i = 0; i < SCL_LOCKS; i++) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                mutex_destroy(&scl->scl_lock);
                cv_destroy(&scl->scl_cv);
@@ -376,9 +407,7 @@ spa_config_lock_destroy(spa_t *spa)
 int
 spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw)
 {
-       int i;
-
-       for (i = 0; i < SCL_LOCKS; i++) {
+       for (int i = 0; i < SCL_LOCKS; i++) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                if (!(locks & (1 << i)))
                        continue;
@@ -410,11 +439,10 @@ void
 spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw)
 {
        int wlocks_held = 0;
-       int i;
 
        ASSERT3U(SCL_LOCKS, <, sizeof (wlocks_held) * NBBY);
 
-       for (i = 0; i < SCL_LOCKS; i++) {
+       for (int i = 0; i < SCL_LOCKS; i++) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                if (scl->scl_writer == curthread)
                        wlocks_held |= (1 << i);
@@ -437,15 +465,13 @@ spa_config_enter(spa_t *spa, int locks, void *tag, krw_t rw)
                (void) refcount_add(&scl->scl_count, tag);
                mutex_exit(&scl->scl_lock);
        }
-       ASSERT(wlocks_held <= locks);
+       ASSERT3U(wlocks_held, <=, locks);
 }
 
 void
 spa_config_exit(spa_t *spa, int locks, void *tag)
 {
-       int i;
-
-       for (i = SCL_LOCKS - 1; i >= 0; i--) {
+       for (int i = SCL_LOCKS - 1; i >= 0; i--) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                if (!(locks & (1 << i)))
                        continue;
@@ -464,9 +490,9 @@ spa_config_exit(spa_t *spa, int locks, void *tag)
 int
 spa_config_held(spa_t *spa, int locks, krw_t rw)
 {
-       int i, locks_held = 0;
+       int locks_held = 0;
 
-       for (i = 0; i < SCL_LOCKS; i++) {
+       for (int i = 0; i < SCL_LOCKS; i++) {
                spa_config_lock_t *scl = &spa->spa_config_lock[i];
                if (!(locks & (1 << i)))
                        continue;
@@ -523,15 +549,19 @@ spa_deadman(void *arg)
 {
        spa_t *spa = arg;
 
+       /* Disable the deadman if the pool is suspended. */
+       if (spa_suspended(spa))
+               return;
+
        zfs_dbgmsg("slow spa_sync: started %llu seconds ago, calls %llu",
            (gethrtime() - spa->spa_sync_starttime) / NANOSEC,
            ++spa->spa_deadman_calls);
        if (zfs_deadman_enabled)
-               vdev_deadman(spa->spa_root_vdev);
+               vdev_deadman(spa->spa_root_vdev, FTAG);
 
-       spa->spa_deadman_tqid = taskq_dispatch_delay(system_taskq,
+       spa->spa_deadman_tqid = taskq_dispatch_delay(system_delay_taskq,
            spa_deadman, spa, TQ_SLEEP, ddi_get_lbolt() +
-           NSEC_TO_TICK(spa->spa_deadman_synctime));
+           MSEC_TO_TICK(zfs_deadman_checktime_ms));
 }
 
 /*
@@ -544,8 +574,6 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
 {
        spa_t *spa;
        spa_config_dirent_t *dp;
-       int t;
-       int i;
 
        ASSERT(MUTEX_HELD(&spa_namespace_lock));
 
@@ -558,10 +586,12 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        mutex_init(&spa->spa_history_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_proc_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_props_lock, NULL, MUTEX_DEFAULT, NULL);
+       mutex_init(&spa->spa_cksum_tmpls_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_scrub_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_suspend_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_vdev_top_lock, NULL, MUTEX_DEFAULT, NULL);
        mutex_init(&spa->spa_feat_stats_lock, NULL, MUTEX_DEFAULT, NULL);
+       mutex_init(&spa->spa_alloc_lock, NULL, MUTEX_DEFAULT, NULL);
 
        cv_init(&spa->spa_async_cv, NULL, CV_DEFAULT, NULL);
        cv_init(&spa->spa_evicting_os_cv, NULL, CV_DEFAULT, NULL);
@@ -569,7 +599,7 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        cv_init(&spa->spa_scrub_io_cv, NULL, CV_DEFAULT, NULL);
        cv_init(&spa->spa_suspend_cv, NULL, CV_DEFAULT, NULL);
 
-       for (t = 0; t < TXG_SIZE; t++)
+       for (int t = 0; t < TXG_SIZE; t++)
                bplist_create(&spa->spa_free_bplist[t]);
 
        (void) strlcpy(spa->spa_name, name, sizeof (spa->spa_name));
@@ -581,6 +611,8 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        spa->spa_proc_state = SPA_PROC_NONE;
 
        spa->spa_deadman_synctime = MSEC2NSEC(zfs_deadman_synctime_ms);
+       spa->spa_deadman_ziotime = MSEC2NSEC(zfs_deadman_ziotime_ms);
+       spa_set_deadman_failmode(spa, zfs_deadman_failmode);
 
        refcount_create(&spa->spa_refcount);
        spa_config_lock_init(spa);
@@ -594,6 +626,9 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        if (altroot)
                spa->spa_root = spa_strdup(altroot);
 
+       avl_create(&spa->spa_alloc_tree, zio_bookmark_compare,
+           sizeof (zio_t), offsetof(zio_t, io_alloc_node));
+
        /*
         * Every pool starts with the default cachefile
         */
@@ -629,12 +664,15 @@ spa_add(const char *name, nvlist_t *config, const char *altroot)
        spa->spa_min_ashift = INT_MAX;
        spa->spa_max_ashift = 0;
 
+       /* Reset cached value */
+       spa->spa_dedup_dspace = ~0ULL;
+
        /*
         * As a pool is being created, treat all features as disabled by
         * setting SPA_FEATURE_DISABLED for all entries in the feature
         * refcount cache.
         */
-       for (i = 0; i < SPA_FEATURES; i++) {
+       for (int i = 0; i < SPA_FEATURES; i++) {
                spa->spa_feat_refcount_cache[i] = SPA_FEATURE_DISABLED;
        }
 
@@ -650,7 +688,6 @@ void
 spa_remove(spa_t *spa)
 {
        spa_config_dirent_t *dp;
-       int t;
 
        ASSERT(MUTEX_HELD(&spa_namespace_lock));
        ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
@@ -671,6 +708,7 @@ spa_remove(spa_t *spa)
                kmem_free(dp, sizeof (spa_config_dirent_t));
        }
 
+       avl_destroy(&spa->spa_alloc_tree);
        list_destroy(&spa->spa_config_list);
 
        nvlist_free(spa->spa_label_features);
@@ -683,15 +721,18 @@ spa_remove(spa_t *spa)
        spa_stats_destroy(spa);
        spa_config_lock_destroy(spa);
 
-       for (t = 0; t < TXG_SIZE; t++)
+       for (int t = 0; t < TXG_SIZE; t++)
                bplist_destroy(&spa->spa_free_bplist[t]);
 
+       zio_checksum_templates_free(spa);
+
        cv_destroy(&spa->spa_async_cv);
        cv_destroy(&spa->spa_evicting_os_cv);
        cv_destroy(&spa->spa_proc_cv);
        cv_destroy(&spa->spa_scrub_io_cv);
        cv_destroy(&spa->spa_suspend_cv);
 
+       mutex_destroy(&spa->spa_alloc_lock);
        mutex_destroy(&spa->spa_async_lock);
        mutex_destroy(&spa->spa_errlist_lock);
        mutex_destroy(&spa->spa_errlog_lock);
@@ -699,6 +740,7 @@ spa_remove(spa_t *spa)
        mutex_destroy(&spa->spa_history_lock);
        mutex_destroy(&spa->spa_proc_lock);
        mutex_destroy(&spa->spa_props_lock);
+       mutex_destroy(&spa->spa_cksum_tmpls_lock);
        mutex_destroy(&spa->spa_scrub_lock);
        mutex_destroy(&spa->spa_suspend_lock);
        mutex_destroy(&spa->spa_vdev_top_lock);
@@ -797,18 +839,13 @@ typedef struct spa_aux {
        int             aux_count;
 } spa_aux_t;
 
-static int
+static inline int
 spa_aux_compare(const void *a, const void *b)
 {
-       const spa_aux_t *sa = a;
-       const spa_aux_t *sb = b;
+       const spa_aux_t *sa = (const spa_aux_t *)a;
+       const spa_aux_t *sb = (const spa_aux_t *)b;
 
-       if (sa->aux_guid < sb->aux_guid)
-               return (-1);
-       else if (sa->aux_guid > sb->aux_guid)
-               return (1);
-       else
-               return (0);
+       return (AVL_CMP(sa->aux_guid, sb->aux_guid));
 }
 
 void
@@ -1051,9 +1088,10 @@ spa_vdev_config_enter(spa_t *spa)
 void
 spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
 {
+       ASSERT(MUTEX_HELD(&spa_namespace_lock));
+
        int config_changed = B_FALSE;
 
-       ASSERT(MUTEX_HELD(&spa_namespace_lock));
        ASSERT(txg > spa_last_synced_txg(spa));
 
        spa->spa_pending_vdev = NULL;
@@ -1103,7 +1141,7 @@ spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
         * If the config changed, update the config cache.
         */
        if (config_changed)
-               spa_config_sync(spa, B_FALSE, B_TRUE);
+               spa_write_cachefile(spa, B_FALSE, B_TRUE);
 }
 
 /*
@@ -1156,13 +1194,21 @@ int
 spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error)
 {
        boolean_t config_changed = B_FALSE;
+       vdev_t *vdev_top;
+
+       if (vd == NULL || vd == spa->spa_root_vdev) {
+               vdev_top = spa->spa_root_vdev;
+       } else {
+               vdev_top = vd->vdev_top;
+       }
 
        if (vd != NULL || error == 0)
-               vdev_dtl_reassess(vd ? vd->vdev_top : spa->spa_root_vdev,
-                   0, 0, B_FALSE);
+               vdev_dtl_reassess(vdev_top, 0, 0, B_FALSE);
 
        if (vd != NULL) {
-               vdev_state_dirty(vd->vdev_top);
+               if (vd != spa->spa_root_vdev)
+                       vdev_state_dirty(vdev_top);
+
                config_changed = B_TRUE;
                spa->spa_config_generation++;
        }
@@ -1187,7 +1233,7 @@ spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error)
         */
        if (config_changed) {
                mutex_enter(&spa_namespace_lock);
-               spa_config_sync(spa, B_FALSE, B_TRUE);
+               spa_write_cachefile(spa, B_FALSE, B_TRUE);
                mutex_exit(&spa_namespace_lock);
        }
 
@@ -1265,7 +1311,7 @@ spa_rename(const char *name, const char *newname)
        /*
         * Sync the updated config cache.
         */
-       spa_config_sync(spa, B_FALSE, B_TRUE);
+       spa_write_cachefile(spa, B_FALSE, B_TRUE);
 
        spa_close(spa, FTAG);
 
@@ -1350,6 +1396,9 @@ spa_get_random(uint64_t range)
 
        ASSERT(range != 0);
 
+       if (range == 1)
+               return (0);
+
        (void) random_get_pseudo_bytes((void *)&r, sizeof (uint64_t));
 
        return (r % range);
@@ -1431,7 +1480,7 @@ zfs_panic_recover(const char *fmt, ...)
  * lowercase hexadecimal numbers that don't overflow.
  */
 uint64_t
-strtonum(const char *str, char **nptr)
+zfs_strtonum(const char *str, char **nptr)
 {
        uint64_t val = 0;
        char c;
@@ -1481,6 +1530,12 @@ spa_is_initializing(spa_t *spa)
        return (spa->spa_is_initializing);
 }
 
+boolean_t
+spa_indirect_vdevs_loaded(spa_t *spa)
+{
+       return (spa->spa_indirect_vdevs_loaded);
+}
+
 blkptr_t *
 spa_get_rootblkptr(spa_t *spa)
 {
@@ -1571,6 +1626,16 @@ spa_syncing_txg(spa_t *spa)
        return (spa->spa_syncing_txg);
 }
 
+/*
+ * Return the last txg where data can be dirtied. The final txgs
+ * will be used to just clear out any deferred frees that remain.
+ */
+uint64_t
+spa_final_dirty_txg(spa_t *spa)
+{
+       return (spa->spa_final_txg - TXG_DEFER_SIZE);
+}
+
 pool_state_t
 spa_state(spa_t *spa)
 {
@@ -1589,23 +1654,33 @@ spa_freeze_txg(spa_t *spa)
        return (spa->spa_freeze_txg);
 }
 
-/* ARGSUSED */
+/*
+ * Return the inflated asize for a logical write in bytes. This is used by the
+ * DMU to calculate the space a logical write will require on disk.
+ * If lsize is smaller than the largest physical block size allocatable on this
+ * pool we use its value instead, since the write will end up using the whole
+ * block anyway.
+ */
 uint64_t
-spa_get_asize(spa_t *spa, uint64_t lsize)
+spa_get_worst_case_asize(spa_t *spa, uint64_t lsize)
 {
-       return (lsize * spa_asize_inflation);
+       if (lsize == 0)
+               return (0);     /* No inflation needed */
+       return (MAX(lsize, 1 << spa->spa_max_ashift) * spa_asize_inflation);
 }
 
 /*
  * Return the amount of slop space in bytes.  It is 1/32 of the pool (3.2%),
- * or at least 32MB.
+ * or at least 128MB, unless that would cause it to be more than half the
+ * pool size.
  *
  * See the comment above spa_slop_shift for details.
  */
 uint64_t
-spa_get_slop_space(spa_t *spa) {
+spa_get_slop_space(spa_t *spa)
+{
        uint64_t space = spa_get_dspace(spa);
-       return (MAX(space >> spa_slop_shift, SPA_MINDEVSIZE >> 1));
+       return (MAX(space >> spa_slop_shift, MIN(space >> 1, spa_min_slop)));
 }
 
 uint64_t
@@ -1619,13 +1694,31 @@ spa_update_dspace(spa_t *spa)
 {
        spa->spa_dspace = metaslab_class_get_dspace(spa_normal_class(spa)) +
            ddt_get_dedup_dspace(spa);
+       if (spa->spa_vdev_removal != NULL) {
+               /*
+                * We can't allocate from the removing device, so
+                * subtract its size.  This prevents the DMU/DSL from
+                * filling up the (now smaller) pool while we are in the
+                * middle of removing the device.
+                *
+                * Note that the DMU/DSL doesn't actually know or care
+                * how much space is allocated (it does its own tracking
+                * of how much space has been logically used).  So it
+                * doesn't matter that the data we are moving may be
+                * allocated twice (on the old device and the new
+                * device).
+                */
+               vdev_t *vd = spa->spa_vdev_removal->svr_vdev;
+               spa->spa_dspace -= spa_deflate(spa) ?
+                   vd->vdev_stat.vs_dspace : vd->vdev_stat.vs_space;
+       }
 }
 
 /*
  * Return the failure mode that has been set to this pool. The default
  * behavior will be to block all I/Os when a complete failure occurs.
  */
-uint8_t
+uint64_t
 spa_get_failmode(spa_t *spa)
 {
        return (spa->spa_failmode);
@@ -1634,7 +1727,7 @@ spa_get_failmode(spa_t *spa)
 boolean_t
 spa_suspended(spa_t *spa)
 {
-       return (spa->spa_suspended);
+       return (spa->spa_suspended != ZIO_SUSPEND_NONE);
 }
 
 uint64_t
@@ -1714,6 +1807,31 @@ spa_deadman_synctime(spa_t *spa)
        return (spa->spa_deadman_synctime);
 }
 
+uint64_t
+spa_deadman_ziotime(spa_t *spa)
+{
+       return (spa->spa_deadman_ziotime);
+}
+
+uint64_t
+spa_get_deadman_failmode(spa_t *spa)
+{
+       return (spa->spa_deadman_failmode);
+}
+
+void
+spa_set_deadman_failmode(spa_t *spa, const char *failmode)
+{
+       if (strcmp(failmode, "wait") == 0)
+               spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT;
+       else if (strcmp(failmode, "continue") == 0)
+               spa->spa_deadman_failmode = ZIO_FAILURE_MODE_CONTINUE;
+       else if (strcmp(failmode, "panic") == 0)
+               spa->spa_deadman_failmode = ZIO_FAILURE_MODE_PANIC;
+       else
+               spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT;
+}
+
 uint64_t
 dva_get_dsize_sync(spa_t *spa, const dva_t *dva)
 {
@@ -1736,9 +1854,8 @@ uint64_t
 bp_get_dsize_sync(spa_t *spa, const blkptr_t *bp)
 {
        uint64_t dsize = 0;
-       int d;
 
-       for (d = 0; d < BP_GET_NDVAS(bp); d++)
+       for (int d = 0; d < BP_GET_NDVAS(bp); d++)
                dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
 
        return (dsize);
@@ -1748,11 +1865,10 @@ uint64_t
 bp_get_dsize(spa_t *spa, const blkptr_t *bp)
 {
        uint64_t dsize = 0;
-       int d;
 
        spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
 
-       for (d = 0; d < BP_GET_NDVAS(bp); d++)
+       for (int d = 0; d < BP_GET_NDVAS(bp); d++)
                dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
 
        spa_config_exit(spa, SCL_VDEV, FTAG);
@@ -1774,11 +1890,8 @@ spa_name_compare(const void *a1, const void *a2)
        int s;
 
        s = strcmp(s1->spa_name, s2->spa_name);
-       if (s > 0)
-               return (1);
-       if (s < 0)
-               return (-1);
-       return (0);
+
+       return (AVL_ISIGN(s));
 }
 
 void
@@ -1827,17 +1940,22 @@ spa_init(int mode)
        refcount_init();
        unique_init();
        range_tree_init();
+       metaslab_alloc_trace_init();
        ddt_init();
        zio_init();
        dmu_init();
        zil_init();
        vdev_cache_stat_init();
+       vdev_mirror_stat_init();
        vdev_raidz_math_init();
+       vdev_file_init();
        zfs_prop_init();
        zpool_prop_init();
        zpool_feature_init();
        spa_config_load();
        l2arc_start();
+       scan_init();
+       qat_init();
 }
 
 void
@@ -1847,16 +1965,21 @@ spa_fini(void)
 
        spa_evict_all();
 
+       vdev_file_fini();
        vdev_cache_stat_fini();
+       vdev_mirror_stat_fini();
        vdev_raidz_math_fini();
        zil_fini();
        dmu_fini();
        zio_fini();
        ddt_fini();
+       metaslab_alloc_trace_fini();
        range_tree_fini();
        unique_fini();
        refcount_fini();
        fm_fini();
+       scan_fini();
+       qat_fini();
 
        avl_destroy(&spa_namespace_avl);
        avl_destroy(&spa_spare_avl);
@@ -1951,7 +2074,13 @@ spa_scan_stat_init(spa_t *spa)
 {
        /* data not stored on disk */
        spa->spa_scan_pass_start = gethrestime_sec();
+       if (dsl_scan_is_paused_scrub(spa->spa_dsl_pool->dp_scan))
+               spa->spa_scan_pass_scrub_pause = spa->spa_scan_pass_start;
+       else
+               spa->spa_scan_pass_scrub_pause = 0;
+       spa->spa_scan_pass_scrub_spent_paused = 0;
        spa->spa_scan_pass_exam = 0;
+       spa->spa_scan_pass_issued = 0;
        vdev_scan_stat_init(spa->spa_root_vdev);
 }
 
@@ -1969,6 +2098,7 @@ spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps)
 
        /* data stored on disk */
        ps->pss_func = scn->scn_phys.scn_func;
+       ps->pss_state = scn->scn_phys.scn_state;
        ps->pss_start_time = scn->scn_phys.scn_start_time;
        ps->pss_end_time = scn->scn_phys.scn_end_time;
        ps->pss_to_examine = scn->scn_phys.scn_to_examine;
@@ -1976,11 +2106,15 @@ spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps)
        ps->pss_to_process = scn->scn_phys.scn_to_process;
        ps->pss_processed = scn->scn_phys.scn_processed;
        ps->pss_errors = scn->scn_phys.scn_errors;
-       ps->pss_state = scn->scn_phys.scn_state;
 
        /* data not stored on disk */
-       ps->pss_pass_start = spa->spa_scan_pass_start;
        ps->pss_pass_exam = spa->spa_scan_pass_exam;
+       ps->pss_pass_start = spa->spa_scan_pass_start;
+       ps->pss_pass_scrub_pause = spa->spa_scan_pass_scrub_pause;
+       ps->pss_pass_scrub_spent_paused = spa->spa_scan_pass_scrub_spent_paused;
+       ps->pss_pass_issued = spa->spa_scan_pass_issued;
+       ps->pss_issued =
+           scn->scn_issued_before_pass + spa->spa_scan_pass_issued;
 
        return (0);
 }
@@ -2000,6 +2134,49 @@ spa_maxblocksize(spa_t *spa)
                return (SPA_OLD_MAXBLOCKSIZE);
 }
 
+
+/*
+ * Returns the txg that the last device removal completed. No indirect mappings
+ * have been added since this txg.
+ */
+uint64_t
+spa_get_last_removal_txg(spa_t *spa)
+{
+       uint64_t vdevid;
+       uint64_t ret = -1ULL;
+
+       spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
+       /*
+        * sr_prev_indirect_vdev is only modified while holding all the
+        * config locks, so it is sufficient to hold SCL_VDEV as reader when
+        * examining it.
+        */
+       vdevid = spa->spa_removing_phys.sr_prev_indirect_vdev;
+
+       while (vdevid != -1ULL) {
+               vdev_t *vd = vdev_lookup_top(spa, vdevid);
+               vdev_indirect_births_t *vib = vd->vdev_indirect_births;
+
+               ASSERT3P(vd->vdev_ops, ==, &vdev_indirect_ops);
+
+               /*
+                * If the removal did not remap any data, we don't care.
+                */
+               if (vdev_indirect_births_count(vib) != 0) {
+                       ret = vdev_indirect_births_last_entry_txg(vib);
+                       break;
+               }
+
+               vdevid = vd->vdev_indirect_config.vic_prev_indirect_vdev;
+       }
+       spa_config_exit(spa, SCL_VDEV, FTAG);
+
+       IMPLY(ret != -1ULL,
+           spa_feature_is_active(spa, SPA_FEATURE_DEVICE_REMOVAL));
+
+       return (ret);
+}
+
 int
 spa_maxdnodesize(spa_t *spa)
 {
@@ -2009,7 +2186,58 @@ spa_maxdnodesize(spa_t *spa)
                return (DNODE_MIN_SIZE);
 }
 
+boolean_t
+spa_multihost(spa_t *spa)
+{
+       return (spa->spa_multihost ? B_TRUE : B_FALSE);
+}
+
+unsigned long
+spa_get_hostid(void)
+{
+       unsigned long myhostid;
+
+#ifdef _KERNEL
+       myhostid = zone_get_hostid(NULL);
+#else  /* _KERNEL */
+       /*
+        * We're emulating the system's hostid in userland, so
+        * we can't use zone_get_hostid().
+        */
+       (void) ddi_strtoul(hw_serial, NULL, 10, &myhostid);
+#endif /* _KERNEL */
+
+       return (myhostid);
+}
+
 #if defined(_KERNEL) && defined(HAVE_SPL)
+
+#include <linux/mod_compat.h>
+
+static int
+param_set_deadman_failmode(const char *val, zfs_kernel_param_t *kp)
+{
+       spa_t *spa = NULL;
+       char *p;
+
+       if (val == NULL)
+               return (SET_ERROR(-EINVAL));
+
+       if ((p = strchr(val, '\n')) != NULL)
+               *p = '\0';
+
+       if (strcmp(val, "wait") != 0 && strcmp(val, "continue") != 0 &&
+           strcmp(val, "panic"))
+               return (SET_ERROR(-EINVAL));
+
+       mutex_enter(&spa_namespace_lock);
+       while ((spa = spa_next(spa)) != NULL)
+               spa_set_deadman_failmode(spa, val);
+       mutex_exit(&spa_namespace_lock);
+
+       return (param_set_charp(val, kp));
+}
+
 /* Namespace manipulation */
 EXPORT_SYMBOL(spa_lookup);
 EXPORT_SYMBOL(spa_add);
@@ -2051,7 +2279,6 @@ EXPORT_SYMBOL(spa_version);
 EXPORT_SYMBOL(spa_state);
 EXPORT_SYMBOL(spa_load_state);
 EXPORT_SYMBOL(spa_freeze_txg);
-EXPORT_SYMBOL(spa_get_asize);
 EXPORT_SYMBOL(spa_get_dspace);
 EXPORT_SYMBOL(spa_update_dspace);
 EXPORT_SYMBOL(spa_deflate);
@@ -2087,9 +2314,9 @@ EXPORT_SYMBOL(spa_has_slogs);
 EXPORT_SYMBOL(spa_is_root);
 EXPORT_SYMBOL(spa_writeable);
 EXPORT_SYMBOL(spa_mode);
-
 EXPORT_SYMBOL(spa_namespace_lock);
 
+/* BEGIN CSTYLED */
 module_param(zfs_flags, uint, 0644);
 MODULE_PARM_DESC(zfs_flags, "Set additional debugging flags");
 
@@ -2101,15 +2328,29 @@ MODULE_PARM_DESC(zfs_free_leak_on_eio,
        "Set to ignore IO errors during free and permanently leak the space");
 
 module_param(zfs_deadman_synctime_ms, ulong, 0644);
-MODULE_PARM_DESC(zfs_deadman_synctime_ms, "Expiration time in milliseconds");
+MODULE_PARM_DESC(zfs_deadman_synctime_ms,
+       "Pool sync expiration time in milliseconds");
+
+module_param(zfs_deadman_ziotime_ms, ulong, 0644);
+MODULE_PARM_DESC(zfs_deadman_ziotime_ms,
+       "IO expiration time in milliseconds");
+
+module_param(zfs_deadman_checktime_ms, ulong, 0644);
+MODULE_PARM_DESC(zfs_deadman_checktime_ms,
+       "Dead I/O check interval in milliseconds");
 
 module_param(zfs_deadman_enabled, int, 0644);
 MODULE_PARM_DESC(zfs_deadman_enabled, "Enable deadman timer");
 
+module_param_call(zfs_deadman_failmode, param_set_deadman_failmode,
+    param_get_charp, &zfs_deadman_failmode, 0644);
+MODULE_PARM_DESC(zfs_deadman_failmode, "Failmode for deadman timer");
+
 module_param(spa_asize_inflation, int, 0644);
 MODULE_PARM_DESC(spa_asize_inflation,
        "SPA size estimate multiplication factor");
 
 module_param(spa_slop_shift, int, 0644);
 MODULE_PARM_DESC(spa_slop_shift, "Reserved free space in pool");
+/* END CSTYLED */
 #endif