From: agk@sourceware.org <agk@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2 ./WHATS_NEW tools/lvchange.c
Date: 26 Jan 2008 00:13:45 -0000 [thread overview]
Message-ID: <20080126001345.612.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: agk at sourceware.org 2008-01-26 00:13:45
Modified files:
. : WHATS_NEW
tools : lvchange.c
Log message:
Fix internal metadata corruption in lvchange --resync.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/WHATS_NEW.diff?cvsroot=lvm2&r1=1.776&r2=1.777
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/lvchange.c.diff?cvsroot=lvm2&r1=1.85&r2=1.86
--- LVM2/WHATS_NEW 2008/01/22 15:58:31 1.776
+++ LVM2/WHATS_NEW 2008/01/26 00:13:44 1.777
@@ -1,5 +1,6 @@
Version 2.02.32 -
===================================
+ Fix internal metadata corruption in lvchange --resync. (2.02.30)
Fix new parameter validation in vgsplit and test mode. (2.02.30)
Remove redundant cnxman-socket.h file from clvmd directory.
Fix pvs, vgs, lvs error exit status on some error paths.
--- LVM2/tools/lvchange.c 2008/01/10 18:35:51 1.85
+++ LVM2/tools/lvchange.c 2008/01/26 00:13:45 1.86
@@ -274,6 +274,7 @@
first_seg(lv)->log_lv = NULL;
log_lv->status &= ~MIRROR_LOG;
log_lv->status |= VISIBLE_LV;
+ remove_seg_from_segs_using_this_lv(log_lv, first_seg(lv));
if (!vg_write(lv->vg)) {
log_error("Failed to write intermediate VG metadata.");
@@ -281,6 +282,7 @@
first_seg(lv)->log_lv = log_lv;
log_lv->status |= MIRROR_LOG;
log_lv->status &= ~VISIBLE_LV;
+ add_seg_to_segs_using_this_lv(log_lv, first_seg(lv));
if (!activate_lv(cmd, lv))
stack;
}
@@ -295,6 +297,7 @@
first_seg(lv)->log_lv = log_lv;
log_lv->status |= MIRROR_LOG;
log_lv->status &= ~VISIBLE_LV;
+ add_seg_to_segs_using_this_lv(log_lv, first_seg(lv));
if (!activate_lv(cmd, lv))
stack;
}
@@ -326,6 +329,7 @@
first_seg(lv)->log_lv = log_lv;
log_lv->status |= MIRROR_LOG;
log_lv->status &= ~VISIBLE_LV;
+ add_seg_to_segs_using_this_lv(log_lv, first_seg(lv));
}
log_very_verbose("Updating logical volume \"%s\" on disk(s)", lv->name);
next reply other threads:[~2008-01-26 0:13 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-26 0:13 agk [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-11-18 19:22 LVM2 ./WHATS_NEW tools/lvchange.c zkabelac
2011-09-05 12:54 agk
2009-08-13 14:27 mornfall
2009-08-13 23:01 ` Alasdair G Kergon
2009-06-06 22:00 mbroz
2008-07-31 13:03 agk
2008-05-21 14:10 agk
2006-10-13 21:33 agk
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=20080126001345.612.qmail@sourceware.org \
--to=agk@sourceware.org \
--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.