* [Qemu-devel] [5351] Fix save/restore regression introduced by r5318
@ 2008-09-29 16:09 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2008-09-29 16:09 UTC (permalink / raw)
To: qemu-devel
Revision: 5351
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5351
Author: aliguori
Date: 2008-09-29 16:09:07 +0000 (Mon, 29 Sep 2008)
Log Message:
-----------
Fix save/restore regression introduced by r5318
sysenter_cs is a u32 and is loaded as a u32.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/target-i386/machine.c
Modified: trunk/target-i386/machine.c
===================================================================
--- trunk/target-i386/machine.c 2008-09-29 13:55:36 UTC (rev 5350)
+++ trunk/target-i386/machine.c 2008-09-29 16:09:07 UTC (rev 5351)
@@ -88,7 +88,7 @@
cpu_put_seg(f, &env->gdt);
cpu_put_seg(f, &env->idt);
- qemu_put_betls(f, &env->sysenter_cs);
+ qemu_put_be32s(f, &env->sysenter_cs);
qemu_put_betls(f, &env->sysenter_esp);
qemu_put_betls(f, &env->sysenter_eip);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-09-29 16:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-29 16:09 [Qemu-devel] [5351] Fix save/restore regression introduced by r5318 Anthony Liguori
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).