x86/shadow: make a local variable in sh_page_fault() HVM-only
authorJan Beulich <jbeulich@suse.com>
Mon, 18 Oct 2021 12:22:32 +0000 (14:22 +0200)
committerJan Beulich <jbeulich@suse.com>
Mon, 18 Oct 2021 12:22:32 +0000 (14:22 +0200)
I recall checking that "r" would still have a user, but when doing so I
failed to recognize that all uses are inside a CONFIG_HVM conditional
section.

Fixes: 9f4f20b27b07 ("x86/shadow: adjust some shadow_set_l<N>e() callers")
Reported-by: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/mm/shadow/multi.c

index a3ce4b6259b78adf2f8742bf443e44f81d8b8a0f..7b8f4dd13b036d4de983530b5b5bc0f67a136775 100644 (file)
@@ -2155,8 +2155,8 @@ static int sh_page_fault(struct vcpu *v,
 #ifdef CONFIG_HVM
     struct sh_emulate_ctxt emul_ctxt;
     const struct x86_emulate_ops *emul_ops;
-#endif
     int r;
+#endif
     p2m_type_t p2mt;
     uint32_t rc, error_code;
     bool walk_ok;