[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 44/45] monitor: fix crash for platforms without a CPU
From: |
David Gibson |
Subject: |
[Qemu-devel] [PULL 44/45] monitor: fix crash for platforms without a CPU 0 |
Date: |
Fri, 23 Sep 2016 17:15:20 +1000 |
Now that we allow CPU hot unplug on a few platforms, we can end up in a
situation where we don't have a CPU with index 0. Or at least we could,
if we didn't have code to explicitly prohibit unplug of CPU 0.
Longer term we want to allow CPU 0 unplug, this patch is an early step in
allowing this, by removing an assumption in the monitor code that CPU 0
always exists.
Signed-off-by: Cédric Le Goater <address@hidden>
[dwg: Rewrote commit message to better explain background]
Reviewed-by: Igor Mammedov <address@hidden>
Reviewed-by: Eduardo Habkost <address@hidden>
Reviewed-by: Luiz Capitulino <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
monitor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/monitor.c b/monitor.c
index 8bb8bbf..83c4edf 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1025,7 +1025,7 @@ int monitor_set_cpu(int cpu_index)
CPUState *mon_get_cpu(void)
{
if (!cur_mon->mon_cpu) {
- monitor_set_cpu(0);
+ monitor_set_cpu(first_cpu->cpu_index);
}
cpu_synchronize_state(cur_mon->mon_cpu);
return cur_mon->mon_cpu;
--
2.7.4
- [Qemu-devel] [PULL 14/45] adb.c: add support for QKeyCode, (continued)
- [Qemu-devel] [PULL 14/45] adb.c: add support for QKeyCode, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 34/45] target-ppc: implement darn instruction, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 39/45] Enable H_CLEAR_MOD and H_CLEAR_REF hypercalls on KVM/PPC64., David Gibson, 2016/09/23
- [Qemu-devel] [PULL 38/45] target-ppc: tlbie/tlbivax should have global effect, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 10/45] libqos: define SPAPR libqos functions, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 41/45] ppc/xics: An ICS with offset 0 is assumed to be uninitialized, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 25/45] target-ppc: consolidate store operations, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 45/45] spapr_pci: Add numa node id, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 05/45] target-ppc: add vector count trailing zeros instructions, David Gibson, 2016/09/23
- [Qemu-devel] [PULL 37/45] target-ppc: add flag in check_tlb_flush(), David Gibson, 2016/09/23
- [Qemu-devel] [PULL 44/45] monitor: fix crash for platforms without a CPU 0,
David Gibson <=
- [Qemu-devel] [PULL 11/45] tests: add RTAS command in the protocol, David Gibson, 2016/09/23
- Re: [Qemu-devel] [PULL 00/45] ppc-for-2.8 queue 20160923, no-reply, 2016/09/23
- Re: [Qemu-devel] [PULL 00/45] ppc-for-2.8 queue 20160923, Peter Maydell, 2016/09/23