qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6756] Clear CPU_INTERRUPT_EXIT on VM load
@ 2009-03-07 20:57 Aurelien Jarno
  0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-03-07 20:57 UTC (permalink / raw)
  To: qemu-devel

Revision: 6756
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6756
Author:   aurel32
Date:     2009-03-07 20:57:31 +0000 (Sat, 07 Mar 2009)
Log Message:
-----------
Clear CPU_INTERRUPT_EXIT on VM load

CPU_INTERRUPT_EXIT is not set anymore in env->interrupt_request since
revision 6728. Make sure the bit is cleared on VM load.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

Revision Links:
--------------
    http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6728

Modified Paths:
--------------
    trunk/exec.c

Modified: trunk/exec.c
===================================================================
--- trunk/exec.c	2009-03-07 20:57:01 UTC (rev 6755)
+++ trunk/exec.c	2009-03-07 20:57:31 UTC (rev 6756)
@@ -523,6 +523,7 @@
 
     qemu_get_be32s(f, &env->halted);
     qemu_get_be32s(f, &env->interrupt_request);
+    env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
     tlb_flush(env, 1);
 
     return 0;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-07 20:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-07 20:57 [Qemu-devel] [6756] Clear CPU_INTERRUPT_EXIT on VM load Aurelien Jarno

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).