From: Jonathan Brassow <jbrassow@redhat.com>
To: lvm-devel@redhat.com
Subject: [PATCH] Fix circular dependency when attempting vgimport on VG with missing PVs
Date: Mon, 04 Feb 2013 17:04:21 -0600 [thread overview]
Message-ID: <1360019061.27780.3.camel@f16> (raw)
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,
next reply other threads:[~2013-02-04 23:04 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-04 23:04 Jonathan Brassow [this message]
2013-02-05 18:44 ` [PATCH - v2] Fix circular dependency when attempting vgimport on VG with missing PVs Jonathan Brassow
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1360019061.27780.3.camel@f16 \
--to=jbrassow@redhat.com \
--cc=lvm-devel@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.