From: Anthony PERARD <anthony.perard@citrix.com>
To: Stefano Stabellini <Stefano.Stabellini@eu.citrix.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
Luiz Capitulino <lcapitulino@redhat.com>,
Xen Devel <xen-devel@lists.xen.org>,
QEMU-devel <qemu-devel@nongnu.org>, Avi Kivity <avi@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 4/4] xen: Always set the vram dirty during migration.
Date: Fri, 20 Jul 2012 15:11:27 +0100 [thread overview]
Message-ID: <5009670F.1000209@citrix.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1207171929150.23783@kaball.uk.xensource.com>
On 17/07/12 19:30, Stefano Stabellini wrote:
> On Tue, 17 Jul 2012, Stefano Stabellini wrote:
>> On Tue, 17 Jul 2012, Anthony PERARD wrote:
>>> Because the call to track the dirty bit in the video ram during migration won't
>>> work (it returns -1), we set dirtybit on the all video ram.
>>>
>>> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
>>> ---
>>> xen-all.c | 5 +++++
>>> 1 files changed, 5 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/xen-all.c b/xen-all.c
>>> index 498883b..00bdb50 100644
>>> --- a/xen-all.c
>>> +++ b/xen-all.c
>>> @@ -502,6 +502,11 @@ static void xen_sync_dirty_bitmap(XenIOState *state,
>>> return;
>>> }
>>>
>>> + if (unlikely(xen_in_migration)) {
>>> + /* track_dirty_vram does not work during migration */
>>> + memory_region_set_dirty(framebuffer, 0, size);
>>> + return;
>>> + }
>>> rc = xc_hvm_track_dirty_vram(xen_xc, xen_domid,
>>> start_addr >> TARGET_PAGE_BITS, npages,
>>> bitmap);
>>
>> Why are you setting the entire framebuffer dirty?
>> We should set dirty only the actualy region that is supposed to be
>> dirty.
I set the dirty bit on the all framebuffer because the track dirty call
fail, so I don't which bits are dirty. This one is for QEMU to know
which part of the screen need to be updated.
> Also memory_region_set_dirty calls cpu_physical_memory_set_dirty_range,
> in which you didn't add a call to xen_modified_memory.
--
Anthony PERARD
next prev parent reply other threads:[~2012-07-20 14:11 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-17 13:30 [Qemu-devel] [PATCH 0/4] Xen, introducing dirty log for migration Anthony PERARD
2012-07-17 13:30 ` [Qemu-devel] [PATCH 1/4] QMP, Introduce set-global-dirty-log command Anthony PERARD
2012-07-17 13:57 ` Eric Blake
2012-07-17 13:58 ` Avi Kivity
2012-07-17 17:58 ` Stefano Stabellini
2012-07-18 8:30 ` Avi Kivity
2012-07-17 13:30 ` [Qemu-devel] [PATCH 2/4] xen: Introduce xen_modified_memory Anthony PERARD
2012-07-17 13:30 ` [Qemu-devel] [PATCH 3/4] exec, memory: Call to xen_modified_memory Anthony PERARD
2012-07-17 13:37 ` Avi Kivity
2012-07-17 13:59 ` Anthony PERARD
2012-07-17 14:44 ` Avi Kivity
2012-07-17 18:36 ` Stefano Stabellini
2012-07-18 8:32 ` Avi Kivity
2012-07-19 11:41 ` Anthony PERARD
2012-07-19 11:50 ` Avi Kivity
2012-07-19 14:27 ` Anthony PERARD
2012-07-17 18:06 ` Stefano Stabellini
2012-07-19 12:34 ` Paolo Bonzini
2012-07-19 15:37 ` Stefano Stabellini
2012-07-19 15:41 ` Anthony PERARD
2012-07-17 13:30 ` [Qemu-devel] [PATCH 4/4] xen: Always set the vram dirty during migration Anthony PERARD
2012-07-17 18:25 ` Stefano Stabellini
2012-07-17 18:30 ` Stefano Stabellini
2012-07-20 14:11 ` Anthony PERARD [this message]
2012-07-20 15:47 ` Stefano Stabellini
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=5009670F.1000209@citrix.com \
--to=anthony.perard@citrix.com \
--cc=Stefano.Stabellini@eu.citrix.com \
--cc=aliguori@us.ibm.com \
--cc=avi@redhat.com \
--cc=lcapitulino@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=xen-devel@lists.xen.org \
/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).