Re: [PATCH v2 1/3] xen: page_alloc: Don't open-code IS_ALIGNED()

2022-07-18 Thread Jan Beulich
On 15.07.2022 19:03, Julien Grall wrote: > From: Julien Grall > > init_heap_pages() is using an open-code version of IS_ALIGNED(). Replace > it to improve the readability of the code. > > No functional change intended. > > Signed-off-by: Julien Grall Acked-by: Jan Beulich

Re: [PATCH v2 1/3] xen: page_alloc: Don't open-code IS_ALIGNED()

2022-07-18 Thread Wei Chen
Hi Julien, On 2022/7/16 1:03, Julien Grall wrote: From: Julien Grall init_heap_pages() is using an open-code version of IS_ALIGNED(). Replace it to improve the readability of the code. No functional change intended. Signed-off-by: Julien Grall --- Changes in v2: - Patch added --- x

[PATCH v2 1/3] xen: page_alloc: Don't open-code IS_ALIGNED()

2022-07-15 Thread Julien Grall
From: Julien Grall init_heap_pages() is using an open-code version of IS_ALIGNED(). Replace it to improve the readability of the code. No functional change intended. Signed-off-by: Julien Grall --- Changes in v2: - Patch added --- xen/common/page_alloc.c | 2 +- 1 file changed, 1 insert