Home
last modified time | relevance | path

Searched refs:user_pgd (Results 1 – 2 of 2) sorted by relevance

/arch/x86/xen/
Dmmu.c876 pgd_t *user_pgd = xen_get_user_pgd(pgd); in __xen_pgd_pin() local
880 if (user_pgd) { in __xen_pgd_pin()
881 xen_pin_page(mm, virt_to_page(user_pgd), PT_PGD); in __xen_pgd_pin()
883 PFN_DOWN(__pa(user_pgd))); in __xen_pgd_pin()
995 pgd_t *user_pgd = xen_get_user_pgd(pgd); in __xen_pgd_unpin() local
997 if (user_pgd) { in __xen_pgd_unpin()
999 PFN_DOWN(__pa(user_pgd))); in __xen_pgd_unpin()
1000 xen_unpin_page(mm, virt_to_page(user_pgd), PT_PGD); in __xen_pgd_unpin()
Denlighten.c780 pgd_t *user_pgd = xen_get_user_pgd(__va(cr3)); in xen_write_cr3() local
781 if (user_pgd) in xen_write_cr3()
782 __xen_write_cr3(false, __pa(user_pgd)); in xen_write_cr3()
900 pgd_t *user_pgd; in xen_pgd_alloc() local
906 user_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO); in xen_pgd_alloc()
907 page->private = (unsigned long)user_pgd; in xen_pgd_alloc()
909 if (user_pgd != NULL) { in xen_pgd_alloc()
910 user_pgd[pgd_index(VSYSCALL_START)] = in xen_pgd_alloc()
925 pgd_t *user_pgd = xen_get_user_pgd(pgd); in xen_pgd_free() local
927 if (user_pgd) in xen_pgd_free()
[all …]