diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-06-06 12:24:41 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-04 15:22:02 +0200 |
| commit | 9d01d2e86d450f12f275bd64aeb022e8423e220c (patch) | |
| tree | 9de9dedccb96378fea73bb72cae12bd601024531 /include/qemu/accel.h | |
| parent | 487b25c9d93add2e0e58275d7c1ef89810fad763 (diff) | |
| download | focaccia-qemu-9d01d2e86d450f12f275bd64aeb022e8423e220c.tar.gz focaccia-qemu-9d01d2e86d450f12f275bd64aeb022e8423e220c.zip | |
accel: Propagate AccelState to AccelClass::init_machine()
In order to avoid init_machine() to call current_accel(), pass AccelState along. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-Id: <20250703173248.44995-31-philmd@linaro.org>
Diffstat (limited to 'include/qemu/accel.h')
| -rw-r--r-- | include/qemu/accel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/accel.h b/include/qemu/accel.h index 9dea314542..b9a9b3593d 100644 --- a/include/qemu/accel.h +++ b/include/qemu/accel.h @@ -40,7 +40,7 @@ typedef struct AccelClass { /* Cached by accel_init_ops_interfaces() when created */ AccelOpsClass *ops; - int (*init_machine)(MachineState *ms); + int (*init_machine)(AccelState *as, MachineState *ms); bool (*cpu_common_realize)(CPUState *cpu, Error **errp); void (*cpu_common_unrealize)(CPUState *cpu); |