Home
last modified time | relevance | path

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

/NextBSD/sys/amd64/amd64/
HDpmap.c172 mask = X86_PG_V; in pmap_valid_bit()
771 pt_p[i] = ptoa(i) | X86_PG_RW | X86_PG_V | X86_PG_G; in create_pagetables()
776 pd_p[i] = (KPTphys + ptoa(i)) | X86_PG_RW | X86_PG_V; in create_pagetables()
781 pd_p[i] = (i << PDRSHIFT) | X86_PG_RW | X86_PG_V | PG_PS | in create_pagetables()
787 pdp_p[i + KPDPI] = (KPDphys + ptoa(i)) | X86_PG_RW | X86_PG_V | in create_pagetables()
802 pd_p[j] |= X86_PG_RW | X86_PG_V | PG_PS | X86_PG_G | in create_pagetables()
809 pdp_p[i] |= X86_PG_RW | X86_PG_V | PG_PS | X86_PG_G | in create_pagetables()
814 pdp_p[i] |= X86_PG_RW | X86_PG_V | PG_U; in create_pagetables()
820 p4_p[PML4PML4I] |= X86_PG_RW | X86_PG_V | PG_U; in create_pagetables()
825 p4_p[DMPML4I + i] |= X86_PG_RW | X86_PG_V | PG_U; in create_pagetables()
[all …]
/NextBSD/sys/amd64/include/
HDpmap.h53 #define X86_PG_V 0x001 /* P Valid */ macro
89 #define PG_V X86_PG_V