The tur checker has a message for initialization failure. We might as
well use it.

Signed-off-by: Benjamin Marzinski <bmarz...@redhat.com>
---
 libmultipath/checkers/tur.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libmultipath/checkers/tur.c b/libmultipath/checkers/tur.c
index a5045f10..a19becf5 100644
--- a/libmultipath/checkers/tur.c
+++ b/libmultipath/checkers/tur.c
@@ -400,8 +400,10 @@ int libcheck_check(struct checker * c)
                         * It fails only in OOM situations. In this case, return
                         * PATH_UNCHECKED to avoid prematurely failing the path.
                         */
-                       if (libcheck_init(c) != 0)
+                       if (libcheck_init(c) != 0) {
+                               c->msgid = MSG_TUR_FAILED;
                                return PATH_UNCHECKED;
+                       }
                        ((struct tur_checker_context *)c->context)->nr_timeouts 
= ct->nr_timeouts;
 
                        if (!uatomic_sub_return(&ct->holders, 1))
-- 
2.17.2

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel

Reply via email to