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/powerpc.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/powerpc.c')
-rw-r--r-- | arch/powerpc/kvm/powerpc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/kvm/powerpc.c b/arch/powerpc/kvm/powerpc.c index 2a4551f78f60..a06ecc3401fd 100644 --- a/arch/powerpc/kvm/powerpc.c +++ b/arch/powerpc/kvm/powerpc.c @@ -409,11 +409,6 @@ out: return r; } -int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, struct kvm_dirty_log *log) -{ - return -ENOTSUPP; -} - long kvm_arch_vm_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) { |