Hi Jan, On 30/03/2022 10:52, Jan Beulich wrote:
On 30.03.2022 11:36, Penny Zheng wrote:--- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -35,6 +35,10 @@ #include <asm/guest.h> #endif+#ifndef is_domain_on_static_allocation+#define is_domain_on_static_allocation(d) 0Nit: "false", not "0".
I think we also want to evaluate d so the behavior on x86 and arm is the same. Something like ((void)(d), false).
Cheers, -- Julien Grall
