1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Pu back a call to pmap_context_destroy which was accidentily removed

in the previous commit.

Spotted by:	tmm
This commit is contained in:
Jake Burkholder 2002-02-26 06:39:38 +00:00
parent 6a560d6e0b
commit 200e6309c9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91286

View File

@ -1140,6 +1140,7 @@ pmap_release(pmap_t pm)
KASSERT(pmap_resident_count(pm) == 0,
("pmap_release: resident pages %ld != 0",
pmap_resident_count(pm)));
pmap_context_destroy(pm->pm_context);
TAILQ_FOREACH(m, &obj->memq, listq) {
if (vm_page_sleep_busy(m, FALSE, "pmaprl"))
continue;