aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2025-06-17 06:54:32 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-07-04 14:43:46 +0200
commit6f13a0ada0160d420f1e4945ee53a1abdae33a1c (patch)
tree77e59fe2ee89b6f46a440a0b708b52a00d387eec /include
parentb6340f5866e19deadae8c19399907fed938d8d1f (diff)
downloadqemu-6f13a0ada0160d420f1e4945ee53a1abdae33a1c.zip
qemu-6f13a0ada0160d420f1e4945ee53a1abdae33a1c.tar.gz
qemu-6f13a0ada0160d420f1e4945ee53a1abdae33a1c.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> Reviewed-by: Mads Ynddal <mads@ynddal.dk> Message-Id: <20250703173248.44995-19-philmd@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/system/hvf_int.h1
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,