All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Jones <drjones@redhat.com>
To: kvmarm@lists.cs.columbia.edu, qemu-devel@nongnu.org,
	ard.biesheuvel@linaro.org, christoffer.dall@linaro.org,
	marc.zyngier@arm.com, peter.maydell@linaro.org
Cc: pbonzini@redhat.com, lersek@redhat.com, agraf@suse.de,
	catalin.marinas@arm.com
Subject: [Qemu-devel] [RFC PATCH 0/6] support KVM_MEM_INCOHERENT
Date: Fri,  6 Mar 2015 13:53:32 -0500	[thread overview]
Message-ID: <1425668018-3649-1-git-send-email-drjones@redhat.com> (raw)
In-Reply-To: <1425667780-3449-1-git-send-email-drjones@redhat.com>

Add support for the new KVM_MEM_INCOHERENT flag, and flag
appropriate memory. (Only flags vram for now.)

Patch 6/6 doesn't appear to be complete. While the VGA output is
99% corruption free, it's not perfect, so it's missing flushes
somewhere... 

Andrew Jones (6):
  memory: add incoherent cache flag
  HACK: linux header update
  kvm-all: put kvm_mem_flags to more work
  kvm-all: set KVM_MEM_INCOHERENT
  vga: flag vram as incoherent
  memory: add clear_cache_to_poc

 exec.c                    | 16 ++++++++++------
 hw/display/vga.c          |  1 +
 include/exec/exec-all.h   | 41 +++++++++++++++++++++++++++++++++++++++++
 include/exec/memory.h     | 23 +++++++++++++++++++++++
 kvm-all.c                 | 28 ++++++++++++++++++----------
 linux-headers/linux/kvm.h |  1 +
 memory.c                  | 15 +++++++++++++++
 7 files changed, 109 insertions(+), 16 deletions(-)

-- 
1.8.3.1

WARNING: multiple messages have this Message-ID (diff)
From: Andrew Jones <drjones@redhat.com>
To: kvmarm@lists.cs.columbia.edu, qemu-devel@nongnu.org,
	ard.biesheuvel@linaro.org, christoffer.dall@linaro.org,
	marc.zyngier@arm.com, peter.maydell@linaro.org
Cc: pbonzini@redhat.com, lersek@redhat.com, catalin.marinas@arm.com
Subject: [RFC PATCH 0/6] support KVM_MEM_INCOHERENT
Date: Fri,  6 Mar 2015 13:53:32 -0500	[thread overview]
Message-ID: <1425668018-3649-1-git-send-email-drjones@redhat.com> (raw)
In-Reply-To: <1425667780-3449-1-git-send-email-drjones@redhat.com>

Add support for the new KVM_MEM_INCOHERENT flag, and flag
appropriate memory. (Only flags vram for now.)

Patch 6/6 doesn't appear to be complete. While the VGA output is
99% corruption free, it's not perfect, so it's missing flushes
somewhere... 

Andrew Jones (6):
  memory: add incoherent cache flag
  HACK: linux header update
  kvm-all: put kvm_mem_flags to more work
  kvm-all: set KVM_MEM_INCOHERENT
  vga: flag vram as incoherent
  memory: add clear_cache_to_poc

 exec.c                    | 16 ++++++++++------
 hw/display/vga.c          |  1 +
 include/exec/exec-all.h   | 41 +++++++++++++++++++++++++++++++++++++++++
 include/exec/memory.h     | 23 +++++++++++++++++++++++
 kvm-all.c                 | 28 ++++++++++++++++++----------
 linux-headers/linux/kvm.h |  1 +
 memory.c                  | 15 +++++++++++++++
 7 files changed, 109 insertions(+), 16 deletions(-)

-- 
1.8.3.1

  parent reply	other threads:[~2015-03-06 18:53 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-06 18:49 [Qemu-devel] the arm cache coherency cluster Andrew Jones
2015-03-06 18:49 ` Andrew Jones
2015-03-06 18:52 ` [Qemu-devel] [RFC PATCH 0/6] flush/invalidate on entry/exit Andrew Jones
2015-03-06 18:52   ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 1/6] kvm: promote KVM_MEMSLOT_INCOHERENT to uapi Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 2/6] KVM: Introduce incoherent cache maintenance API Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 3/6] KVM: ARM: change __coherent_cache_guest_page interface Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 4/6] KVM: ARM: extend __coherent_cache_guest_page Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 5/6] KVM: ARM: implement kvm_*_incoherent_memory_regions Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:52   ` [Qemu-devel] [RFC PATCH 6/6] KVM: ARM: no need for kvm_arch_flush_incoherent Andrew Jones
2015-03-06 18:52     ` Andrew Jones
2015-03-06 18:53 ` Andrew Jones [this message]
2015-03-06 18:53   ` [RFC PATCH 0/6] support KVM_MEM_INCOHERENT Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [RFC PATCH 1/6] memory: add incoherent cache flag Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [RFC PATCH 2/6] HACK: linux header update Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [PATCH 3/6] kvm-all: put kvm_mem_flags to more work Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [RFC PATCH 4/6] kvm-all: set KVM_MEM_INCOHERENT Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [RFC PATCH 5/6] vga: flag vram as incoherent Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-06 18:53   ` [Qemu-devel] [RFC/WIP PATCH 6/6] memory: add clear_cache_to_poc Andrew Jones
2015-03-06 18:53     ` Andrew Jones
2015-03-11 19:21     ` [Qemu-devel] " Andrew Jones
2015-03-11 19:21       ` Andrew Jones
2015-03-18 19:00 ` [Qemu-devel] the arm cache coherency cluster Andrew Jones
2015-03-18 19:00   ` Andrew Jones

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=1425668018-3649-1-git-send-email-drjones@redhat.com \
    --to=drjones@redhat.com \
    --cc=agraf@suse.de \
    --cc=ard.biesheuvel@linaro.org \
    --cc=catalin.marinas@arm.com \
    --cc=christoffer.dall@linaro.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=lersek@redhat.com \
    --cc=marc.zyngier@arm.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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 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.