The p2m root table does not need to be allocate separately.
Also remove unnecessary fields initialization as the structure is already
memset to 0 and the fields will be overridden by p2m_alloc_table.
Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
share_xen_page_with_guest(
virt_to_page(d->shared_info), d, XENSHARE_writable);
- if ( (rc = p2m_alloc_table(d)) != 0 )
- goto fail;
-
switch ( config->gic_version )
{
case XEN_DOMCTL_CONFIG_GIC_NATIVE:
p2m_remove_mapping(d, gfn, (1 << page_order), mfn);
}
-int p2m_alloc_table(struct domain *d)
+static int p2m_alloc_table(struct domain *d)
{
struct p2m_domain *p2m = &d->arch.p2m;
struct page_info *page;
if ( rc != 0 )
return rc;
- d->arch.vttbr = 0;
-
- p2m->root = NULL;
-
p2m->max_mapped_gfn = _gfn(0);
p2m->lowest_mapped_gfn = _gfn(ULONG_MAX);
p2m->mem_access_enabled = false;
radix_tree_init(&p2m->mem_access_settings);
+ rc = p2m_alloc_table(d);
+
return rc;
}
*/
int relinquish_p2m_mapping(struct domain *d);
-/*
- * Allocate a new p2m table for a domain.
- *
- * Returns 0 for success or -errno.
- */
-int p2m_alloc_table(struct domain *d);
-
/* Context switch */
void p2m_save_state(struct vcpu *p);
void p2m_restore_state(struct vcpu *n);