xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PULL] Xen HVM support
@ 2011-05-09 17:39 Alexander Graf
  2011-05-12 13:33 ` Anthony Liguori
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Graf @ 2011-05-09 17:39 UTC (permalink / raw)
  To: anthony; +Cc: anthony.perard, xen-devel, qemu-devel, stefano.stabellini

Hi Anthony,

These are Anthony's patches for Xen HVM support, nicely signed off,
rebased to fit today's HEAD and compile tested.

Please pull.


Alex

The following changes since commit 85097db6956bc86e2377b63a8309cb8b24d54139:
  Richard Henderson (1):
        irq: Privatize CPU_INTERRUPT_NMI.

are available in the git repository at:

  git://repo.or.cz/qemu/agraf.git xen-next

Anthony PERARD (16):
      Introduce -machine command option.
      machine, Add default_machine_opts to QEMUMachine.
      xen: Replace some tab-indents with spaces (clean-up).
      xen: Make Xen build once.
      xen: Support new libxc calls from xen unstable.
      xen: Add initialisation of Xen
      pc_memory_init: Move memory calculation to the caller.
      xen: Add xenfv machine
      pc, Disable vmport initialisation with Xen.
      piix_pci: Introduces Xen specific call for irq.
      xen: Introduce Xen Interrupt Controller
      Introduce qemu_put_ram_ptr
      configure: Always use 64bits target physical addresses with xen enabled.
      vl.c: Introduce getter for shutdown_requested and reset_requested.
      xen: Set running state in xenstore.
      xen: Add Xen hypercall for sleep state in the cmos_s3 callback.

Arun Sharma (1):
      xen: Initialize event channels and io rings

John Baboval (2):
      xen: Adds a cap to the number of map cache entries.
      pci: Use of qemu_put_ram_ptr in pci_add_option_rom.

Jun Nakajima (1):
      xen: Introduce the Xen mapcache

 Makefile.target      |   14 +-
 arch_init.c          |    5 +
 arch_init.h          |    1 +
 configure            |   71 ++++++-
 cpu-common.h         |    1 +
 exec.c               |   86 +++++++-
 hw/boards.h          |    1 +
 hw/pc.c              |   28 +--
 hw/pc.h              |   11 +-
 hw/pc_piix.c         |   71 ++++++-
 hw/pci.c             |    2 +
 hw/piix_pci.c        |   49 ++++-
 hw/xen.h             |   41 ++++
 hw/xen_backend.c     |  421 +++++++++++++++++++----------------
 hw/xen_backend.h     |    6 +-
 hw/xen_common.h      |  106 ++++++++--
 hw/xen_disk.c        |  496 ++++++++++++++++++++++-------------------
 hw/xen_domainbuild.c |    3 +-
 hw/xen_machine_pv.c  |    1 +
 hw/xen_nic.c         |  265 ++++++++++++----------
 qemu-config.c        |   14 ++
 qemu-options.hx      |   10 +
 sysemu.h             |    2 +
 trace-events         |   13 +
 vl.c                 |  136 ++++++++++-
 xen-all.c            |  605 ++++++++++++++++++++++++++++++++++++++++++++++++++
 xen-mapcache-stub.c  |   44 ++++
 xen-mapcache.c       |  375 +++++++++++++++++++++++++++++++
 xen-mapcache.h       |   37 +++
 xen-stub.c           |   41 ++++
 30 files changed, 2343 insertions(+), 613 deletions(-)
 create mode 100644 xen-all.c
 create mode 100644 xen-mapcache-stub.c
 create mode 100644 xen-mapcache.c
 create mode 100644 xen-mapcache.h
 create mode 100644 xen-stub.c

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PULL] Xen HVM support
  2011-05-09 17:39 [PULL] Xen HVM support Alexander Graf
@ 2011-05-12 13:33 ` Anthony Liguori
  2011-05-12 13:39   ` [Qemu-devel] " Stefano Stabellini
  0 siblings, 1 reply; 4+ messages in thread
From: Anthony Liguori @ 2011-05-12 13:33 UTC (permalink / raw)
  To: Alexander Graf; +Cc: anthony.perard, xen-devel, qemu-devel, stefano.stabellini

On 05/09/2011 12:39 PM, Alexander Graf wrote:
> Hi Anthony,
>
> These are Anthony's patches for Xen HVM support, nicely signed off,
> rebased to fit today's HEAD and compile tested.
>
> Please pull.

Pulled.  Thanks.

Regards,

Anthony Liguori

>
>
> Alex
>
> The following changes since commit 85097db6956bc86e2377b63a8309cb8b24d54139:
>    Richard Henderson (1):
>          irq: Privatize CPU_INTERRUPT_NMI.
>
> are available in the git repository at:
>
>    git://repo.or.cz/qemu/agraf.git xen-next
>
> Anthony PERARD (16):
>        Introduce -machine command option.
>        machine, Add default_machine_opts to QEMUMachine.
>        xen: Replace some tab-indents with spaces (clean-up).
>        xen: Make Xen build once.
>        xen: Support new libxc calls from xen unstable.
>        xen: Add initialisation of Xen
>        pc_memory_init: Move memory calculation to the caller.
>        xen: Add xenfv machine
>        pc, Disable vmport initialisation with Xen.
>        piix_pci: Introduces Xen specific call for irq.
>        xen: Introduce Xen Interrupt Controller
>        Introduce qemu_put_ram_ptr
>        configure: Always use 64bits target physical addresses with xen enabled.
>        vl.c: Introduce getter for shutdown_requested and reset_requested.
>        xen: Set running state in xenstore.
>        xen: Add Xen hypercall for sleep state in the cmos_s3 callback.
>
> Arun Sharma (1):
>        xen: Initialize event channels and io rings
>
> John Baboval (2):
>        xen: Adds a cap to the number of map cache entries.
>        pci: Use of qemu_put_ram_ptr in pci_add_option_rom.
>
> Jun Nakajima (1):
>        xen: Introduce the Xen mapcache
>
>   Makefile.target      |   14 +-
>   arch_init.c          |    5 +
>   arch_init.h          |    1 +
>   configure            |   71 ++++++-
>   cpu-common.h         |    1 +
>   exec.c               |   86 +++++++-
>   hw/boards.h          |    1 +
>   hw/pc.c              |   28 +--
>   hw/pc.h              |   11 +-
>   hw/pc_piix.c         |   71 ++++++-
>   hw/pci.c             |    2 +
>   hw/piix_pci.c        |   49 ++++-
>   hw/xen.h             |   41 ++++
>   hw/xen_backend.c     |  421 +++++++++++++++++++----------------
>   hw/xen_backend.h     |    6 +-
>   hw/xen_common.h      |  106 ++++++++--
>   hw/xen_disk.c        |  496 ++++++++++++++++++++++-------------------
>   hw/xen_domainbuild.c |    3 +-
>   hw/xen_machine_pv.c  |    1 +
>   hw/xen_nic.c         |  265 ++++++++++++----------
>   qemu-config.c        |   14 ++
>   qemu-options.hx      |   10 +
>   sysemu.h             |    2 +
>   trace-events         |   13 +
>   vl.c                 |  136 ++++++++++-
>   xen-all.c            |  605 ++++++++++++++++++++++++++++++++++++++++++++++++++
>   xen-mapcache-stub.c  |   44 ++++
>   xen-mapcache.c       |  375 +++++++++++++++++++++++++++++++
>   xen-mapcache.h       |   37 +++
>   xen-stub.c           |   41 ++++
>   30 files changed, 2343 insertions(+), 613 deletions(-)
>   create mode 100644 xen-all.c
>   create mode 100644 xen-mapcache-stub.c
>   create mode 100644 xen-mapcache.c
>   create mode 100644 xen-mapcache.h
>   create mode 100644 xen-stub.c
>
>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL] Xen HVM support
  2011-05-12 13:33 ` Anthony Liguori
