mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
x86: fix miss merge
There was a missmerge, and then we got a tail recursive call to cpu_post_load without case base :) Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
499cf1027f
commit
1e7fbc6d3c
1 changed files with 2 additions and 1 deletions
|
@ -383,7 +383,8 @@ static int cpu_post_load(void *opaque, int version_id)
|
|||
}
|
||||
}
|
||||
|
||||
return cpu_post_load(env, version_id);
|
||||
tlb_flush(env, 1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const VMStateDescription vmstate_cpu = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue