mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
Emit an error message before MMP suspends pool
In mmp_thread(), emit an MMP specific error message before calling zio_suspend() so that the administrator will understand why the pool is being suspended. Reviewed-by: Olaf Faaland <faaland1@llnl.gov> Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: John L. Hammond <john.hammond@intel.com> Closes #7048
This commit is contained in:
parent
43cb30b3ce
commit
51d1b58ef3
@ -26,6 +26,7 @@
|
||||
#include <sys/mmp.h>
|
||||
#include <sys/spa.h>
|
||||
#include <sys/spa_impl.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/vdev.h>
|
||||
#include <sys/vdev_impl.h>
|
||||
#include <sys/zfs_context.h>
|
||||
@ -429,6 +430,10 @@ mmp_thread(void *arg)
|
||||
*/
|
||||
if (!suspended && mmp_fail_intervals && multihost &&
|
||||
(start - mmp->mmp_last_write) > max_fail_ns) {
|
||||
cmn_err(CE_WARN, "MMP writes to pool '%s' have not "
|
||||
"succeeded in over %llus; suspending pool",
|
||||
spa_name(spa),
|
||||
NSEC2SEC(start - mmp->mmp_last_write));
|
||||
zio_suspend(spa, NULL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user