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
58 lines
1.5 KiB
Diff
58 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Thu, 24 Sep 2020 15:37:16 +0200
|
|
Subject: [PATCH] multipathd: remove logsink and udev
|
|
|
|
We can use the symbols from libmultipath now.
|
|
|
|
Signed-off-by: Martin Wilck <mwilck@suse.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
multipathd/main.c | 9 +++------
|
|
1 file changed, 3 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
|
index 48b62937..6a4b8b83 100644
|
|
--- a/multipathd/main.c
|
|
+++ b/multipathd/main.c
|
|
@@ -113,7 +113,6 @@ struct mpath_event_param
|
|
struct multipath *mpp;
|
|
};
|
|
|
|
-int logsink;
|
|
int uxsock_timeout;
|
|
int verbosity;
|
|
int bindings_read_only;
|
|
@@ -144,8 +143,6 @@ static inline enum daemon_status get_running_state(void)
|
|
*/
|
|
struct vectors * gvecs;
|
|
|
|
-struct udev * udev;
|
|
-
|
|
struct config *multipath_conf;
|
|
|
|
/* Local variables */
|
|
@@ -3009,8 +3006,6 @@ child (__attribute__((unused)) void *param)
|
|
conf = rcu_dereference(multipath_conf);
|
|
rcu_assign_pointer(multipath_conf, NULL);
|
|
call_rcu(&conf->rcu, rcu_free_config);
|
|
- udev_unref(udev);
|
|
- udev = NULL;
|
|
pthread_attr_destroy(&waiter_attr);
|
|
pthread_attr_destroy(&io_err_stat_attr);
|
|
#ifdef _DEBUG_
|
|
@@ -3114,7 +3109,9 @@ main (int argc, char *argv[])
|
|
|
|
pthread_cond_init_mono(&config_cond);
|
|
|
|
- udev = udev_new();
|
|
+ libmultipath_init();
|
|
+ if (atexit(libmultipath_exit))
|
|
+ condlog(3, "failed to register exit handler for libmultipath");
|
|
libmp_udev_set_sync_support(0);
|
|
|
|
while ((arg = getopt(argc, argv, ":dsv:k::Bniw")) != EOF ) {
|
|
--
|
|
2.17.2
|
|
|