Blame SOURCES/kvm-gdbstub-fix-for-commit-87f25c12bfeaaa0c41fb857713bbc.patch

218e99
From 8ca5737b301aa2fe62dcb749c9c559195b534dd3 Mon Sep 17 00:00:00 2001
218e99
From: Marcel Apfelbaum <marcel.a@redhat.com>
218e99
Date: Wed, 6 Nov 2013 16:32:35 +0100
218e99
Subject: [PATCH 76/81] gdbstub: fix for commit 87f25c12bfeaaa0c41fb857713bbc7e8a9b757dc
218e99
218e99
RH-Author: Marcel Apfelbaum <marcel.a@redhat.com>
218e99
Message-id: <1383755557-21590-8-git-send-email-marcel.a@redhat.com>
218e99
Patchwork-id: 55552
218e99
O-Subject: [RHEL-7 qemu-kvm PATCH v3 7/9] gdbstub: fix for commit 87f25c12bfeaaa0c41fb857713bbc7e8a9b757dc
218e99
Bugzilla: 990601
218e99
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
218e99
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
218e99
RH-Acked-by: Alex Williamson <alex.williamson@redhat.com>
218e99
218e99
From: Paolo Bonzini <pbonzini@redhat.com>
218e99
218e99
This commit used the wrong check to prevent an assertion failure.
218e99
After this commit, you need to start a guest in the monitor, you
218e99
cannot use anymore the "c" command in the debugger.  This is
218e99
undesirable.  The commit's aim was to prevent a restart
218e99
after a KVM internal error or something like that; use
218e99
runstate_needs_reset() for that.
218e99
218e99
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
218e99
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
218e99
Message-id: 1370272015-9659-2-git-send-email-pbonzini@redhat.com
218e99
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
218e99
(cherry picked from commit 26ac7a31fbf5522d2ca3f0e2e5b5c8e915701f66)
218e99
Signed-off-by: Marcel Apfelbaum <marcel.a@redhat.com>
218e99
---
218e99
 gdbstub.c | 2 +-
218e99
 1 file changed, 1 insertion(+), 1 deletion(-)
218e99
218e99
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
218e99
---
218e99
 gdbstub.c |    2 +-
218e99
 1 files changed, 1 insertions(+), 1 deletions(-)
218e99
218e99
diff --git a/gdbstub.c b/gdbstub.c
218e99
index 90e54cb..e8541f3 100644
218e99
--- a/gdbstub.c
218e99
+++ b/gdbstub.c
218e99
@@ -371,7 +371,7 @@ static inline void gdb_continue(GDBState *s)
218e99
 #ifdef CONFIG_USER_ONLY
218e99
     s->running_state = 1;
218e99
 #else
218e99
-    if (runstate_check(RUN_STATE_DEBUG)) {
218e99
+    if (!runstate_needs_reset()) {
218e99
         vm_start();
218e99
     }
218e99
 #endif
218e99
-- 
218e99
1.7.1
218e99