qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH RFC V4 00/14] xen device model support


From: anthony . perard
Subject: [Qemu-devel] [PATCH RFC V4 00/14] xen device model support
Date: Tue, 28 Sep 2010 16:01:23 +0100

From: Anthony PERARD <address@hidden>

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]