From: Avi Kivity <avi@redhat.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Anthony Perard <anthony.perard@citrix.com>,
Jan Kiszka <jan.kiszka@siemens.com>,
Xen Devel <xen-devel@lists.xensource.com>,
QEMU-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH V2 5/5] vga-cirrus: Workaround during restore when using Xen.
Date: Thu, 05 Jan 2012 15:32:52 +0200 [thread overview]
Message-ID: <4F05A684.7000509@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1201051303350.3150@kaball-desktop>
On 01/05/2012 03:17 PM, Stefano Stabellini wrote:
> > > The "solution" I am proposing is introducing an early_savevm set of
> > > save/restore functions so that at restore time we can get to know at
> > > what address the videoram is mapped into the guest address space. Once we
> > > know the address we can remap it into qemu's address space and/or move it
> > > to another guest physical address.
> >
> > Why can we not simply track it? For every MemoryRegion, have a field
> > called xen_address which tracks its location in the Xen address space
> > (as determined by the last call to xen_set_memory or qemu_ram_alloc).
> > xen_address would be maintained by callbacks called from the memory API
> > into xen-all.c.
>
> Nice and simple, I like it.
> However we would still need an early_savevm mechanism to save and restore the
> MemoryRegions, unless they already gets saved and restored somehow?
MemoryRegions are instantiated by the devices, so they should be there
(creating a MemoryRegion == calling qemu_ram_alloc() in the old days)
> Maybe saving and restoring the list of MemoryRegions could be useful for
> the generic case too?
Unneeded, since they're an integral part of the devices. However, it
would be good to have a list of the devices so we could send that over
instead of relying on invoking qemu with the same command-line arguments
on both sides - but that's something that qom is already tackling.
> > > The problem of avoiding a second allocation remains, but could be
> > > solved by passing the "name" parameter from qemu_ram_alloc_from_ptr to
> > > xen_ram_alloc: xen_ram_alloc could avoid doing any work for anything
> > > called "vga.vram" at restore time, and use the reference to the already
> > > allocated videoram instead.
> >
> > Hacky
>
> Yes :/
xen_register_framebuffer() is slightly less hacky.
> > The allocation is not driven by qemu then?
>
> At restore time, it is not.
>
>
> > For the long term I suggest making qemu control the allocations (perhaps
> > by rpcing dom0); otherwise how can you do memory hotplug or PCI cards
> > with RAM (like ivshmem)?
>
> It is only the videoram (well, everything allocated with
> qemu_ram_alloc_from_ptr actually) and only at restore time, because
> the memory in question is being considered normal guest memory and
> therefore it is saved and restored by the hypervisor.
> Otherwise Qemu is the one that triggers these allocations, so there are
> no issues with memory hotplug and pci passthrough.
Okay.
--
error compiling committee.c: too many arguments to function
WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: Anthony Perard <anthony.perard@citrix.com>,
Jan Kiszka <jan.kiszka@siemens.com>,
Xen Devel <xen-devel@lists.xensource.com>,
QEMU-devel <qemu-devel@nongnu.org>
Subject: Re: [PATCH V2 5/5] vga-cirrus: Workaround during restore when using Xen.
Date: Thu, 05 Jan 2012 15:32:52 +0200 [thread overview]
Message-ID: <4F05A684.7000509@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1201051303350.3150@kaball-desktop>
On 01/05/2012 03:17 PM, Stefano Stabellini wrote:
> > > The "solution" I am proposing is introducing an early_savevm set of
> > > save/restore functions so that at restore time we can get to know at
> > > what address the videoram is mapped into the guest address space. Once we
> > > know the address we can remap it into qemu's address space and/or move it
> > > to another guest physical address.
> >
> > Why can we not simply track it? For every MemoryRegion, have a field
> > called xen_address which tracks its location in the Xen address space
> > (as determined by the last call to xen_set_memory or qemu_ram_alloc).
> > xen_address would be maintained by callbacks called from the memory API
> > into xen-all.c.
>
> Nice and simple, I like it.
> However we would still need an early_savevm mechanism to save and restore the
> MemoryRegions, unless they already gets saved and restored somehow?
MemoryRegions are instantiated by the devices, so they should be there
(creating a MemoryRegion == calling qemu_ram_alloc() in the old days)
> Maybe saving and restoring the list of MemoryRegions could be useful for
> the generic case too?
Unneeded, since they're an integral part of the devices. However, it
would be good to have a list of the devices so we could send that over
instead of relying on invoking qemu with the same command-line arguments
on both sides - but that's something that qom is already tackling.
> > > The problem of avoiding a second allocation remains, but could be
> > > solved by passing the "name" parameter from qemu_ram_alloc_from_ptr to
> > > xen_ram_alloc: xen_ram_alloc could avoid doing any work for anything
> > > called "vga.vram" at restore time, and use the reference to the already
> > > allocated videoram instead.
> >
> > Hacky
>
> Yes :/
xen_register_framebuffer() is slightly less hacky.
> > The allocation is not driven by qemu then?
>
> At restore time, it is not.
>
>
> > For the long term I suggest making qemu control the allocations (perhaps
> > by rpcing dom0); otherwise how can you do memory hotplug or PCI cards
> > with RAM (like ivshmem)?
>
> It is only the videoram (well, everything allocated with
> qemu_ram_alloc_from_ptr actually) and only at restore time, because
> the memory in question is being considered normal guest memory and
> therefore it is saved and restored by the hypervisor.
> Otherwise Qemu is the one that triggers these allocations, so there are
> no issues with memory hotplug and pci passthrough.
Okay.
--
error compiling committee.c: too many arguments to function
next prev parent reply other threads:[~2012-01-05 13:33 UTC|newest]
Thread overview: 107+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-09 21:54 [Qemu-devel] [PATCH V2 0/5] Have a working migration with Xen Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-09 21:54 ` [Qemu-devel] [PATCH V2 1/5] vl.c: Do not save RAM state when Xen is used Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-15 15:12 ` [Qemu-devel] " Anthony Liguori
2011-12-15 15:12 ` Anthony Liguori
2011-12-18 17:44 ` [Qemu-devel] " Avi Kivity
2011-12-18 17:44 ` Avi Kivity
2011-12-20 16:46 ` [Qemu-devel] " Anthony PERARD
2011-12-20 16:46 ` Anthony PERARD
2011-12-09 21:54 ` [Qemu-devel] [PATCH V2 2/5] xen mapcache: Check if a memory space has moved Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-12 12:53 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 12:53 ` Stefano Stabellini
2011-12-09 21:54 ` [Qemu-devel] [PATCH V2 3/5] Introduce premigrate RunState Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-15 15:14 ` [Qemu-devel] " Anthony Liguori
2011-12-15 15:14 ` Anthony Liguori
2011-12-15 16:31 ` [Qemu-devel] " Luiz Capitulino
2011-12-15 16:31 ` Luiz Capitulino
2011-12-19 17:27 ` [Qemu-devel] " Anthony PERARD
2011-12-19 17:27 ` Anthony PERARD
2012-01-03 19:05 ` [Qemu-devel] " Luiz Capitulino
2012-01-03 19:05 ` Luiz Capitulino
2012-01-05 12:26 ` [Qemu-devel] " Anthony PERARD
2012-01-05 12:26 ` Anthony PERARD
2011-12-09 21:54 ` [Qemu-devel] [PATCH V2 4/5] xen: Change memory access behavior during migration Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-12 12:55 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 12:55 ` Stefano Stabellini
2011-12-09 21:54 ` [Qemu-devel] [PATCH V2 5/5] vga-cirrus: Workaround during restore when using Xen Anthony PERARD
2011-12-09 21:54 ` Anthony PERARD
2011-12-10 10:45 ` [Qemu-devel] " Jan Kiszka
2011-12-10 10:45 ` Jan Kiszka
2011-12-12 13:18 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 13:18 ` Stefano Stabellini
2011-12-12 14:03 ` [Qemu-devel] " Jan Kiszka
2011-12-12 14:03 ` Jan Kiszka
2011-12-12 14:41 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 14:41 ` Stefano Stabellini
2011-12-12 15:03 ` [Qemu-devel] " Jan Kiszka
2011-12-12 15:03 ` Jan Kiszka
2011-12-12 15:32 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 15:32 ` Stefano Stabellini
2011-12-13 11:55 ` [Qemu-devel] early_savevm (was: [PATCH V2 5/5] vga-cirrus: Workaround during restore when using Xen.) Stefano Stabellini
2011-12-13 11:55 ` Stefano Stabellini
2011-12-13 12:35 ` [Qemu-devel] early_savevm Jan Kiszka
2011-12-13 12:35 ` early_savevm Jan Kiszka
2011-12-13 13:59 ` [Qemu-devel] early_savevm Stefano Stabellini
2011-12-13 13:59 ` early_savevm Stefano Stabellini
2011-12-18 17:43 ` [Qemu-devel] early_savevm Avi Kivity
2011-12-18 17:43 ` early_savevm Avi Kivity
2012-01-11 17:55 ` [Qemu-devel] early_savevm Anthony Liguori
2011-12-18 17:41 ` [Qemu-devel] [PATCH V2 5/5] vga-cirrus: Workaround during restore when using Xen Avi Kivity
2011-12-18 17:41 ` Avi Kivity
2012-01-04 16:38 ` [Qemu-devel] " Stefano Stabellini
2012-01-04 16:38 ` Stefano Stabellini
2012-01-04 17:23 ` [Qemu-devel] " Avi Kivity
2012-01-04 17:23 ` Avi Kivity
2012-01-05 12:30 ` [Qemu-devel] " Stefano Stabellini
2012-01-05 12:30 ` Stefano Stabellini
2012-01-05 12:50 ` [Qemu-devel] " Avi Kivity
2012-01-05 12:50 ` Avi Kivity
2012-01-05 13:17 ` [Qemu-devel] " Stefano Stabellini
2012-01-05 13:17 ` Stefano Stabellini
2012-01-05 13:32 ` Avi Kivity [this message]
2012-01-05 13:32 ` Avi Kivity
2012-01-05 14:34 ` [Qemu-devel] " Stefano Stabellini
2012-01-05 14:34 ` Stefano Stabellini
2012-01-05 15:19 ` [Qemu-devel] " Avi Kivity
2012-01-05 15:19 ` Avi Kivity
2012-01-05 15:53 ` [Qemu-devel] " Stefano Stabellini
2012-01-05 15:53 ` Stefano Stabellini
2012-01-05 16:33 ` [Qemu-devel] " Avi Kivity
2012-01-05 16:33 ` Avi Kivity
2012-01-05 17:21 ` [Qemu-devel] " Stefano Stabellini
2012-01-05 17:21 ` Stefano Stabellini
2012-01-05 17:50 ` [Qemu-devel] " Avi Kivity
2012-01-05 17:50 ` Avi Kivity
2012-01-05 18:49 ` [Qemu-devel] " Jan Kiszka
2012-01-05 18:49 ` Jan Kiszka
2012-01-06 10:50 ` [Qemu-devel] " Stefano Stabellini
2012-01-06 10:50 ` Stefano Stabellini
2012-01-06 13:30 ` [Qemu-devel] " Jan Kiszka
2012-01-06 13:30 ` Jan Kiszka
2012-01-06 14:40 ` [Qemu-devel] " Stefano Stabellini
2012-01-06 14:40 ` Stefano Stabellini
2012-01-08 10:39 ` [Qemu-devel] " Avi Kivity
2012-01-08 10:39 ` Avi Kivity
2012-01-09 15:25 ` [Qemu-devel] " Stefano Stabellini
2012-01-09 15:25 ` Stefano Stabellini
2012-01-09 15:28 ` [Qemu-devel] " Jan Kiszka
2012-01-09 15:28 ` Jan Kiszka
2012-01-09 15:36 ` [Qemu-devel] " Avi Kivity
2012-01-09 15:36 ` Avi Kivity
2012-01-06 15:58 ` [Qemu-devel] " Peter Maydell
2012-01-06 15:58 ` Peter Maydell
2012-01-06 16:50 ` [Qemu-devel] " Jan Kiszka
2012-01-06 16:50 ` Jan Kiszka
2012-01-06 12:19 ` [Qemu-devel] " Avi Kivity
2012-01-06 12:19 ` Avi Kivity
2012-01-06 12:22 ` [Qemu-devel] " Jan Kiszka
2012-01-06 12:22 ` Jan Kiszka
2012-01-06 12:47 ` [Qemu-devel] " Avi Kivity
2012-01-06 12:47 ` Avi Kivity
2011-12-12 12:58 ` [Qemu-devel] " Stefano Stabellini
2011-12-12 12:58 ` 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=4F05A684.7000509@redhat.com \
--to=avi@redhat.com \
--cc=anthony.perard@citrix.com \
--cc=jan.kiszka@siemens.com \
--cc=qemu-devel@nongnu.org \
--cc=stefano.stabellini@eu.citrix.com \
--cc=xen-devel@lists.xensource.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.