summaryrefslogtreecommitdiffstats
path: root/gdbstub.c
diff options
context:
space:
mode:
authorAndreas Färber2013-11-05 17:46:04 +0100
committerAndreas Färber2013-11-05 17:46:04 +0100
commit6d0a37354259ec446bace1a671685ba27f1fe1d6 (patch)
tree0cd2a17c667731f1d0b9ef9427eb641771838f9d /gdbstub.c
parentMerge remote-tracking branch 'kwolf/tags/for-anthony' into staging (diff)
parentvl: allow "cont" from panicked state (diff)
downloadqemu-6d0a37354259ec446bace1a671685ba27f1fe1d6.tar.gz
qemu-6d0a37354259ec446bace1a671685ba27f1fe1d6.tar.xz
qemu-6d0a37354259ec446bace1a671685ba27f1fe1d6.zip
Merge tag 'for_anthony' of git://git.kernel.org/pub/scm/virt/kvm/mst/qemu
pci, pc, pvpanic bug fixes This fixes strange pvpanic behaviour: you had to pause to let VM continue (and potentially reboot on panic if enabled). This also fixes two bugs reported by Andreas. One is a long-standing bug exposed by recent pci changes, the other affects old piix machine types and was caused by recent acpi changes. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'gdbstub.c')
-rw-r--r--gdbstub.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gdbstub.c b/gdbstub.c
index 0e5a3f5bf9..e8ab0b2992 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -368,9 +368,6 @@ static inline void gdb_continue(GDBState *s)
#ifdef CONFIG_USER_ONLY
s->running_state = 1;
#else
- if (runstate_check(RUN_STATE_GUEST_PANICKED)) {
- runstate_set(RUN_STATE_DEBUG);
- }
if (!runstate_needs_reset()) {
vm_start();
}