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/kvm/kvm-accel-ops.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/kvm/kvm-accel-ops.c')
| -rw-r--r-- | accel/kvm/kvm-accel-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/kvm/kvm-accel-ops.c b/accel/kvm/kvm-accel-ops.c index 0eafc902c3..b709187c7d 100644 --- a/accel/kvm/kvm-accel-ops.c +++ b/accel/kvm/kvm-accel-ops.c @@ -16,7 +16,7 @@ #include "qemu/osdep.h" #include "qemu/error-report.h" #include "qemu/main-loop.h" -#include "system/accel-ops.h" +#include "accel/accel-cpu-ops.h" #include "system/kvm.h" #include "system/kvm_int.h" #include "system/runstate.h" |