diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-18 18:30:14 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-06 17:59:43 +0200 |
commit | 38bfe69180f99d05611a14bab4bb72c95e755b58 (patch) | |
tree | e2352053a1102f76961c15ea46741a3e632a04c6 /include/sysemu/kvm_int.h | |
parent | 7bbda04c8d13d0a599b31ed1c10dc76a62f9d4dc (diff) |
kvm-all: add support for multiple address spaces
Make kvm_memory_listener_register public, and assign a kernel
address space id to each KVMMemoryListener.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu/kvm_int.h')
-rw-r--r-- | include/sysemu/kvm_int.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sysemu/kvm_int.h b/include/sysemu/kvm_int.h index d15f8bb883..888557a1ca 100644 --- a/include/sysemu/kvm_int.h +++ b/include/sysemu/kvm_int.h @@ -25,6 +25,7 @@ typedef struct KVMSlot typedef struct KVMMemoryListener { MemoryListener listener; KVMSlot *slots; + int as_id; } KVMMemoryListener; #define TYPE_KVM_ACCEL ACCEL_CLASS_NAME("kvm") @@ -32,4 +33,7 @@ typedef struct KVMMemoryListener { #define KVM_STATE(obj) \ OBJECT_CHECK(KVMState, (obj), TYPE_KVM_ACCEL) +void kvm_memory_listener_register(KVMState *s, KVMMemoryListener *kml, + AddressSpace *as, int as_id); + #endif |