[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 13/24] accel/tcg: Update CPUNegativeOffsetState::can_do_io field
|
From: |
Philippe Mathieu-Daudé |
|
Subject: |
[PATCH 13/24] accel/tcg: Update CPUNegativeOffsetState::can_do_io field documentation |
|
Date: |
Mon, 29 Apr 2024 00:14:39 +0200 |
The @can_do_io field got moved from CPUState to
CPUNegativeOffsetState in commit 464dacf609 ("accel/tcg:
Move can_do_io to CPUNegativeOffsetState").
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
include/hw/core/cpu.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h
index 9b99d8e8fe..beb37342e9 100644
--- a/include/hw/core/cpu.h
+++ b/include/hw/core/cpu.h
@@ -338,9 +338,10 @@ typedef union IcountDecr {
} u16;
} IcountDecr;
-/*
- * Elements of CPUState most efficiently accessed from CPUArchState,
- * via small negative offsets.
+/**
+ * CPUNegativeOffsetState: Elements of CPUState most efficiently accessed
+ * from CPUArchState, via small negative offsets.
+ * @can_do_io: True if memory-mapped IO is allowed.
*/
typedef struct CPUNegativeOffsetState {
CPUTLB tlb;
@@ -400,7 +401,6 @@ struct qemu_work_item;
* @crash_occurred: Indicates the OS reported a crash (panic) for this CPU
* @singlestep_enabled: Flags for single-stepping.
* @icount_extra: Instructions until next timer event.
- * @neg.can_do_io: True if memory-mapped IO is allowed.
* @cpu_ases: Pointer to array of CPUAddressSpaces (which define the
* AddressSpaces this CPU has)
* @num_ases: number of CPUAddressSpaces in @cpu_ases
--
2.41.0
- [PATCH 08/24] user: Forward declare TaskState type definition, (continued)
- [PATCH 08/24] user: Forward declare TaskState type definition, Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 09/24] user: Declare get_task_state() once in 'accel/tcg/vcpu-state.h', Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 10/24] user: Use get_task_state() helper, Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 11/24] accel/tcg: Allocate per-vCPU accel state in create_vcpu_thread(), Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 12/24] accel/tcg: Move TaskState from CPUState to TCG AccelCPUState, Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 13/24] accel/tcg: Update CPUNegativeOffsetState::can_do_io field documentation,
Philippe Mathieu-Daudé <=
- [PATCH 14/24] accel/tcg: Move plugin fields to CPUNegativeOffsetState, Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 15/24] accel/tcg: Restrict IcountDecr and CPUTLB to TCG, Philippe Mathieu-Daudé, 2024/04/28
- [PATCH 16/24] accel/tcg: Move @jmp_env from CPUState to TCG AccelCPUState, Philippe Mathieu-Daudé, 2024/04/28