From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=58339 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdoEF-0005nU-VS for qemu-devel@nongnu.org; Fri, 14 Jan 2011 13:18:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pdo6w-0006Po-RF for qemu-devel@nongnu.org; Fri, 14 Jan 2011 13:10:56 -0500 Received: from smtp02.citrix.com ([66.165.176.63]:54024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pdo6w-0006Pb-OP for qemu-devel@nongnu.org; Fri, 14 Jan 2011 13:10:54 -0500 From: anthony.perard@citrix.com Date: Fri, 14 Jan 2011 18:10:10 +0000 Message-Id: <1295028613-28237-1-git-send-email-anthony.perard@citrix.com> Subject: [Qemu-devel] [PATCH V2 0/3] Xen VGA dirtybit support List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU-devel Cc: Anthony PERARD , Xen Devel From: Anthony PERARD Hi, This three patches provides the support for sync dirty bitmap. The sync dirty bitmap is not provided for Xen 3.3. This series depends on the other series "Xen device model support". Change v1 -> v2: * Intruduce a patch to put log_start/log_stop in CPUPhysMemoryClient; * There are now only one function to get/check for old physmapping (get_physmapping); * The function xen_sync_dirty_bitmap only do a sync on range that are physmapped and only on one range; * Physmapping list and CPUPhysMemoryClient is now in XenIOState structure; * Introduce log_for_dirtybit that hold the range for dirty bit tracking. Anthony PERARD (3): Introduce log_start/log_stop in CPUPhysMemoryClient xen: Add xc_domain_add_to_physmap to xen_interface. xen: Introduce VGA sync dirty bitmap support configure | 29 ++++++- cpu-all.h | 6 + cpu-common.h | 4 + exec.c | 42 +++++++++ hw/vga.c | 31 +++--- hw/vhost.c | 16 +++ hw/xen_interfaces.c | 31 ++++++ hw/xen_interfaces.h | 5 + hw/xen_redirect.h | 1 + kvm-all.c | 8 +- kvm-stub.c | 10 -- kvm.h | 3 - xen-all.c | 253 +++++++++++++++++++++++++++++++++++++++++++++++++++ 13 files changed, 408 insertions(+), 31 deletions(-) -- Anthony PERARD