From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takahiro Yasui Date: Wed, 19 May 2010 15:46:05 -0400 Subject: [PATCH] handle transient errors in lvconvert --repair In-Reply-To: <874oi34ubd.fsf@twilight.int.mornfall.net.> References: <87y6g99bbg.fsf@twilight.int.mornfall.net.> <87pr1kai2k.fsf@twilight.int.mornfall.net.> <87y6fxos3x.fsf@twilight.int.mornfall.net.> <4BEDD432.4010800@redhat.com> <4BF1CAD9.1050005@redhat.com> <87ljbg3xkt.fsf@twilight.int.mornfall.net.> <4BF3FE5C.8070906@redhat.com> <874oi34ubd.fsf@twilight.int.mornfall.net.> Message-ID: <4BF43FFD.30504@redhat.com> List-Id: To: lvm-devel@redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Hi Petr, >+++ cvs-upstream/tools/lvconvert.c 2010-05-19 20:18:40.000000000 +0200 >@@ -1225,11 +1225,11 @@ > if (!lv_remove_mirrors(cmd, lv, failed_mirrors, new_log_count, > _is_partial_lv, NULL, 0)) > return 0; As I posted in the previous mail, the argument, new_log_count, is correct here? The argument is used to check if a log should be removed. I think that failed_log comes here instead of new_log_count. Or the value such as nlc in _lvconvert_mirrors_aux() comes. uint32_t nlc = (!new_log_count || lp->mirrors == 1) ? 1U : 0U; ... } else if (!lv_remove_mirrors(cmd, lv, nmc, nlc, is_mirror_image_removable, operable_pvs, 0)) Thanks, Taka