mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
Don't panic when we try to modify the kernel pmap.
This commit is contained in:
parent
169915f56d
commit
ff37c2003c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75668
@ -400,7 +400,7 @@ pmap_invalidate_rid(pmap_t pmap)
|
||||
static void
|
||||
pmap_invalidate_page(pmap_t pmap, vm_offset_t va)
|
||||
{
|
||||
KASSERT(pmap == PCPU_GET(current_pmap),
|
||||
KASSERT((pmap == kernel_pmap || pmap == PCPU_GET(current_pmap)),
|
||||
("invalidating TLB for non-current pmap"));
|
||||
ia64_ptc_l(va, PAGE_SHIFT << 2);
|
||||
}
|
||||
@ -412,7 +412,7 @@ pmap_invalidate_all(pmap_t pmap)
|
||||
int i, j;
|
||||
critical_t psr;
|
||||
|
||||
KASSERT(pmap == PCPU_GET(current_pmap),
|
||||
KASSERT((pmap == kernel_pmap || pmap == PCPU_GET(current_pmap)),
|
||||
("invalidating TLB for non-current pmap"));
|
||||
|
||||
psr = critical_enter();
|
||||
|
Loading…
Reference in New Issue
Block a user