All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 22/23] Hack in dirty logging for VGA
@ 2009-07-07 14:17 Alexander Graf
  2009-07-07 15:48 ` Avi Kivity
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Alexander Graf @ 2009-07-07 14:17 UTC (permalink / raw)
  To: kvm-ppc

I haven't implemented dirty logging yet, but without things are just way too
slow. So for the time being I hacked in a dummy function that always tells
userspace we're dirty in VGA regions.

Please don't apply this. This patch is for reference only.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 arch/powerpc/kvm/powerpc.c |   21 ++++++++++++++++++++-
 1 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c
index 0341391..bbb74ad 100644
--- a/arch/powerpc/kvm/powerpc.c
+++ b/arch/powerpc/kvm/powerpc.c
@@ -422,7 +422,26 @@ out:
 
 int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log)
 {
-	return -ENOTSUPP;
+	/* XXX clear (and fill?) dirty log */
+	struct kvm_memory_slot *memslot;
+	int i, n;
+
+        if (log->slot >= KVM_MEMORY_SLOTS)
+                return -EINVAL;
+
+        memslot = &kvm->memslots[log->slot];
+
+	/* XXX This is a hack to get VGA updating working for now */
+	if (memslot->base_gfn != 0x8000)
+		return -ENOENT;
+
+	n = ALIGN(memslot->npages, BITS_PER_LONG) / 8;
+	for (i = 0; i < n; i++)
+		memslot->dirty_bitmap[i] = 0;
+
+	memslot->dirty_bitmap[0] = ( 1 << 30 ) - 1;
+
+	return 0;
 }
 
 long kvm_arch_vm_ioctl(struct file *filp,
-- 
1.6.0.2


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

end of thread, other threads:[~2009-07-08  7:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-07 14:17 [PATCH 22/23] Hack in dirty logging for VGA Alexander Graf
2009-07-07 15:48 ` Avi Kivity
2009-07-07 15:53 ` Alexander Graf
2009-07-08  6:20 ` Benjamin Herrenschmidt
2009-07-08  7:39 ` Alexander Graf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.