diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-03-01 10:34:48 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2017-06-07 18:22:02 +0200 |
commit | f8c45c6550b9ff1e1f0b92709ff3213a79870879 (patch) | |
tree | a50a83c59f416259a423493cc996646bbeca1f7e /target/i386/machine.c | |
parent | c8bc83a4dd29a9a33f5be81686bfe6e2e628097b (diff) |
target/i386: use multiple CPU AddressSpaces
This speeds up SMM switches. Later on it may remove the need to take
the BQL, and it may also allow to reuse code between TCG and KVM.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/machine.c')
-rw-r--r-- | target/i386/machine.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target/i386/machine.c b/target/i386/machine.c index 3cb272948e..8c7a822e9f 100644 --- a/target/i386/machine.c +++ b/target/i386/machine.c @@ -274,10 +274,6 @@ static int cpu_post_load(void *opaque, int version_id) cpu_x86_update_dr7(env, dr7); } tlb_flush(cs); - - if (tcg_enabled()) { - cpu_smm_update(cpu); - } return 0; } |