mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-09 08:17:53 -06:00
cpus: Fix style in cpu-target.c
Fix style on code we are going to modify. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250123234415.59850-16-philmd@linaro.org>
This commit is contained in:
parent
6eeff37b43
commit
c90476325c
1 changed files with 6 additions and 3 deletions
|
@ -48,12 +48,15 @@ static int cpu_common_post_load(void *opaque, int version_id)
|
||||||
{
|
{
|
||||||
CPUState *cpu = opaque;
|
CPUState *cpu = opaque;
|
||||||
|
|
||||||
/* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
|
/*
|
||||||
version_id is increased. */
|
* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
|
||||||
|
* version_id is increased.
|
||||||
|
*/
|
||||||
cpu->interrupt_request &= ~0x01;
|
cpu->interrupt_request &= ~0x01;
|
||||||
tlb_flush(cpu);
|
tlb_flush(cpu);
|
||||||
|
|
||||||
/* loadvm has just updated the content of RAM, bypassing the
|
/*
|
||||||
|
* loadvm has just updated the content of RAM, bypassing the
|
||||||
* usual mechanisms that ensure we flush TBs for writes to
|
* usual mechanisms that ensure we flush TBs for writes to
|
||||||
* memory we've translated code from. So we must flush all TBs,
|
* memory we've translated code from. So we must flush all TBs,
|
||||||
* which will now be stale.
|
* which will now be stale.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue