28d3ae407e
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/device-mapper-multipath.git#26a2cd7a3e189bf91263d17bc8a8c449cc043fb0
93 lines
2.8 KiB
Diff
93 lines
2.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Wed, 23 Sep 2020 21:02:45 +0200
|
|
Subject: [PATCH] libmultipath: add libmp_dm_exit()
|
|
|
|
This function prepares for calling dm_lib_exit() on program exit.
|
|
It undoes changes to libdm internals done by libmultipath.
|
|
It doesn't call dm_lib_exit(), as the caller may want to keep
|
|
libdm active.
|
|
|
|
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
libmultipath/config.c | 1 +
|
|
libmultipath/config.h | 2 ++
|
|
libmultipath/devmapper.c | 15 +++++++++++++++
|
|
libmultipath/devmapper.h | 1 +
|
|
4 files changed, 19 insertions(+)
|
|
|
|
diff --git a/libmultipath/config.c b/libmultipath/config.c
|
|
index f74417c6..b9cb4131 100644
|
|
--- a/libmultipath/config.c
|
|
+++ b/libmultipath/config.c
|
|
@@ -60,6 +60,7 @@ int libmultipath_init(void)
|
|
static void _libmultipath_exit(void)
|
|
{
|
|
libmultipath_exit_called = true;
|
|
+ libmp_dm_exit();
|
|
udev_unref(udev);
|
|
}
|
|
|
|
diff --git a/libmultipath/config.h b/libmultipath/config.h
|
|
index f478df71..5d460359 100644
|
|
--- a/libmultipath/config.h
|
|
+++ b/libmultipath/config.h
|
|
@@ -271,6 +271,8 @@ int libmultipath_init(void);
|
|
*
|
|
* This function un-initializes libmultipath data structures.
|
|
* It is recommended to call this function at program exit.
|
|
+ * If the application also calls dm_lib_exit(), it should do so
|
|
+ * after libmultipath_exit().
|
|
*
|
|
* Calls to libmultipath_init() after libmultipath_exit() will fail
|
|
* (in other words, libmultipath can't be re-initialized).
|
|
diff --git a/libmultipath/devmapper.c b/libmultipath/devmapper.c
|
|
index 4eb6f539..e60ab493 100644
|
|
--- a/libmultipath/devmapper.c
|
|
+++ b/libmultipath/devmapper.c
|
|
@@ -335,6 +335,20 @@ void libmp_udev_set_sync_support(int on)
|
|
libmp_dm_udev_sync = !!on;
|
|
}
|
|
|
|
+static bool libmp_dm_init_called;
|
|
+void libmp_dm_exit(void)
|
|
+{
|
|
+ if (!libmp_dm_init_called)
|
|
+ return;
|
|
+
|
|
+ /* switch back to default libdm logging */
|
|
+ dm_log_init(NULL);
|
|
+#ifdef LIBDM_API_HOLD_CONTROL
|
|
+ /* make sure control fd is closed in dm_lib_release() */
|
|
+ dm_hold_control_dev(0);
|
|
+#endif
|
|
+}
|
|
+
|
|
static void libmp_dm_init(void)
|
|
{
|
|
struct config *conf;
|
|
@@ -351,6 +365,7 @@ static void libmp_dm_init(void)
|
|
dm_hold_control_dev(1);
|
|
#endif
|
|
dm_udev_set_sync_support(libmp_dm_udev_sync);
|
|
+ libmp_dm_init_called = true;
|
|
}
|
|
|
|
static void _do_skip_libmp_dm_init(void)
|
|
diff --git a/libmultipath/devmapper.h b/libmultipath/devmapper.h
|
|
index fa6b3c53..e29b4d41 100644
|
|
--- a/libmultipath/devmapper.h
|
|
+++ b/libmultipath/devmapper.h
|
|
@@ -35,6 +35,7 @@ enum {
|
|
|
|
int dm_prereq(unsigned int *v);
|
|
void skip_libmp_dm_init(void);
|
|
+void libmp_dm_exit(void);
|
|
void libmp_udev_set_sync_support(int on);
|
|
struct dm_task *libmp_dm_task_create(int task);
|
|
int dm_simplecmd_flush (int, const char *, uint16_t);
|
|
--
|
|
2.17.2
|
|
|