summaryrefslogtreecommitdiff
path: root/lib/label
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2022-03-01 12:22:46 -0600
committerDavid Teigland <teigland@redhat.com>2022-03-01 14:11:05 -0600
commitcc73d99886dfd6e0da3c6ca685669f77fac3c1cd (patch)
tree18cfeecf27ba625bfed5d51d9464ea6caa6d3108 /lib/label
parent7b1a857d5ac480b789af07d85e55bc87c6a76934 (diff)
downloadlvm2-cc73d99886dfd6e0da3c6ca685669f77fac3c1cd.tar.gz
devices: only close PVs on LVs when scan_lvs is enabled
This code is only needed when lvm scans PVs that are stacked on LVs.
Diffstat (limited to 'lib/label')
-rw-r--r--lib/label/label.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/label/label.c b/lib/label/label.c
index c20863875..e6bc791a7 100644
--- a/lib/label/label.c
+++ b/lib/label/label.c
@@ -1661,9 +1661,11 @@ void label_scan_invalidate_lvs(struct cmd_context *cmd, struct dm_list *lvs)
dev_t devt;
/*
- * FIXME: this is all unnecessary unless there are PVs stacked on LVs,
- * so we can skip all of this if scan_lvs=0.
+ * This is only needed when the command sees PVs stacked on LVs which
+ * will only happen with scan_lvs=1.
*/
+ if (!cmd->scan_lvs)
+ return;
log_debug("invalidating devs for any pvs on lvs");
if (get_device_list(NULL, &devs, &devs_features)) {