diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/include/asm/kvm.h | 4 | ||||
-rw-r--r-- | arch/powerpc/kvm/book3s.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kvm/book3s_hv_builtin.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/include/asm/kvm.h b/arch/powerpc/include/asm/kvm.h index 0ad432bc81d6..f7727d91ac6b 100644 --- a/arch/powerpc/include/asm/kvm.h +++ b/arch/powerpc/include/asm/kvm.h | |||
@@ -170,8 +170,8 @@ struct kvm_sregs { | |||
170 | } ppc64; | 170 | } ppc64; |
171 | struct { | 171 | struct { |
172 | __u32 sr[16]; | 172 | __u32 sr[16]; |
173 | __u64 ibat[8]; | 173 | __u64 ibat[8]; |
174 | __u64 dbat[8]; | 174 | __u64 dbat[8]; |
175 | } ppc32; | 175 | } ppc32; |
176 | } s; | 176 | } s; |
177 | struct { | 177 | struct { |
diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c index a459479995c6..e41ac6f7dcf1 100644 --- a/arch/powerpc/kvm/book3s.c +++ b/arch/powerpc/kvm/book3s.c | |||
@@ -498,7 +498,7 @@ int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, | |||
498 | 498 | ||
499 | /* If nothing is dirty, don't bother messing with page tables. */ | 499 | /* If nothing is dirty, don't bother messing with page tables. */ |
500 | if (is_dirty) { | 500 | if (is_dirty) { |
501 | memslot = &kvm->memslots->memslots[log->slot]; | 501 | memslot = id_to_memslot(kvm->memslots, log->slot); |
502 | 502 | ||
503 | ga = memslot->base_gfn << PAGE_SHIFT; | 503 | ga = memslot->base_gfn << PAGE_SHIFT; |
504 | ga_end = ga + (memslot->npages << PAGE_SHIFT); | 504 | ga_end = ga + (memslot->npages << PAGE_SHIFT); |
diff --git a/arch/powerpc/kvm/book3s_hv_builtin.c b/arch/powerpc/kvm/book3s_hv_builtin.c index 286f13d601cf..a795a13f4a70 100644 --- a/arch/powerpc/kvm/book3s_hv_builtin.c +++ b/arch/powerpc/kvm/book3s_hv_builtin.c | |||
@@ -86,7 +86,7 @@ static inline int lpcr_rmls(unsigned long rma_size) | |||
86 | * to allocate contiguous physical memory for the real memory | 86 | * to allocate contiguous physical memory for the real memory |
87 | * areas for guests. | 87 | * areas for guests. |
88 | */ | 88 | */ |
89 | void kvm_rma_init(void) | 89 | void __init kvm_rma_init(void) |
90 | { | 90 | { |
91 | unsigned long i; | 91 | unsigned long i; |
92 | unsigned long j, npages; | 92 | unsigned long j, npages; |