diff options
author | Tom Caputi <[email protected]> | 2018-10-10 16:48:33 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-10-24 14:36:21 -0700 |
commit | 9410257800789cde96abf135663930d0f44661e6 (patch) | |
tree | 367ea0f0053fcfb3b57e2810f30faa693fc14563 /module/zfs/spa_misc.c | |
parent | e871a8f0584a3259c342f8e3e817159600302832 (diff) |
Fix random ztest_deadman_thread failures
The zloop test has been failing in buildbot for the last few weeks
with various failures in ztest_deadman_thread(). This is due to the
fact that this thread is not stopped when performing pool import /
export tests as it should be. This patch simply corrects this.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Serapheim Dimitropoulos <[email protected]>
Reviewed-by: Matthew Ahrens <[email protected]>
Signed-off-by: Tom Caputi <[email protected]>
Closes #8010
Diffstat (limited to 'module/zfs/spa_misc.c')
-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 ae9eb4de7..a3ac70f07 100644 --- a/module/zfs/spa_misc.c +++ b/module/zfs/spa_misc.c @@ -312,7 +312,7 @@ 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_checktime_ms = 60000ULL; +unsigned long zfs_deadman_checktime_ms = 60000ULL; /* * By default the deadman is enabled. |