On 20.02.2026 22:46, Andrew Cooper wrote:
> --- a/xen/arch/x86/mm/shadow/multi.c
> +++ b/xen/arch/x86/mm/shadow/multi.c
> @@ -793,7 +793,7 @@ do {
> \
> do { \
> int __done = 0; \
> _FOREACH_PRESENT_L1E(_sl1mfn, _sl1e, _gl1p, \
> - ({ (__done = _done); }), _code); \
> + ({ (__done = (_done)); }), _code); \Could I talk you into dropping the unnecessary pair of parentheses (around the assignment) in exchange? Jan
