In pmap_ts_referenced(), don't attempt to do anything if the page is
fictitious, and just return 0.
This commit is contained in:
parent
73dcd92598
commit
92c930f4ec
@ -4442,6 +4442,8 @@ int
|
||||
pmap_ts_referenced(vm_page_t m)
|
||||
{
|
||||
|
||||
if (m->flags & PG_FICTITIOUS)
|
||||
return (0);
|
||||
return (pmap_clearbit(m, PVF_REF));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user