diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-08 13:30:58 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-30 16:55:32 +0200 |
commit | 4c6637525290dc863a00be7f58fc11d07b780bd4 (patch) | |
tree | 06859ebc2c73a788523d8a2c60d572510e95a607 /target-ppc | |
parent | f8a9f720dd2fa5c1560838c26c6dad396a0cef5b (diff) | |
download | qemu-4c6637525290dc863a00be7f58fc11d07b780bd4.tar.gz qemu-4c6637525290dc863a00be7f58fc11d07b780bd4.tar.bz2 qemu-4c6637525290dc863a00be7f58fc11d07b780bd4.zip |
kvm: add support for memory transaction attributes
Let kvm_arch_post_run convert fields in the kvm_run struct to MemTxAttrs.
These are then passed to address_space_rw.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/kvm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index 12328a4027..1da9ea81e5 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -39,6 +39,7 @@ #include "sysemu/watchdog.h" #include "trace.h" #include "exec/gdbstub.h" +#include "exec/memattrs.h" //#define DEBUG_KVM @@ -1270,8 +1271,9 @@ void kvm_arch_pre_run(CPUState *cs, struct kvm_run *run) * anyways, so we will get a chance to deliver the rest. */ } -void kvm_arch_post_run(CPUState *cpu, struct kvm_run *run) +MemTxAttrs kvm_arch_post_run(CPUState *cs, struct kvm_run *run) { + return MEMTXATTRS_UNSPECIFIED; } int kvm_arch_process_async_events(CPUState *cs) |