diff options
author | Brian Behlendorf <[email protected]> | 2023-04-20 10:25:16 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-20 10:25:16 -0700 |
commit | a10c64561648f9cb9f90959c57625d3ffdaea156 (patch) | |
tree | 1d01248bbcf20df7f2052237ac308979746b4162 /tests | |
parent | 3e4ed4213d7b4e8892e9def8b06363391d8dbd60 (diff) |
ZTS: zvol_misc_trim retry busy export
Retry the export if the pool is busy due to an open zvol.
Observed in the CI on Fedora 37.
cannot export 'testpool': pool is busy
ERROR: zpool export testpool exited 1
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #14769
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_trim.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_trim.ksh b/tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_trim.ksh index 2c4ef28ab..46cac3ecb 100755 --- a/tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_trim.ksh +++ b/tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_trim.ksh @@ -125,12 +125,12 @@ log_must $trimcmd $zvolpath set_blk_mq 1 -log_must zpool export $TESTPOOL +log_must_busy zpool export $TESTPOOL log_must zpool import $TESTPOOL do_test set_blk_mq 0 -log_must zpool export $TESTPOOL +log_must_busy zpool export $TESTPOOL log_must zpool import $TESTPOOL do_test |