diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-03 16:18:32 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-15 19:34:33 +0200 |
| commit | 05927e9dc9371766d20c97ac609ec8698e95bb45 (patch) | |
| tree | 342e51d6a75a10930f241a7e4ad19f48e701fe76 /accel/accel-system.c | |
| parent | b2ed4df79e82a6c95feadbe6efefced7bbeb4db2 (diff) | |
| download | focaccia-qemu-05927e9dc9371766d20c97ac609ec8698e95bb45.tar.gz focaccia-qemu-05927e9dc9371766d20c97ac609ec8698e95bb45.zip | |
accel: Rename 'system/accel-ops.h' -> 'accel/accel-cpu-ops.h'
Unfortunately "system/accel-ops.h" handlers are not only
system-specific. For example, the cpu_reset_hold() hook
is part of the vCPU creation, after it is realized.
Mechanical rename to drop 'system' using:
$ sed -i -e s_system/accel-ops.h_accel/accel-cpu-ops.h_g \
$(git grep -l system/accel-ops.h)
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20250703173248.44995-38-philmd@linaro.org>
Diffstat (limited to 'accel/accel-system.c')
| -rw-r--r-- | accel/accel-system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/accel-system.c b/accel/accel-system.c index c54c30f18b..c2a955a6da 100644 --- a/accel/accel-system.c +++ b/accel/accel-system.c @@ -26,7 +26,7 @@ #include "qemu/osdep.h" #include "qemu/accel.h" #include "hw/boards.h" -#include "system/accel-ops.h" +#include "accel/accel-cpu-ops.h" #include "system/cpus.h" #include "qemu/error-report.h" #include "accel-internal.h" |