aboutsummaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/pmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c
index 8a21f63..2fcab57 100644
--- a/sys/arch/amd64/amd64/pmap.c
+++ b/sys/arch/amd64/amd64/pmap.c
@@ -60,9 +60,9 @@ pmap_prot_to_pte(vm_prot_t prot)
{
uint64_t pte_flags = PTE_P | PTE_NX;
- if (__TEST(prot, PMAP_WRITABLE))
+ if (__TEST(prot, PROT_WRITE))
pte_flags |= PTE_RW;
- if (__TEST(prot, PMAP_EXEC))
+ if (__TEST(prot, PROT_EXEC))
pte_flags &= ~(PTE_NX);
return pte_flags;