@ 2011-05-12 13:39   ` Stefano Stabellini
  2011-05-12 13:41     ` Alexander Graf
  0 siblings, 1 reply; 4+ messages in thread
From: Stefano Stabellini @ 2011-05-12 13:39 UTC (permalink / raw)
  To: Anthony Liguori
  Cc: Anthony Perard, xen-devel@lists.xensource.com, Stefano Stabellini,
	Alexander Graf, qemu-devel@nongnu.org

On Thu, 12 May 2011, Anthony Liguori wrote:
> On 05/09/2011 12:39 PM, Alexander Graf wrote:
> > Hi Anthony,
> >
> > These are Anthony's patches for Xen HVM support, nicely signed off,
> > rebased to fit today's HEAD and compile tested.
> >
> > Please pull.
> 
> Pulled.  Thanks.

popping champagne over here :-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL] Xen HVM support
  2011-05-12 13:39   ` [Qemu-devel] " Stefano Stabellini
@ 2011-05-12 13:41     ` Alexander Graf
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Graf @ 2011-05-12 13:41 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: Anthony Perard, xen-devel@lists.xensource.com,
	qemu-devel@nongnu.org, Anthony Liguori, Stefano Stabellini


Am 12.05.2011 um 15:39 schrieb Stefano Stabellini <stefano.stabellini@eu.citrix.com>:

> On Thu, 12 May 2011, Anthony Liguori wrote:
>> On 05/09/2011 12:39 PM, Alexander Graf wrote:
>>> Hi Anthony,
>>> 
>>> These are Anthony's patches for Xen HVM support, nicely signed off,
>>> rebased to fit today's HEAD and compile tested.
>>> 
>>> Please pull.
>> 
>> Pulled.  Thanks.
> 
> popping champagne over here :-)

Sorry it's taken so long :). Let's hope the next ones go in (and get reviewed) quicker!

Alex

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-12 13:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-09 17:39 [PULL] Xen HVM support Alexander Graf
2011-05-12 13:33 ` Anthony Liguori
2011-05-12 13:39   ` [Qemu-devel] " Stefano Stabellini
2011-05-12 13:41     ` Alexander Graf

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).