2cf40b2f98
- Add 0073-libmultipath-util-constify-function-arguments.patch - Add 0074-libmultipath-constify-file-argument-in-config-parser.patch - Add 0075-libmultipath-provide-defaults-for-get-put-_multipath.patch - Add 0076-libmpathpersist-allow-using-libmultipath-get-put-_mu.patch - Add 0077-multipath-use-get_put-_multipath_config-from-libmult.patch - Add 0078-mpathpersist-use-get-put-_multipath_config-from-libm.patch - Add 0079-libmultipath-add-udev-and-logsink-symbols.patch - Add 0080-multipath-remove-logsink-and-udev.patch - Add 0081-libmpathpersist-call-libmultipath_-init-exit.patch - Add 0082-mpathpersist-remove-logsink-and-udev.patch - Add 0083-multipathd-remove-logsink-and-udev.patch * Pull in upsteam library changes - Add 0084-libmpathvalid-use-default-_multipath_config-udev-and.patch - Add 0085-Revert-libmultipath-add-ignore_udev_uid-option.patch - Add 0086-libmultipath-change-log-level-for-null-uid_attribute.patch - Add 0087-libmultipath-orphan_paths-avoid-BUG-message.patch * update libmpathvalid to use upstream library changes. changes submitted upstream
50 lines
1.2 KiB
Diff
50 lines
1.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Thu, 24 Sep 2020 15:37:13 +0200
|
|
Subject: [PATCH] multipath: remove logsink and udev
|
|
|
|
We can use libmultipath's symbols now.
|
|
|
|
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
multipath/main.c | 7 ++-----
|
|
1 file changed, 2 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/multipath/main.c b/multipath/main.c
|
|
index 879d7ac9..322b30e0 100644
|
|
--- a/multipath/main.c
|
|
+++ b/multipath/main.c
|
|
@@ -65,9 +65,6 @@
|
|
#include "file.h"
|
|
#include "valid.h"
|
|
|
|
-int logsink;
|
|
-struct udev *udev;
|
|
-
|
|
/*
|
|
* Return values of configure(), check_path_valid(), and main().
|
|
*/
|
|
@@ -879,7 +876,7 @@ main (int argc, char *argv[])
|
|
int retries = -1;
|
|
bool enable_foreign = false;
|
|
|
|
- udev = udev_new();
|
|
+ libmultipath_init();
|
|
logsink = 0;
|
|
if (init_config(DEFAULT_CONFIGFILE))
|
|
exit(RTVL_FAIL);
|
|
@@ -1138,7 +1135,7 @@ out_free_config:
|
|
*/
|
|
put_multipath_config(conf);
|
|
uninit_config();
|
|
- udev_unref(udev);
|
|
+ libmultipath_exit();
|
|
if (dev)
|
|
FREE(dev);
|
|
#ifdef _DEBUG_
|
|
--
|
|
2.17.2
|
|
|