diff options
Diffstat (limited to 'arch/powerpc/include/asm/kvm_host.h')
| -rw-r--r-- | arch/powerpc/include/asm/kvm_host.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h index a8bf5c673a3..28e8f5e5c63 100644 --- a/arch/powerpc/include/asm/kvm_host.h +++ b/arch/powerpc/include/asm/kvm_host.h @@ -53,6 +53,8 @@  struct kvm;  extern int kvm_unmap_hva(struct kvm *kvm, unsigned long hva); +extern int kvm_unmap_hva_range(struct kvm *kvm, +			       unsigned long start, unsigned long end);  extern int kvm_age_hva(struct kvm *kvm, unsigned long hva);  extern int kvm_test_age_hva(struct kvm *kvm, unsigned long hva);  extern void kvm_set_spte_hva(struct kvm *kvm, unsigned long hva, pte_t pte); @@ -220,6 +222,7 @@ struct revmap_entry {  #define KVMPPC_GOT_PAGE		0x80  struct kvm_arch_memory_slot { +	unsigned long *rmap;  };  struct kvm_arch {  |