diff options
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index e898e74..7b8609a 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -64,6 +64,8 @@ pmap_prot_to_pte(vm_prot_t prot) pte_flags |= PTE_RW; if (__TEST(prot, PROT_EXEC)) pte_flags &= ~(PTE_NX); + if (__TEST(prot, PROT_USER)) + pte_flags |= PTE_US; return pte_flags; } |