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

Commit 2b540781 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by Ingo Molnar
Browse files

xen: unpin initial Xen pagetable once we're finished with it



Unpin the Xen-provided pagetable once we've finished with it, so it
doesn't cause stray references which cause later swapper_pg_dir
pagetable updates to fail.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy@xensource.com>
Tested-by: default avatarJody Belka <knew-linux@pimb.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 37cc8d7f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -798,6 +798,10 @@ static __init void xen_pagetable_setup_start(pgd_t *base)
	 * added to the table can be prepared properly for Xen.
	 */
	xen_write_cr3(__pa(base));

	/* Unpin initial Xen pagetable */
	pin_pagetable_pfn(MMUEXT_UNPIN_TABLE,
			  PFN_DOWN(__pa(xen_start_info->pt_base)));
}

static __init void xen_pagetable_setup_done(pgd_t *base)