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 /include | |
parent | b2ed4df79e82a6c95feadbe6efefced7bbeb4db2 (diff) | |
download | qemu-05927e9dc9371766d20c97ac609ec8698e95bb45.zip qemu-05927e9dc9371766d20c97ac609ec8698e95bb45.tar.gz qemu-05927e9dc9371766d20c97ac609ec8698e95bb45.tar.bz2 |
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 'include')
-rw-r--r-- | include/accel/accel-cpu-ops.h (renamed from include/system/accel-ops.h) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/system/accel-ops.h b/include/accel/accel-cpu-ops.h index bf73835..a9191dd 100644 --- a/include/system/accel-ops.h +++ b/include/accel/accel-cpu-ops.h @@ -1,5 +1,5 @@ /* - * Accelerator OPS, used for cpus.c module + * Accelerator per-vCPU handlers * * Copyright 2021 SUSE LLC * @@ -7,8 +7,8 @@ * See the COPYING file in the top-level directory. */ -#ifndef ACCEL_OPS_H -#define ACCEL_OPS_H +#ifndef QEMU_ACCEL_CPU_OPS_H +#define QEMU_ACCEL_CPU_OPS_H #include "qemu/accel.h" #include "exec/vaddr.h" @@ -89,4 +89,4 @@ struct AccelOpsClass { void generic_handle_interrupt(CPUState *cpu, int mask); -#endif /* ACCEL_OPS_H */ +#endif /* QEMU_ACCEL_CPU_OPS_H */ |