On 11/04/2024 7:34 am, Michal Orzel wrote: > Hi Andrew, > > On 10/04/2024 20:42, Andrew Cooper wrote: >> diff --git a/xen/common/virtual_region.c b/xen/common/virtual_region.c >> index 7d8bdeb61282..db3e0dc9fe74 100644 >> --- a/xen/common/virtual_region.c >> +++ b/xen/common/virtual_region.c >> @@ -15,8 +15,18 @@ extern const struct bug_frame >> __start_bug_frames_2[], __stop_bug_frames_2[], >> __start_bug_frames_3[], __stop_bug_frames_3[]; >> >> +/* >> + * For the built-in regions, the double linked list can be constructed at >> + * build time. Forward-declare the elements and their initialisers. >> + */ >> +static struct list_head virtual_region_list; >> +static struct virtual_region core, core_init; > ... empty line here for better readability
Will do. Thanks. ~Andrew