Blame SOURCES/0049-devices-file-move-clean-up-after-command-is-run.patch

38b7b2
From eda98e4b9418568d6793d2c853aaa54db051cc9f Mon Sep 17 00:00:00 2001
38b7b2
From: David Teigland <teigland@redhat.com>
38b7b2
Date: Fri, 27 May 2022 12:38:43 -0500
38b7b2
Subject: [PATCH 49/54] devices file: move clean up after command is run
38b7b2
38b7b2
devices_file_exit wasn't being called between lvm_shell
38b7b2
commands, so the file lock wouldn't be released.
38b7b2
---
38b7b2
 lib/commands/toolcontext.c | 1 -
38b7b2
 tools/lvmcmdline.c         | 1 +
38b7b2
 2 files changed, 1 insertion(+), 1 deletion(-)
38b7b2
38b7b2
diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c
38b7b2
index a0c78ddd6..7db5e11a1 100644
38b7b2
--- a/lib/commands/toolcontext.c
38b7b2
+++ b/lib/commands/toolcontext.c
38b7b2
@@ -1912,7 +1912,6 @@ int refresh_toolcontext(struct cmd_context *cmd)
38b7b2
 	_destroy_segtypes(&cmd->segtypes);
38b7b2
 	_destroy_formats(cmd, &cmd->formats);
38b7b2
 
38b7b2
-	devices_file_exit(cmd);
38b7b2
 	if (!dev_cache_exit())
38b7b2
 		stack;
38b7b2
 	_destroy_dev_types(cmd);
38b7b2
diff --git a/tools/lvmcmdline.c b/tools/lvmcmdline.c
38b7b2
index 1727ba089..eb63fd9b5 100644
38b7b2
--- a/tools/lvmcmdline.c
38b7b2
+++ b/tools/lvmcmdline.c
38b7b2
@@ -3306,6 +3306,7 @@ int lvm_run_command(struct cmd_context *cmd, int argc, char **argv)
38b7b2
 	hints_exit(cmd);
38b7b2
 	lvmcache_destroy(cmd, 1, 1);
38b7b2
 	label_scan_destroy(cmd);
38b7b2
+	devices_file_exit(cmd);
38b7b2
 
38b7b2
 	if ((config_string_cft = remove_config_tree_by_source(cmd, CONFIG_STRING)))
38b7b2
 		dm_config_destroy(config_string_cft);
38b7b2
-- 
38b7b2
2.34.3
38b7b2