diff options
author | Tim Chase <[email protected]> | 2016-03-07 07:35:29 -0600 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-03-09 10:41:31 -0800 |
commit | f764edf01634444e1615a0350834ffe568f7f82f (patch) | |
tree | 3cbc7d4702709bfbf2f65bab82e469a00ddced80 | |
parent | 95003f709859fd104aad258e56bcc4dc5c8cfcf0 (diff) |
Change KM_SLEEP to TQ_SLEEP in spa_deadman()
Since they both evaluate to zero, this is a semi-cosmetic change
but the latter is the proper value to use as an argument to
taskq_dispatch_delay().
Signed-off-by: Tim Chase <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #4393
-rw-r--r-- | module/zfs/spa_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/spa_misc.c b/module/zfs/spa_misc.c index ec7c807a4..6f2ba52f4 100644 --- a/module/zfs/spa_misc.c +++ b/module/zfs/spa_misc.c @@ -529,7 +529,7 @@ spa_deadman(void *arg) vdev_deadman(spa->spa_root_vdev); spa->spa_deadman_tqid = taskq_dispatch_delay(system_taskq, - spa_deadman, spa, KM_SLEEP, ddi_get_lbolt() + + spa_deadman, spa, TQ_SLEEP, ddi_get_lbolt() + NSEC_TO_TICK(spa->spa_deadman_synctime)); } |