diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-06-17 06:54:32 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-04 12:08:25 +0200 |
commit | 93bbbcb8d6eb9325530da8c3c313220d45f27252 (patch) | |
tree | 75b9047f084d5a6579bef71a187b4611633b8879 /include | |
parent | 332ad068a025056e2ffd0dc7605897254eb20e15 (diff) | |
download | qemu-93bbbcb8d6eb9325530da8c3c313220d45f27252.zip qemu-93bbbcb8d6eb9325530da8c3c313220d45f27252.tar.gz qemu-93bbbcb8d6eb9325530da8c3c313220d45f27252.tar.bz2 |
accel/hvf: Replace @dirty field by generic CPUState::vcpu_dirty field
No need for accel-specific @dirty field when we have
a generic one in CPUState.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Message-Id: <20250703173248.44995-19-philmd@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/system/hvf_int.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/system/hvf_int.h b/include/system/hvf_int.h index 4f6db40..5150c7d 100644 --- a/include/system/hvf_int.h +++ b/include/system/hvf_int.h @@ -62,7 +62,6 @@ struct AccelCPUState { bool vtimer_masked; sigset_t unblock_ipi_mask; bool guest_debug_enabled; - bool dirty; }; void assert_hvf_ok_impl(hv_return_t ret, const char *file, unsigned int line, |