From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f5oUk-0008PW-Re for qemu-devel@nongnu.org; Tue, 10 Apr 2018 04:19:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f5oUf-0007xF-U1 for qemu-devel@nongnu.org; Tue, 10 Apr 2018 04:19:14 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:42994 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f5oUf-0007wp-OS for qemu-devel@nongnu.org; Tue, 10 Apr 2018 04:19:09 -0400 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 05E924182D59 for ; Tue, 10 Apr 2018 08:18:59 +0000 (UTC) Date: Tue, 10 Apr 2018 10:18:48 +0200 From: Kevin Wolf Message-ID: <20180410081848.GA7026@localhost.localdomain> References: <20180328170207.49512-1-dgilbert@redhat.com> <20180403143857.GF11070@localhost.localdomain> <20180403205237.GA2501@work-vm> <20180404100303.GE4482@localhost.localdomain> <20180409102744.GC2449@work-vm> <20180409134003.GG5294@localhost.localdomain> <20180410073635.GA91107@orkuz.home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180410073635.GA91107@orkuz.home> Subject: Re: [Qemu-devel] [PATCH] migration: Don't activate block devices if using -S List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jiri Denemark Cc: "Dr. David Alan Gilbert" , qemu-devel@nongnu.org, quintela@redhat.com, famz@redhat.com, peterx@redhat.com Am 10.04.2018 um 09:36 hat Jiri Denemark geschrieben: > On Mon, Apr 09, 2018 at 15:40:03 +0200, Kevin Wolf wrote: > > Am 09.04.2018 um 12:27 hat Dr. David Alan Gilbert geschrieben: > > > It's a fairly hairy failure case they had; if I remember correctly it's: > > > a) Start migration > > > b) Migration gets to completion point > > > c) Destination is still paused > > > d) Libvirt is restarted on the source > > > e) Since libvirt was restarted it fails the migration (and hence knows > > > the destination won't be started) > > > f) It now tries to resume the qemu on the source > > > > > > (f) fails because (b) caused the locks to be taken on the destination; > > > hence this patch stops doing that. It's a case we don't really think > > > about - i.e. that the migration has actually completed and all the data > > > is on the destination, but libvirt decides for some other reason to > > > abandon migration. > > > > If you do remember correctly, that scenario doesn't feel tricky at all. > > libvirt needs to quit the destination qemu, which will inactivate the > > images on the destination and release the lock, and then it can continue > > the source. > > > > In fact, this is so straightforward that I wonder what else libvirt is > > doing. Is the destination qemu only shut down after trying to continue > > the source? That would be libvirt using the wrong order of steps. > > There's no connection between the two libvirt daemons in the case we're > talking about so they can't really synchronize the actions. The > destination daemon will kill the new QEMU process and the source will > resume the old one, but the order is completely random. Hm, okay... > > > Yes it was a 'block-activate' that I'd wondered about. One complication > > > is that if this now under the control of the management layer then we > > > should stop asserting when the block devices aren't in the expected > > > state and just cleanly fail the command instead. > > > > Requiring an explicit 'block-activate' on the destination would be an > > incompatible change, so you would have to introduce a new option for > > that. 'block-inactivate' on the source feels a bit simpler. > > As I said in another email, the explicit block-activate command could > depend on a migration capability similarly to how pre-switchover state > works. Yeah, that's exactly the thing that we wouldn't need if we could use 'block-inactivate' on the source instead. It feels a bit wrong to design a more involved QEMU interface around the libvirt internals, but as long as we implement both sides for symmetry and libvirt just happens to pick the destination side for now, I think it's okay. By the way, are block devices the only thing that need to be explicitly activated? For example, what about qemu_announce_self() for network cards, do we need to delay that, too? In any case, I think this patch needs to be reverted for 2.12 because it's wrong, and then we can create the proper solution in the 2.13 timefrage. Kevin