diff options
Diffstat (limited to 'sys/amd64')
| -rw-r--r-- | sys/amd64/amd64/pmap.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c index 881a2ccfb748..cdca6e4200cf 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -700,11 +700,7 @@ pmap_kenter(vm_offset_t va, vm_offset_t pa) pte = vtopte(va); opte = *pte; *pte = npte; -#ifdef SMP - invlpg(va); -#else invltlb_1pg(va); -#endif } /* @@ -717,11 +713,7 @@ pmap_kremove(vm_offset_t va) pte = vtopte(va); *pte = 0; -#ifdef SMP - invlpg(va); -#else invltlb_1pg(va); -#endif } /* |
