aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kvm
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>2012-10-14 21:15:41 -0400
committerAlexander Graf <agraf@suse.de>2012-10-30 05:54:53 -0400
commit512691d4907d7cf4b8d05c6f8572d1fa60ccec20 (patch)
tree8cb0fb7f8cdc1b0283ef7cba585775f47b974ebc /arch/powerpc/kvm
parentc99ec973a63e2249020d6d93a46d7572432da6a2 (diff)
KVM: PPC: Book3S HV: Allow KVM guests to stop secondary threads coming online
When a Book3S HV KVM guest is running, we need the host to be in single-thread mode, that is, all of the cores (or at least all of the cores where the KVM guest could run) to be running only one active hardware thread. This is because of the hardware restriction in POWER processors that all of the hardware threads in the core must be in the same logical partition. Complying with this restriction is much easier if, from the host kernel's point of view, only one hardware thread is active. This adds two hooks in the SMP hotplug code to allow the KVM code to make sure that secondary threads (i.e. hardware threads other than thread 0) cannot come online while any KVM guest exists. The KVM code still has to check that any core where it runs a guest has the secondary threads offline, but having done that check it can now be sure that they will not come online while the guest is running. Signed-off-by: Paul Mackerras <paulus@samba.org> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch/powerpc/kvm')
-rw-r--r--arch/powerpc/kvm/book3s_hv.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/powerpc/kvm/book3s_hv.c b/arch/powerpc/kvm/book3s_hv.c
index 9a15da76e56b..c5ddf048e19e 100644
--- a/arch/powerpc/kvm/book3s_hv.c
+++ b/arch/powerpc/kvm/book3s_hv.c
@@ -47,6 +47,7 @@
47#include <asm/page.h> 47#include <asm/page.h>
48#include <asm/hvcall.h> 48#include <asm/hvcall.h>
49#include <asm/switch_to.h> 49#include <asm/switch_to.h>
50#include <asm/smp.h>
50#include <linux/gfp.h> 51#include <linux/gfp.h>
51#include <linux/vmalloc.h> 52#include <linux/vmalloc.h>
52#include <linux/highmem.h> 53#include <linux/highmem.h>
@@ -1016,8 +1017,6 @@ static int kvmppc_run_core(struct kvmppc_vcore *vc)
1016 /* 1017 /*
1017 * Make sure we are running on thread 0, and that 1018 * Make sure we are running on thread 0, and that
1018 * secondary threads are offline. 1019 * secondary threads are offline.
1019 * XXX we should also block attempts to bring any
1020 * secondary threads online.
1021 */ 1020 */
1022 if (threads_per_core > 1 && !on_primary_thread()) { 1021 if (threads_per_core > 1 && !on_primary_thread()) {
1023 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list) 1022 list_for_each_entry(vcpu, &vc->runnable_threads, arch.run_list)
@@ -1730,11 +1729,20 @@ int kvmppc_core_init_vm(struct kvm *kvm)
1730 1729
1731 kvm->arch.using_mmu_notifiers = !!cpu_has_feature(CPU_FTR_ARCH_206); 1730 kvm->arch.using_mmu_notifiers = !!cpu_has_feature(CPU_FTR_ARCH_206);
1732 spin_lock_init(&kvm->arch.slot_phys_lock); 1731 spin_lock_init(&kvm->arch.slot_phys_lock);
1732
1733 /*
1734 * Don't allow secondary CPU threads to come online
1735 * while any KVM VMs exist.
1736 */
1737 inhibit_secondary_onlining();
1738
1733 return 0; 1739 return 0;
1734} 1740}
1735 1741
1736void kvmppc_core_destroy_vm(struct kvm *kvm) 1742void kvmppc_core_destroy_vm(struct kvm *kvm)
1737{ 1743{
1744 uninhibit_secondary_onlining();
1745
1738 if (kvm->arch.rma) { 1746 if (kvm->arch.rma) {
1739 kvm_release_rma(kvm->arch.rma); 1747 kvm_release_rma(kvm->arch.rma);
1740 kvm->arch.rma = NULL; 1748 kvm->arch.rma = NULL;