qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH RFC V4 00/14] xen device model support
@ 2010-09-28 15:01 anthony.perard
  2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 01/14] xen: Replace some tab-indents with spaces (clean-up) anthony.perard
                   ` (13 more replies)
  0 siblings, 14 replies; 20+ messages in thread
From: anthony.perard @ 2010-09-28 15:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony PERARD, xen-devel, Stefano.Stabellini

From: Anthony PERARD <anthony.perard@citrix.com>

Hi all,
this is the fourth version of the patch series that adds xen device
model support in qemu.

This is the list of changes we made on top of the last version:

- we addressed the code style change requests;

- we have split mapcache in two file xen-mapcache.c and xen-mapcache-stub.c
  with check in configure to use one or the other;

- we have fixed the compilation issue with user-only target and with older Xen
  release (3.3.0, 3.4.0 and 4.0.1), this come with more check in the configure script;

- we have replaced -enable-xen by a more generic options, 
  so we introduce -accel options (use for kvm and xen).

For the next time we have to remove the Xen specific ACPI Implementation.

Anthony PERARD (14):
  xen: Replace some tab-indents with spaces (clean-up).
  xen: Support new libxc calls from xen unstable.
  xen: Add xen_machine_fv
  Introduce -accel command option.
  xen: Add xen in -accel option.
  xen: Add the Xen platform pci device
  piix_pci: Introduces Xen specific call for irq.
  xen: add a 8259 Interrupt Controller
  xen: Introduce the Xen mapcache
  Introduce qemu_ram_ptr_unlock.
  vl.c: Introduce getter for shutdown_requested and reset_requested.
  xen: Initialize event channels and io rings
  xen: Set running state in xenstore.
  xen: Add a Xen specific ACPI Implementation to target-xen

 Makefile.target      |   13 ++
 configure            |   70 +++++++-
 cpu-common.h         |    1 +
 exec.c               |   71 ++++++-
 hw/hw.h              |    3 +
 hw/pci_ids.h         |    2 +
 hw/piix_pci.c        |   28 +++-
 hw/xen.h             |   26 +++
 hw/xen_acpi_piix4.c  |  411 +++++++++++++++++++++++++++++++++++++
 hw/xen_backend.c     |  314 +++++++++++++++---------------
 hw/xen_backend.h     |    2 +-
 hw/xen_common.h      |   51 ++++--
 hw/xen_disk.c        |  414 +++++++++++++++++++-------------------
 hw/xen_domainbuild.c |    2 +-
 hw/xen_machine_fv.c  |  156 ++++++++++++++
 hw/xen_nic.c         |  230 +++++++++++-----------
 hw/xen_platform.c    |  431 +++++++++++++++++++++++++++++++++++++++
 hw/xen_platform.h    |    8 +
 qemu-options.hx      |   10 +
 sysemu.h             |    2 +
 vl.c                 |   98 ++++++++-
 xen-all.c            |  546 ++++++++++++++++++++++++++++++++++++++++++++++++++
 xen-mapcache-stub.c  |   33 +++
 xen-mapcache.c       |  335 +++++++++++++++++++++++++++++++
 xen-mapcache.h       |   14 ++
 xen-stub.c           |   34 +++
 26 files changed, 2788 insertions(+), 517 deletions(-)
 create mode 100644 hw/xen_acpi_piix4.c
 create mode 100644 hw/xen_machine_fv.c
 create mode 100644 hw/xen_platform.c
 create mode 100644 hw/xen_platform.h
 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

-- 
Anthony PERARD

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

end of thread, other threads:[~2010-09-29  7:38 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-28 15:01 [Qemu-devel] [PATCH RFC V4 00/14] xen device model support anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 01/14] xen: Replace some tab-indents with spaces (clean-up) anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 02/14] xen: Support new libxc calls from xen unstable anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 03/14] xen: Add xen_machine_fv anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 04/14] Introduce -accel command option anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 05/14] xen: Add xen in -accel option anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 06/14] xen: Add the Xen platform pci device anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 07/14] piix_pci: Introduces Xen specific call for irq anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 08/14] xen: add a 8259 Interrupt Controller anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 09/14] xen: Introduce the Xen mapcache anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 10/14] Introduce qemu_ram_ptr_unlock anthony.perard
2010-09-28 15:14   ` [Qemu-devel] " Anthony Liguori
2010-09-28 15:25     ` Stefano Stabellini
2010-09-28 16:01       ` Anthony Liguori
2010-09-28 18:04         ` Stefano Stabellini
2010-09-29  7:38     ` Gerd Hoffmann
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 11/14] vl.c: Introduce getter for shutdown_requested and reset_requested anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 12/14] xen: Initialize event channels and io rings anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 13/14] xen: Set running state in xenstore anthony.perard
2010-09-28 15:01 ` [Qemu-devel] [PATCH RFC V4 14/14] xen: Add a Xen specific ACPI Implementation to target-xen anthony.perard

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