qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: anthony.perard@citrix.com
To: qemu-devel@nongnu.org
Cc: Anthony PERARD <anthony.perard@citrix.com>,
	xen-devel@lists.xensource.com, Stefano.Stabellini@eu.citrix.com
Subject: [Qemu-devel] [PATCH RFC V4 00/14] xen device model support
Date: Tue, 28 Sep 2010 16:01:23 +0100	[thread overview]
Message-ID: <1285686097-13036-1-git-send-email-anthony.perard@citrix.com> (raw)

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

             reply	other threads:[~2010-09-28 15:02 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-28 15:01 anthony.perard [this message]
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

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=1285686097-13036-1-git-send-email-anthony.perard@citrix.com \
    --to=anthony.perard@citrix.com \
    --cc=Stefano.Stabellini@eu.citrix.com \
    --cc=qemu-devel@nongnu.org \
    --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 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).