|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH 5/7] xen/arm32: mm: Consolidate the domheap mappings initialization
Hi Julien,
On 24.06.2022 11:11, Julien Grall wrote:
> From: Julien Grall <jgrall@xxxxxxxxxx>
>
> At the moment, the domheap mappings initialization is done separately for
> the boot CPU and secondary CPUs. The main difference is for the former
> the pages are part of Xen binary whilst for the latter they are
> dynamically allocated.
>
> It would be good to have a single helper so it is easier to rework
> on the domheap is initialized.
>
> For CPU0, we still need to use pre-allocated pages because the
> allocators may use domain_map_page(), so we need to have the domheap
> area ready first. But we can still delay the initialization to setup_mm().
>
> Introduce a new helper domheap_mapping_init() that will be called
FWICS the function name is init_domheap_mappings.
> from setup_mm() for the boot CPU and from init_secondary_pagetables()
> for secondary CPUs.
>
> Signed-off-by: Julien Grall <jgrall@xxxxxxxxxx>
> ---
> xen/arch/arm/include/asm/arm32/mm.h | 2 +
> xen/arch/arm/mm.c | 92 +++++++++++++++++++----------
> xen/arch/arm/setup.c | 8 +++
> 3 files changed, 71 insertions(+), 31 deletions(-)
>
> diff --git a/xen/arch/arm/include/asm/arm32/mm.h
> b/xen/arch/arm/include/asm/arm32/mm.h
> index 6b039d9ceaa2..575373aeb985 100644
> --- a/xen/arch/arm/include/asm/arm32/mm.h
> +++ b/xen/arch/arm/include/asm/arm32/mm.h
> @@ -10,6 +10,8 @@ static inline bool arch_mfns_in_directmap(unsigned long
> mfn, unsigned long nr)
> return false;
> }
>
> +bool init_domheap_mappings(unsigned int cpu);
> +
> #endif /* __ARM_ARM32_MM_H__ */
>
> /*
> diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c
> index 20733afebce4..995aa1e4480e 100644
> --- a/xen/arch/arm/mm.c
> +++ b/xen/arch/arm/mm.c
> @@ -372,6 +372,58 @@ void clear_fixmap(unsigned map)
> }
>
> #ifdef CONFIG_DOMAIN_PAGE
> +/*
> + * Prepare the area that will be used to map domheap pages. They are
> + * mapped in 2MB chunks, so we need to allocate the page-tables up to
> + * the 2nd level.
> + *
> + * The caller should make sure the root page-table for @cpu has been
> + * been allocated.
Second 'been' not needed.
> + */
> +bool init_domheap_mappings(unsigned int cpu)
> +{
> + unsigned int order = get_order_from_pages(DOMHEAP_SECOND_PAGES);
> + lpae_t *root = per_cpu(xen_pgtable, cpu);
> + unsigned int i, first_idx;
> + lpae_t *domheap;
> + mfn_t mfn;
> +
> + ASSERT(root);
> + ASSERT(!per_cpu(xen_dommap, cpu));
> +
> + /*
> + * The domheap for cpu0 is before the heap is initialized. So we
> + * need to use pre-allocated pages.
> + */
> + if ( !cpu )
> + domheap = cpu0_dommap;
> + else
> + domheap = alloc_xenheap_pages(order, 0);
> +
> + if ( !domheap )
> + return false;
> +
> + /* Ensure the domheap has no stray mappings */
> + memset(domheap, 0, DOMHEAP_SECOND_PAGES * PAGE_SIZE);
> +
> + /*
> + * Update the first level mapping to reference the local CPUs
> + * domheap mapping pages.
> + */
> + mfn = virt_to_mfn(domheap);
> + first_idx = first_table_offset(DOMHEAP_VIRT_START);
> + for ( i = 0; i < DOMHEAP_SECOND_PAGES; i++ )
> + {
> + lpae_t pte = mfn_to_xen_entry(mfn_add(mfn, i), MT_NORMAL);
I might have missed sth but shouldn't 'i' be multiplied by XEN_PT_LPAE_ENTRIES?
Cheers,
Michal
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |