[lvm-devel] [PATCH] Fix circular dependency when attempting vgimport on VG with missing PVs

Jonathan Brassow jbrassow at redhat.com
Mon Feb 4 23:04:21 UTC 2013


Is there any reason why 'vgimport' should not be allowed to alter the
metadata in order to import a VG with missing PVs?  I can't think of
any.

 brassow

TOOLS: Fix inablility to vgimport VGs with missing PVs

When there are missing PVs in a volume group, most operations that alter
the LVM metadata are disallowed.  It turns out that 'vgimport' is one of
those disallowed operations.  This is bad because it creates a circular
dependency.  'vgimport' will complain that the VG is inconsistent and that
'vgreduce --removemissing' must be run.  However, 'vgreduce' cannot be run
because it has not been imported.  Therefore, 'vgimport' must be one of
the operations allowed to change the metadata when PVs are missing.

Index: lvm2/tools/vgimport.c
===================================================================
--- lvm2.orig/tools/vgimport.c
+++ lvm2/tools/vgimport.c
@@ -68,6 +68,15 @@ int vgimport(struct cmd_context *cmd, in
 		return ECMD_FAILED;
 	}
 
+	/*
+	 * Allow a VG to be imported even when there are missing PVs.  If
+	 * we don't, a circular dependency is created.  The vgimport will
+	 * complain that the VG is not consistent and 'vgreduce --removemissing'
+	 * should be used.  However, 'vgreduce' cannot be used because the
+	 * VG hasn't been imported.
+	 */
+	cmd->handles_missing_pvs = 1;
+
 	return process_each_vg(cmd, argc, argv,
 			       READ_FOR_UPDATE | READ_ALLOW_EXPORTED,
 			       NULL,





More information about the lvm-devel mailing list