We should only log the message if the check interval has indeed changed. Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- multipathd/main.c | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/multipathd/main.c b/multipathd/main.c index 8c0866d..7f83a7a 100644 --- a/multipathd/main.c +++ b/multipathd/main.c @@ -1209,18 +1209,20 @@ check_path (struct vectors * vecs, struct path * pp) reinstate_path(pp, 0); } else { LOG_MSG(4, checker_message(&pp->checker)); - /* - * double the next check delay. - * max at conf->max_checkint - */ - if (pp->checkint < (conf->max_checkint / 2)) - pp->checkint = 2 * pp->checkint; - else - pp->checkint = conf->max_checkint; - - pp->tick = pp->checkint; - condlog(4, "%s: delay next check %is", - pp->dev_t, pp->tick); + if (pp->checkint != conf->max_checkint) { + /* + * double the next check delay. + * max at conf->max_checkint + */ + if (pp->checkint < (conf->max_checkint / 2)) + pp->checkint = 2 * pp->checkint; + else + pp->checkint = conf->max_checkint; + + pp->tick = pp->checkint; + condlog(4, "%s: delay next check %is", + pp->dev_t, pp->tick); + } } } else if (newstate == PATH_DOWN) { -- 1.7.10.4 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel