From cf704d22b6f136c9bc8037871a7967652ebca87b Mon Sep 17 00:00:00 2001 From: Milan Broz Date: Mon, 23 Aug 2010 11:34:10 +0000 Subject: Fix pvmove --abort to work even for empty pvmove LV If pvmove crashed and metadata contains pvmove LV but without miorrored segments, pvmove --abort will not repair the situation (and finish wth success!). Fix it by allowing metadata update if aborting (thus removing pvmove LV) even if no moved LVs detected. (Tested on real metadata provided by an lvm user:-) --- tools/pvmove.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/pvmove.c') diff --git a/tools/pvmove.c b/tools/pvmove.c index c8a480fd..0346ca34 100644 --- a/tools/pvmove.c +++ b/tools/pvmove.c @@ -520,7 +520,8 @@ static int _finish_pvmove(struct cmd_context *cmd, struct volume_group *vg, { int r = 1; - if (!_detach_pvmove_mirror(cmd, lv_mirr)) { + if (!dm_list_empty(lvs_changed) && + !_detach_pvmove_mirror(cmd, lv_mirr)) { log_error("ABORTING: Removal of temporary mirror failed"); return 0; } -- cgit