50 lines
1.6 KiB
Diff
50 lines
1.6 KiB
Diff
From 9dfa6f38793f6b5f7de2a4148ab2f7790e3c39da Mon Sep 17 00:00:00 2001
|
|
From: David Teigland <teigland@redhat.com>
|
|
Date: Fri, 27 May 2022 12:38:43 -0500
|
|
Subject: [PATCH] devices file: move clean up after command is run
|
|
|
|
devices_file_exit wasn't being called between lvm_shell
|
|
commands, so the file lock wouldn't be released.
|
|
|
|
Conflict: toolcontext.c context adaptation
|
|
---
|
|
lib/commands/toolcontext.c | 2 --
|
|
tools/lvmcmdline.c | 1 +
|
|
2 files changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/commands/toolcontext.c b/lib/commands/toolcontext.c
|
|
index 4cb81bf94..2666d7b42 100644
|
|
--- a/lib/commands/toolcontext.c
|
|
+++ b/lib/commands/toolcontext.c
|
|
@@ -1921,7 +1921,6 @@ int refresh_toolcontext(struct cmd_context *cmd)
|
|
_destroy_segtypes(&cmd->segtypes);
|
|
_destroy_formats(cmd, &cmd->formats);
|
|
|
|
- devices_file_exit(cmd);
|
|
if (!dev_cache_exit())
|
|
stack;
|
|
_destroy_dev_types(cmd);
|
|
@@ -2053,7 +2052,6 @@ void destroy_toolcontext(struct cmd_context *cmd)
|
|
set_global_cmdline(NULL);
|
|
if (cmd->mem)
|
|
dm_pool_destroy(cmd->mem);
|
|
- devices_file_exit(cmd);
|
|
dev_cache_exit();
|
|
_destroy_dev_types(cmd);
|
|
_destroy_tags(cmd);
|
|
diff --git a/tools/lvmcmdline.c b/tools/lvmcmdline.c
|
|
index 1e3547ed7..b052d698f 100644
|
|
--- a/tools/lvmcmdline.c
|
|
+++ b/tools/lvmcmdline.c
|
|
@@ -3292,6 +3292,7 @@ int lvm_run_command(struct cmd_context *cmd, int argc, char **argv)
|
|
hints_exit(cmd);
|
|
lvmcache_destroy(cmd, 1, 1);
|
|
label_scan_destroy(cmd);
|
|
+ devices_file_exit(cmd);
|
|
|
|
if ((config_string_cft = remove_config_tree_by_source(cmd, CONFIG_STRING)))
|
|
dm_config_destroy(config_string_cft);
|
|
--
|
|
2.33.0
|
|
|