diff options
author | Alexander Graf <agraf@suse.de> | 2009-10-30 06:47:01 +0100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-11-05 06:49:51 +0100 |
commit | 4e755758cbbeb0afe44556c1ce52ea6f590ed5bf (patch) | |
tree | 25cddb4cf7ea84e5c53b4b6c6b8a8968514d4b9e /arch/powerpc/kvm/booke.c | |
parent | powerpc/8xx: Fix build breakage with sparse irq changes (diff) | |
download | linux-4e755758cbbeb0afe44556c1ce52ea6f590ed5bf.tar.xz linux-4e755758cbbeb0afe44556c1ce52ea6f590ed5bf.zip |
Move dirty logging code to sub-arch
PowerPC code handles dirty logging in the generic parts atm. While this
is great for "return -ENOTSUPP", we need to be rather target specific
when actually implementing it.
So let's split it to implementation specific code, so we can implement
it for book3s.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kvm/booke.c')
-rw-r--r-- | arch/powerpc/kvm/booke.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/kvm/booke.c b/arch/powerpc/kvm/booke.c index e7bf4d029484..06f5a9ecc42c 100644 --- a/arch/powerpc/kvm/booke.c +++ b/arch/powerpc/kvm/booke.c @@ -520,6 +520,11 @@ int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu, return kvmppc_core_vcpu_translate(vcpu, tr); } +int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) +{ + return -ENOTSUPP; +} + int __init kvmppc_booke_init(void) { unsigned long ivor[16]; |