From: Takahiro Yasui <tyasui@redhat.com>
To: lvm-devel@redhat.com
Subject: [PATCH][RFC] Fix lvconvert repair at mirror leg and log failure (v2)
Date: Wed, 16 Jun 2010 18:55:59 -0400 [thread overview]
Message-ID: <4C19567F.8070409@redhat.com> (raw)
Hi,
Fixed some issues in the previous patch.
v2 changes:
- rename _lv_update_log() to _lv_update_mirrored_log()
- restore _reload_lv() in _lv_update_mirrored_log()
- pass an updated new_log_count value to _lv_update_mirrored_log()
Appreciate your review and comments.
Thanks,
Taka
Signed-off-by: Takahiro Yasui <tyasui@redhat.com>
---
tools/lvconvert.c | 33 +++++++++++++++++++++++++++++++--
1 file changed, 31 insertions(+), 2 deletions(-)
Index: LVM2-2.02.67/tools/lvconvert.c
===================================================================
--- LVM2-2.02.67.orig/tools/lvconvert.c
+++ LVM2-2.02.67/tools/lvconvert.c
@@ -689,6 +689,27 @@ static int _get_log_count(struct logical
return lv_mirror_count(log_lv);
}
+static int _lv_update_mirrored_log(struct logical_volume *lv,
+ struct dm_list *operable_pvs,
+ int log_count)
+{
+ int old_log_count;
+ struct logical_volume *log_lv;
+
+ log_lv = first_seg(_original_lv(lv))->log_lv;
+ if (!log_lv || !(log_lv->status & MIRRORED))
+ return 1;
+
+ old_log_count = _get_log_count(lv);
+ if (old_log_count == log_count)
+ return 1;
+
+ /* Reducing redundancy of the log */
+ return remove_mirror_images(log_lv, log_count,
+ is_mirror_image_removable,
+ operable_pvs, 0U);
+}
+
static int _lv_update_log_type(struct cmd_context *cmd,
struct lvconvert_params *lp,
struct logical_volume *lv,
@@ -1218,15 +1239,23 @@ static int _lvconvert_mirrors_repair(str
* We must adjust the log first, or the entire mirror
* will get stuck during a suspend.
*/
- if (!_lv_update_log_type(cmd, lp, lv, failed_pvs, new_log_count))
+ if (!_lv_update_mirrored_log(lv, failed_pvs, new_log_count))
return 0;
+ if (lp->mirrors == 1)
+ new_log_count = 0;
+
if (failed_mirrors) {
- if (!lv_remove_mirrors(cmd, lv, failed_mirrors, new_log_count,
+ if (!lv_remove_mirrors(cmd, lv, failed_mirrors,
+ new_log_count ? 0U : 1U,
_is_partial_lv, NULL, 0))
return 0;
}
+ if (!_lv_update_log_type(cmd, lp, lv, failed_pvs,
+ new_log_count))
+ return 0;
+
if (!_reload_lv(cmd, lv))
return 0;
next reply other threads:[~2010-06-16 22:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-16 22:55 Takahiro Yasui [this message]
2010-06-18 19:02 ` [PATCH][RFC] Fix lvconvert repair at mirror leg and log failure (v2) 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=4C19567F.8070409@redhat.com \
--to=tyasui@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.