aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2010-08-17 05:41:44 -0400
committerAvi Kivity <avi@redhat.com>2010-10-24 04:52:15 -0400
commitad0873763a83e7b31ba87a85ec2027dd6a9d7b55 (patch)
treeefc7e87eb5026732633f655d7270b66c7f586ec1 /arch/powerpc
parentdf08bd10266ce6132278f6b4ddc4bb0a12330b56 (diff)
KVM: PPC: Force enable nap on KVM
There are some heuristics in the PPC power management code that try to find out if the particular hardware we're running on supports proper power management or just hangs the machine when going into nap mode. Since we know that KVM is safe with nap, let's force enable it in the PV code once we're certain that we are on a KVM VM. Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/kvm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/kvm.c b/arch/powerpc/kernel/kvm.c
index 48a033865410..669d989be1d6 100644
--- a/arch/powerpc/kernel/kvm.c
+++ b/arch/powerpc/kernel/kvm.c
@@ -582,6 +582,9 @@ static int __init kvm_guest_init(void)
582 if (kvm_para_has_feature(KVM_FEATURE_MAGIC_PAGE)) 582 if (kvm_para_has_feature(KVM_FEATURE_MAGIC_PAGE))
583 kvm_use_magic_page(); 583 kvm_use_magic_page();
584 584
585 /* Enable napping */
586 powersave_nap = 1;
587
585free_tmp: 588free_tmp:
586 kvm_free_tmp(); 589 kvm_free_tmp();
587 590