Blame SOURCES/sid-0-0-5-modules-ucmd-dm_mpath-sync-with-mpath_valid-changes.patch

41ea92
commit 8bb6f6fd35342ab070d1a8a8ac4f2dbd18b7c063
41ea92
Author: Peter Rajnoha <prajnoha@redhat.com>
41ea92
Date:   Mon Jan 25 10:42:45 2021 +0100
41ea92
41ea92
    modules: ucmd: dm_mpath: sync with mpath_valid changes
41ea92
    
41ea92
    Use symbolic MPATH_LOG_PRIO_NOLOG (instead of '-1') and MPATH_LOG_STDERR
41ea92
    (instead of MPATH_LOG_STDOUT which was removed) for mpathvalid_init
41ea92
    call.
41ea92
---
41ea92
 src/modules/ucmd/block/dm_mpath/dm_mpath.c | 2 +-
41ea92
 1 file changed, 1 insertion(+), 1 deletion(-)
41ea92
41ea92
diff --git a/src/modules/ucmd/block/dm_mpath/dm_mpath.c b/src/modules/ucmd/block/dm_mpath/dm_mpath.c
41ea92
index 2c474b6..a31fee0 100644
41ea92
--- a/src/modules/ucmd/block/dm_mpath/dm_mpath.c
41ea92
+++ b/src/modules/ucmd/block/dm_mpath/dm_mpath.c
41ea92
@@ -39,7 +39,7 @@ static int _dm_mpath_init(struct module *module, struct sid_ucmd_mod_ctx *ucmd_m
41ea92
 {
41ea92
 	log_debug(MID, "init");
41ea92
 	/* TODO - set up dm/udev logging */
41ea92
-	if (mpathvalid_init(-1, MPATH_LOG_STDIO)) {
41ea92
+	if (mpathvalid_init(MPATH_LOG_PRIO_NOLOG, MPATH_LOG_STDERR)) {
41ea92
 		log_error(MID, "failed to initialize mpathvalid");
41ea92
 		return -1;
41ea92
 	}