]> Git Repo - qemu.git/commitdiff
target-s390x: fix s390_cpu_initial_reset
authorAurelien Jarno <[email protected]>
Mon, 15 Jun 2015 15:57:06 +0000 (17:57 +0200)
committerAlexander Graf <[email protected]>
Wed, 17 Jun 2015 10:40:50 +0000 (12:40 +0200)
The s390_cpu_initial_reset function zeroes a big part of the CPU state
structure, including CPU_COMMON, and thus the QEMU TLB structure. As
they should not be initialized with zeroes only, we need to call the
tlb_flush to initialize it correctly.

Signed-off-by: Aurelien Jarno <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
target-s390x/cpu.c

index cc9cc379cd280559daca6d58d7bfd3417533d785..ba7a887eeadb9b989a8150f16a8d0ecf9676e822 100644 (file)
@@ -131,6 +131,7 @@ static void s390_cpu_initial_reset(CPUState *s)
     if (kvm_enabled()) {
         kvm_s390_reset_vcpu(cpu);
     }
+    tlb_flush(s, 1);
 }
 
 /* CPUClass:reset() */
This page took 0.022645 seconds and 4 git commands to generate.