From: Andrew Cooper Date: Thu, 8 Nov 2018 14:17:46 +0000 (+0000) Subject: x86/dom0: Use init_xen_pae_l2_slots() rather than opencoding it X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e2d3f0e8d17c3333a43247b72ab2a805105f7caa;p=people%2Fdariof%2Fxen.git x86/dom0: Use init_xen_pae_l2_slots() rather than opencoding it No functional change. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/pv/dom0_build.c b/xen/arch/x86/pv/dom0_build.c index 21d262b62b..812b0262cb 100644 --- a/xen/arch/x86/pv/dom0_build.c +++ b/xen/arch/x86/pv/dom0_build.c @@ -684,11 +684,8 @@ int __init dom0_construct_pv(struct domain *d, if ( i == 3 ) l3e_get_page(*l3tab)->u.inuse.type_info |= PGT_pae_xen_l2; } - /* Install read-only guest visible MPT mapping. */ - l2tab = l3e_to_l2e(l3start[3]); - memcpy(&l2tab[COMPAT_L2_PAGETABLE_FIRST_XEN_SLOT(d)], - &compat_idle_pg_table_l2[l2_table_offset(HIRO_COMPAT_MPT_VIRT_START)], - COMPAT_L2_PAGETABLE_XEN_SLOTS(d) * sizeof(*l2tab)); + + init_xen_pae_l2_slots(l3e_to_l2e(l3start[3]), d); } /* Pages that are part of page tables must be read only. */