On 13.11.2025 13:40, Marek Marczykowski wrote:
> On Thu, Nov 13, 2025 at 12:09:37PM +0100, Jan Beulich wrote:
>> --- a/xen/arch/x86/include/asm/brk.h
>> +++ b/xen/arch/x86/include/asm/brk.h
>> @@ -2,6 +2,10 @@
>>
>> #include <xen/types.h>
>>
>> +#define DEFINE_BRK(var, size) \
>> + static char __section(".bss..brk.page_aligned") __aligned(PAGE_SIZE) \
>> + __used var ## _brk_[size]
>
> This chunk belongs to the previous patch I think.
It could, but it's not used there yet (i.e. would count as dead code).
Jan