diff options
author | Scott Wood <scottwood@freescale.com> | 2011-12-20 10:34:26 -0500 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-04-08 05:51:05 -0400 |
commit | fafd68327858bf30c846d38c7ea144f0827f552e (patch) | |
tree | 2b848572072cf86ccd138d00610237c8eef9e4b7 /arch/powerpc/kvm/e500.c | |
parent | 94fa9d9927627a948cef3eff7ebd228dcab5a316 (diff) |
KVM: PPC: booke: Move vm core init/destroy out of booke.c
e500mc will want to do lpid allocation/deallocation here.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/powerpc/kvm/e500.c')
-rw-r--r-- | arch/powerpc/kvm/e500.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/e500.c b/arch/powerpc/kvm/e500.c index 2d5fe04d5eec..ac6c9ae14a63 100644 --- a/arch/powerpc/kvm/e500.c +++ b/arch/powerpc/kvm/e500.c | |||
@@ -226,6 +226,15 @@ void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu) | |||
226 | kmem_cache_free(kvm_vcpu_cache, vcpu_e500); | 226 | kmem_cache_free(kvm_vcpu_cache, vcpu_e500); |
227 | } | 227 | } |
228 | 228 | ||
229 | int kvmppc_core_init_vm(struct kvm *kvm) | ||
230 | { | ||
231 | return 0; | ||
232 | } | ||
233 | |||
234 | void kvmppc_core_destroy_vm(struct kvm *kvm) | ||
235 | { | ||
236 | } | ||
237 | |||
229 | static int __init kvmppc_e500_init(void) | 238 | static int __init kvmppc_e500_init(void) |
230 | { | 239 | { |
231 | int r, i; | 240 | int r, i; |