public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
From: wysochanski@sourceware.org
To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org
Subject: LVM2/tools vgrename.c
Date: Wed, 01 Jul 2009 17:02:00 -0000 [thread overview]
Message-ID: <20090701170218.11388.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: wysochanski@sourceware.org 2009-07-01 17:02:18
Modified files:
tools : vgrename.c
Log message:
Convert vgrename to vg_read_for_update.
Sun May 3 12:54:28 CEST 2009 Petr Rockai <me@mornfall.net>
* Convert vgrename to vg_read_for_update.
Rebased 6/26/2009 - Dave W.
Author: Petr Rockai <prockai@redhat.com>
Committer: Dave Wysochanski <dwysocha@redhat.com>
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/vgrename.c.diff?cvsroot=lvm2&r1=1.63&r2=1.64
--- LVM2/tools/vgrename.c 2009/06/09 14:30:16 1.63
+++ LVM2/tools/vgrename.c 2009/07/01 17:02:18 1.64
@@ -20,7 +20,6 @@
{
char *dev_dir;
struct id id;
- int consistent = 1;
int match = 0;
int found_id = 0;
struct dm_list *vgids;
@@ -71,25 +70,11 @@
} else
vgid = NULL;
- if (!lock_vol(cmd, vg_name_old, LCK_VG_WRITE)) {
- log_error("Can't get lock for %s", vg_name_old);
- return 0;
- }
-
- if (!(vg = vg_read_internal(cmd, vg_name_old, vgid, &consistent)) || !consistent) {
- log_error("Volume group %s %s%s%snot found.", vg_name_old,
- vgid ? "(" : "", vgid ? vgid : "", vgid ? ") " : "");
- unlock_vg(cmd, vg_name_old);
- return 0;
- }
-
- if (!vg_check_status(vg, CLUSTERED | LVM_WRITE)) {
- unlock_and_release_vg(cmd, vg, vg_name_old);
- return 0;
- }
-
- /* Don't return failure for EXPORTED_VG */
- vg_check_status(vg, EXPORTED_VG);
+ /* FIXME we used to print an error about EXPORTED, but proceeded
+ nevertheless. */
+ vg = vg_read_for_update(cmd, vg_name_old, vgid, READ_ALLOW_EXPORTED);
+ if (vg_read_error(vg))
+ return_0;
if (lvs_in_vg_activated_by_uuid_only(vg)) {
unlock_and_release_vg(cmd, vg, vg_name_old);
next reply other threads:[~2009-07-01 17:02 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-01 17:02 wysochanski [this message]
-- strict thread matches above, loose matches on Subject: below --
2009-09-02 21:29 wysochanski
2009-09-02 21:29 wysochanski
2009-06-09 14:30 wysochanski
2008-06-06 16:13 agk
2007-08-31 19:09 wysochanski
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=20090701170218.11388.qmail@sourceware.org \
--to=wysochanski@sourceware.org \
--cc=lvm-devel@redhat.com \
--cc=lvm2-cvs@sourceware.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).