[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86: fix comment on super page alignment requirement
commit a917d607e23dea06d3f82955d421a4eb53e41a4a Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Fri Sep 28 09:39:57 2018 +0100 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Fri Sep 28 18:07:54 2018 +0100 x86: fix comment on super page alignment requirement BOOTSTRAP_DIRECTMAP_END is gone. The comment in question should refer to BOOSTRAP_MAP_BASE and 4GB instead. Move the entire comment block to where it belongs -- immediately before the loop which does the things said in the comment. Remove two trailing spaces while at it. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/setup.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 2fbf7d574c..cf404ecf12 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -942,19 +942,6 @@ void __init noreturn __start_xen(unsigned long mbi_p) initial_images = mod; nr_initial_images = mbi->mods_count; - /* - * Iterate backwards over all superpage-aligned RAM regions. - * - * We require superpage alignment because the boot allocator is not yet - * initialised. Hence we can only map superpages in the address range - * 0 to BOOTSTRAP_DIRECTMAP_END, as this is guaranteed not to require - * dynamic allocation of pagetables. - * - * As well as mapping superpages in that range, in preparation for - * initialising the boot allocator, we also look for a region to which - * we can relocate the dom0 kernel and other multiboot modules. Also, on - * x86/64, we relocate Xen to higher memory. - */ for ( i = 0; !efi_enabled(EFI_LOADER) && i < mbi->mods_count; i++ ) { if ( mod[i].mod_start & (PAGE_SIZE - 1) ) @@ -987,6 +974,19 @@ void __init noreturn __start_xen(unsigned long mbi_p) highmem_start &= ~((1UL << L3_PAGETABLE_SHIFT) - 1); #endif + /* + * Iterate backwards over all superpage-aligned RAM regions. + * + * We require superpage alignment because the boot allocator is + * not yet initialised. Hence we can only map superpages in the + * address range BOOTSTRAP_MAP_BASE to 4GB, as this is guaranteed + * not to require dynamic allocation of pagetables. + * + * As well as mapping superpages in that range, in preparation for + * initialising the boot allocator, we also look for a region to which + * we can relocate the dom0 kernel and other multiboot modules. Also, on + * x86/64, we relocate Xen to higher memory. + */ for ( i = boot_e820.nr_map-1; i >= 0; i-- ) { uint64_t s, e, mask = (1UL << L2_PAGETABLE_SHIFT) - 1; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |