From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Juan Quintela <quintela@redhat.com>
Cc: den@openvz.org, qemu-devel@nongnu.org, lizhijian@cn.fujitsu.com
Subject: Re: [Qemu-devel] safety of migration_bitmap_extend
Date: Tue, 3 Nov 2015 13:47:17 +0000 [thread overview]
Message-ID: <20151103134716.GC17670@work-vm> (raw)
In-Reply-To: <874mh3z1hb.fsf@emacs.mitica>
* Juan Quintela (quintela@redhat.com) wrote:
> "Dr. David Alan Gilbert" <dgilbert@redhat.com> wrote:
> > Hi,
> > I'm trying to understand why migration_bitmap_extend is correct/safe;
> > If I understand correctly, you're arguing that:
> >
> > 1) the migration_bitmap_mutex around the extend, stops any sync's happening
> > and so no new bits will be set during the extend.
> >
> > 2) If migration sends a page and clears a bitmap entry, it doesn't
> > matter if we lose the 'clear' because we're copying it as
> > we extend it, because losing the clear just means the page
> > gets resent, and so the data is OK.
> >
> > However, doesn't (2) mean that migration_dirty_pages might be wrong?
> > If a page was sent, the bit cleared, and migration_dirty_pages decremented,
> > then if we copy over that bitmap and 'set' that bit again then migration_dirty_pages
> > is too small; that means that either migration would finish too early,
> > or more likely, migration_dirty_pages would wrap-around -ve and
> > never finish.
> >
> > Is there a reason it's really safe?
>
> No. It is reasonably safe. Various values of reasonably.
>
> migration_dirty_pages should never arrive at values near zero. Because
> we move to the completion stage way before it gets a value near zero.
> (We could have very, very bad luck, as in it is not safe).
That's only true if we hit the qemu_file_rate_limit() in ram_save_iterate;
if we don't hit the rate limit (e.g. because we're CPU or network limited
to slower than the set limit) then I think ram_save_iterate will go all the
way to sending every page; if that happens it'll go once more
around the main migration loop, and call the pending routine, and now get
a -ve (very +ve) number of pending pages, so continuously do ram_save_iterate
again.
We've had that type of bug before when we messed up the dirty-pages calculation
during hotplug.
> Now, do we really care if migration_dirty_pages is exact? Not really,
> we just use it to calculate if we should start the throotle or not.
> That only test that each 1 second, so if we have written a couple of
> pages that we are not accounting for, things should be reasonably safe.
>
> Once told that, I don't know why we didn't catch that problem during
> review (yes, I am guilty here). Not sure how to really fix it,
> thought. I think that the problem is more theoretical than real, but
Dave
> ....
>
> Thanks, Juan.
>
> >
> > Dave
> >
> > --
> > Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2015-11-03 13:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-03 12:23 [Qemu-devel] safety of migration_bitmap_extend Dr. David Alan Gilbert
2015-11-03 12:55 ` Juan Quintela
2015-11-03 13:47 ` Dr. David Alan Gilbert [this message]
2015-11-04 3:10 ` Wen Congyang
2015-11-04 9:05 ` Dr. David Alan Gilbert
2015-11-04 9:13 ` Wen Congyang
2015-11-04 9:19 ` Dr. David Alan Gilbert
2015-11-12 8:33 ` Wen Congyang
2015-11-13 8:55 ` Li Zhijian
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=20151103134716.GC17670@work-vm \
--to=dgilbert@redhat.com \
--cc=den@openvz.org \
--cc=lizhijian@cn.fujitsu.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).