Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 851fa3c4 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by Ingo Molnar
Browse files

xen: define set_pte from the outset



We need set_pte to work from a relatively early point, so enable it
from the start.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Cc: Stephen Tweedie <sct@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent ad55db9f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -845,9 +845,6 @@ static __init void xen_pagetable_setup_start(pgd_t *base)
	pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
	int i;

	/* special set_pte for pagetable initialization */
	pv_mmu_ops.set_pte = xen_set_pte_init;

	init_mm.pgd = base;
	/*
	 * copy top-level of Xen-supplied pagetable into place.  This
@@ -1174,7 +1171,7 @@ static const struct pv_mmu_ops xen_mmu_ops __initdata = {
	.kmap_atomic_pte = xen_kmap_atomic_pte,
#endif

	.set_pte = NULL,	/* see xen_pagetable_setup_* */
	.set_pte = xen_set_pte_init,
	.set_pte_at = xen_set_pte_at,
	.set_pmd = xen_set_pmd_hyper,