From 4131a1d83c69f63dcaec93342fe340fb3ba64a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Tue, 13 Jan 2026 21:34:20 +0100 Subject: [PATCH] accel/nvmm: Fix 'cpu' typo in nvmm_init_vcpu() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo to avoid the following build failure: target/i386/nvmm/nvmm-all.c: In function 'nvmm_init_vcpu': target/i386/nvmm/nvmm-all.c:988:9: error: 'AccelCPUState' has no member named 'vcpu_dirty' 988 | qcpu->vcpu_dirty = true; | ^~ Cc: qemu-stable@nongnu.org Reported-by: Thomas Huth Fixes: 2098164a6be ("accel/nvmm: Replace @dirty field by generic CPUState::vcpu_dirty field") Signed-off-by: Philippe Mathieu-Daudé Tested-by: Thomas Huth Reviewed-by: Pierrick Bouvier Tested-by: Pierrick Bouvier Message-ID: <20260113203924.81560-1-philmd@linaro.org> (cherry picked from commit 7be4256281f430f726366c92ffdea0b72651de8a) Signed-off-by: Michael Tokarev --- target/i386/nvmm/nvmm-all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/i386/nvmm/nvmm-all.c b/target/i386/nvmm/nvmm-all.c index b9bd9ed985..f808828d49 100644 --- a/target/i386/nvmm/nvmm-all.c +++ b/target/i386/nvmm/nvmm-all.c @@ -985,7 +985,7 @@ nvmm_init_vcpu(CPUState *cpu) } } - qcpu->vcpu_dirty = true; + cpu->vcpu_dirty = true; cpu->accel = qcpu; return 0;