Home
last modified time | relevance | path

Searched refs:PG_U (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/amd64/acpica/
H A Dacpi_wakeup.c428 pt5[0] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
434 pt4[0] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
437 pt3[0] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
439 pt3[1] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
441 pt3[2] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
443 pt3[3] |= PG_V | PG_RW | PG_U; in acpi_install_wakeup_handler()
447 pt2_0[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
451 pt2_1[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
455 pt2_2[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
459 pt2_3[i] |= PG_V | PG_RW | PG_PS | PG_U; in acpi_install_wakeup_handler()
/freebsd/sys/amd64/amd64/
H A Dxen-locore.S105 orl $(PG_V | PG_RW | PG_U), %edx
111 orl $(PG_V | PG_RW | PG_U), %edx
118 orl $(PG_V | PG_RW | PG_PS | PG_U), %edx
H A Dpmap.c4730 *pml5 = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M; in pmap_allocpte_nosleep()
4737 *pml5u = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | in pmap_allocpte_nosleep()
4750 *pml4 = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M; in pmap_allocpte_nosleep()
4766 *pml4u = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | in pmap_allocpte_nosleep()
4778 *pdp = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M; in pmap_allocpte_nosleep()
4806 *pd = VM_PAGE_TO_PHYS(m) | PG_U | PG_RW | PG_V | PG_A | PG_M; in pmap_allocpte_nosleep()
6124 newpde = mptepa | PG_M | PG_A | (oldpde & PG_U) | PG_RW | PG_V; in pmap_demote_pde_locked()
7227 newpte |= PG_U; in pmap_enter()
7478 newpde |= PG_U; in pmap_enter_2mpage()
7846 newpte |= PG_U | pmap_pkru_get(pmap, va); in pmap_enter_quick_locked()
[all …]
/freebsd/sys/i386/include/
H A Dpmap.h52 #define PG_U 0x004 /* U/S User/Supervisor */ macro
71 #define PG_PROT (PG_RW|PG_U) /* all protection bits . */
83 PG_M | PG_NC_PCD | PG_NC_PWT | PG_U | PG_RW | PG_V)
/freebsd/sys/i386/i386/
H A Dvm86.c487 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_pae()
551 pcb->new_ptd = vm86pa | PG_V | PG_RW | PG_U; in vm86_initialize_nopae()
739 pte_pae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
748 pte_nopae[entry] = page | PG_V | PG_RW | PG_U; in vm86_datacall()
H A Dpmap.c519 *(pt_entry_t *)vm86pa = 0 | PG_RW | PG_U | PG_A | PG_M | PG_V; in __CONCAT()
524 *pt = (ISA_HOLE_START + ptoa(a)) | PG_RW | PG_U | PG_A | in __CONCAT()
2157 (pd_entry_t)(ptepa | PG_U | PG_RW | PG_V | PG_A | PG_M); in _pmap_allocpte()
2838 newpde = mptepa | PG_M | PG_A | (oldpde & PG_U) | PG_RW | PG_V; in pmap_demote_pde()
3690 newpte |= PG_U; in __CONCAT()
3931 newpde |= PG_U; in pmap_enter_4mpage()
4245 newpte |= PG_U; in pmap_enter_quick_locked()
4349 PG_U | PG_RW | PG_V); in __CONCAT()
6169 pte[i] = (i << PAGE_SHIFT) | PG_V | PG_RW | PG_U; in __CONCAT()
6263 (range->attrs & PG_U) ! in sysctl_kmaps_dump()
[all...]
/freebsd/sys/amd64/include/
H A Dpmap.h57 #define PG_U X86_PG_U macro
85 PG_M | PG_U | PG_RW | PG_V | PG_PKU_MASK)
/freebsd/sys/amd64/vmm/
H A Dvmm_instruction_emul.c2135 (usermode && (pte32 & PG_U) == 0) || in _vm_gla2gpa()
2225 (usermode && (pte & PG_U) == 0) || in _vm_gla2gpa()