diff options
author | syeon.hwang <syeon.hwang@samsung.com> | 2012-07-03 14:13:02 +0900 |
---|---|---|
committer | syeon.hwang <syeon.hwang@samsung.com> | 2012-07-03 14:13:02 +0900 |
commit | b885fe5208b27aa031b0b591f3db3a58e327dff2 (patch) | |
tree | 8a8acebfb3adec02da48094bb5cc79e6e29ac652 /target-i386/hax-all.c | |
parent | f0e3fe3f465873aa8fbd21045afad47dc7c84213 (diff) | |
download | qemu-b885fe5208b27aa031b0b591f3db3a58e327dff2.tar.gz qemu-b885fe5208b27aa031b0b591f3db3a58e327dff2.tar.bz2 qemu-b885fe5208b27aa031b0b591f3db3a58e327dff2.zip |
[Title] Apply patch to fix HAXM hang-up issue
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]
Diffstat (limited to 'target-i386/hax-all.c')
-rw-r--r-- | target-i386/hax-all.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target-i386/hax-all.c b/target-i386/hax-all.c index 6c3354aad3..39e43c419c 100644 --- a/target-i386/hax-all.c +++ b/target-i386/hax-all.c @@ -573,7 +573,7 @@ static int hax_vcpu_hax_exec(CPUState *env) } - hax_cpu_synchronize_state(env); + //hax_cpu_synchronize_state(env); do { int hax_ret; @@ -584,10 +584,12 @@ static int hax_vcpu_hax_exec(CPUState *env) break; } +#if 0 if (env->hax_vcpu_dirty) { hax_vcpu_sync_state(env, 1); env->hax_vcpu_dirty = 0; } +#endif hax_vcpu_interrupt(env); |