[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 15/20] cpus: Fix style in cpu-target.c
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 15/20] cpus: Fix style in cpu-target.c |
Date: |
Fri, 24 Jan 2025 00:44:09 +0100 |
Fix style on code we are going to modify.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
cpu-target.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/cpu-target.c b/cpu-target.c
index 6d8b7825746..a2999e7c3c0 100644
--- a/cpu-target.c
+++ b/cpu-target.c
@@ -47,12 +47,15 @@ static int cpu_common_post_load(void *opaque, int
version_id)
{
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;
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
* memory we've translated code from. So we must flush all TBs,
* which will now be stale.
--
2.47.1
- Re: [PATCH 10/20] accel/tcg: Rename 'hw/core/tcg-cpu-ops.h' -> 'accel/tcg/cpu-ops.h', (continued)
- [PATCH 11/20] accel: Rename 'hw/core/accel-cpu.h' -> 'accel/accel-cpu-target.h', Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 12/20] accel/accel-cpu-target.h: Include missing 'cpu.h' header, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 13/20] accel: Forward-declare AccelOpsClass in 'qemu/typedefs.h', Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 14/20] accel/tcg: Move cpu_memory_rw_debug() user implementation to user-exec.c, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 15/20] cpus: Fix style in cpu-target.c,
Philippe Mathieu-Daudé <=
- [PATCH 16/20] cpus: Restrict cpu_common_post_load() code to TCG, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 17/20] cpus: Have cpu_class_init_props() per user / system emulation, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 18/20] cpus: Have cpu_exec_initfn() per user / system emulation, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 19/20] cpus: Register VMState per user / system emulation, Philippe Mathieu-Daudé, 2025/01/23
- [PATCH 20/20] cpus: Build cpu_exec_[un]realizefn() methods once, Philippe Mathieu-Daudé, 2025/01/23