diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2012-08-24 14:54:57 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-09-06 09:37:25 -0400 |
commit | 2df72e9bc4c505d8357012f2924589f3d16f9d44 (patch) | |
tree | b5b0e8d63005300dd06fd779658639645d55a67b /arch/s390/kvm | |
parent | 09941fbb712655cde9b350852be7a99a6f61a03f (diff) |
KVM: split kvm_arch_flush_shadow
Introducing kvm_arch_flush_shadow_memslot, to invalidate the
translations of a single memory slot.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/s390/kvm')
-rw-r--r-- | arch/s390/kvm/kvm-s390.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c index e83df7f0fedd..ecced9d18986 100644 --- a/arch/s390/kvm/kvm-s390.c +++ b/arch/s390/kvm/kvm-s390.c | |||
@@ -969,7 +969,12 @@ void kvm_arch_commit_memory_region(struct kvm *kvm, | |||
969 | return; | 969 | return; |
970 | } | 970 | } |
971 | 971 | ||
972 | void kvm_arch_flush_shadow(struct kvm *kvm) | 972 | void kvm_arch_flush_shadow_all(struct kvm *kvm) |
973 | { | ||
974 | } | ||
975 | |||
976 | void kvm_arch_flush_shadow_memslot(struct kvm *kvm, | ||
977 | struct kvm_memory_slot *slot) | ||
973 | { | 978 | { |
974 | } | 979 | } |
975 | 980 | ||