From: Olaf Faaland Date: Thu, 22 Feb 2018 17:14:46 +0000 (-0800) Subject: Do not initiate MMP writes while pool is suspended X-Git-Tag: zfs-0.7.7~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1f61f05b4b2edc77ec5f3d28d041d7b3c873f01;p=zfs Do not initiate MMP writes while pool is suspended While the pool is suspended on host A, it may be imported on host B. If host A continued to write MMP blocks, it would be blindly overwriting MMP blocks written by host B, and the blocks written by host A would have outdated txg information. Reviewed-by: Giuseppe Di Natale Reviewed-by: Brian Behlendorf Signed-off-by: Olaf Faaland Closes #7182 --- diff --git a/module/zfs/mmp.c b/module/zfs/mmp.c index 1dfb7c05b..d003d79de 100644 --- a/module/zfs/mmp.c +++ b/module/zfs/mmp.c @@ -437,7 +437,7 @@ mmp_thread(spa_t *spa) zio_suspend(spa, NULL); } - if (multihost) + if (multihost && !suspended) mmp_write_uberblock(spa); CALLB_CPR_SAFE_BEGIN(&cpr);