p2m               166 arch/x86/xen/p2m.c static void p2m_init(unsigned long *p2m)
p2m               171 arch/x86/xen/p2m.c 		p2m[i] = INVALID_P2M_ENTRY;
p2m               174 arch/x86/xen/p2m.c static void p2m_init_identity(unsigned long *p2m, unsigned long pfn)
p2m               179 arch/x86/xen/p2m.c 		p2m[i] = IDENTITY_FRAME(pfn + i);
p2m               331 arch/x86/xen/p2m.c static void __init xen_rebuild_p2m_list(unsigned long *p2m)
p2m               388 arch/x86/xen/p2m.c 			ptep = populate_extra_pte((unsigned long)(p2m + pfn));
p2m               398 arch/x86/xen/p2m.c 			ptep = populate_extra_pte((unsigned long)(p2m + pfn));
p2m               409 arch/x86/xen/p2m.c 				(unsigned long)(p2m + pfn) + i * PMD_SIZE);
p2m               593 arch/x86/xen/p2m.c 		unsigned long *p2m;
p2m               595 arch/x86/xen/p2m.c 		p2m = alloc_p2m_page();
p2m               596 arch/x86/xen/p2m.c 		if (!p2m)
p2m               600 arch/x86/xen/p2m.c 			p2m_init(p2m);
p2m               602 arch/x86/xen/p2m.c 			p2m_init_identity(p2m, pfn & ~(P2M_PER_PAGE - 1));
p2m               610 arch/x86/xen/p2m.c 				pfn_pte(PFN_DOWN(__pa(p2m)), PAGE_KERNEL));
p2m               614 arch/x86/xen/p2m.c 				mid_mfn[p2m_mid_index(pfn)] = virt_to_mfn(p2m);
p2m               615 arch/x86/xen/p2m.c 			p2m = NULL;
p2m               620 arch/x86/xen/p2m.c 		if (p2m)
p2m               621 arch/x86/xen/p2m.c 			free_p2m_page(p2m);