From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40014) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4G4L-0000J0-W6 for qemu-devel@nongnu.org; Wed, 22 Aug 2012 14:54:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T4G4E-0006nz-PX for qemu-devel@nongnu.org; Wed, 22 Aug 2012 14:54:21 -0400 Received: from smtp.citrix.com ([66.165.176.89]:18275) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4G4E-0006ng-LS for qemu-devel@nongnu.org; Wed, 22 Aug 2012 14:54:14 -0400 From: Julien Grall Date: Wed, 22 Aug 2012 13:30:13 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [QEMU][RFC V2 00/10] QEMU disaggregation in Xen environment. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Julien Grall , christian.limpach@gmail.com, Stefano.Stabellini@eu.citrix.com, xen-devel@lists.xen.org Hello, This patch series only concerns QEMU. Another serie will come for Xen. I'm currently working on QEMU disaggregation in Xen environment. The goal is to be able to running multiple QEMU for a same domain (http://lists.xen.org/archives/html/xen-devel/2012-03/msg00299.html). I have already sent a version of patch series few months ago: - QEMU: https://lists.gnu.org/archive/html/qemu-devel/2012-03/msg04401.html - Xen: http://lists.xen.org/archives/html/xen-devel/2012-03/msg01947.html With the different feedbacks, I have improved both QEMU and Xen modifications. As before, I will sent two patch series, one for QEMU the other for Xen. Modifications between V1 and V2: - introduce new machine options - use memory listener to avoid Xen specific code in QEMU core (depends of "[PATCH V5 0/8] memory: unify ioport registration" patch series) - implement disaggregation - add wrapper for older Xen version Julien Grall (10): xen: add new machine options to support QEMU disaggregation in Xen environment xen: modify QEMU status path in XenStore xen: add wrappers for new Xen disaggregation hypercalls xen-hvm: register qemu as ioreq server and retrieve shared pages xen-memory: register memory/IO range in Xen xen-pci: register PCI device in Xen and handle IOREQ_TYPE_PCI_CONFIG xen: specify which device is part of default devices xen: audio is not a part of default devices xen-memory: handle node "device_model" for physical mapping xen: emulate IDE outside default device set arch_init.c | 6 + hw/ide/qdev.c | 8 ++- hw/pc_piix.c | 40 +++++--- hw/pci.c | 6 + hw/xen.h | 31 ++++++ hw/xen_common.h | 58 +++++++++++ qemu-config.c | 12 ++ xen-all.c | 304 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- xen-stub.c | 5 + 9 files changed, 447 insertions(+), 23 deletions(-) -- Julien Grall