When a SCSI device is quiesced we cannot send any I/O requests to it, so we should be returning 'PATH_DOWN' here. Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- libmultipath/discovery.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libmultipath/discovery.c b/libmultipath/discovery.c index 0b5fd1d..050264e 100644 --- a/libmultipath/discovery.c +++ b/libmultipath/discovery.c @@ -798,7 +798,8 @@ path_offline (struct path * pp) condlog(3, "%s: path state = %s", pp->dev, buff); if (!strncmp(buff, "offline", 7) || - !strncmp(buff, "transport-offline", 17)) { + !strncmp(buff, "transport-offline", 17) || + !strncmp(buff, "quiesce", 7)) { pp->offline = 1; return PATH_DOWN; } -- 1.7.10.4 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel