b05147c356
Change patch format to remove Git version * Patches 0001-0122 only have the patch format modified Update to the head of the upstream staging branch plus redhat patches * Patches 0123-0134 & 1036-0142 are from the upstream staging branch * Patches 0143-1046 have been submitted upstream * Patch 0156 is a Red Hat only patch. Red Hat udev rules set ID_SERIAL from 60-persistent-storage.rules instead of 55-scsi-sg3_id.rules. Multipath's parse_vpd_pg83() function needs to match the ID_SERIAL value from udev. Rename files * Previous patches 0123-0132 are now patches 1035 & 0147-0155
90 lines
2.7 KiB
Diff
90 lines
2.7 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);
|