1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Make previous revision compile.

This commit is contained in:
Marius Strobl 2007-05-20 09:21:29 +00:00
parent 055399c382
commit fb6b415c96
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169789

View File

@ -231,7 +231,7 @@ free_fragment_pages(void *ptr)
for (fh = ptr; fh != NULL; fh = fh->thf_head.fh_next) {
m = PHYS_TO_VM_PAGE(TLB_DIRECT_TO_PHYS((vm_offset_t)fh));
m->wire_count--;
VMCNT_GET(wire_count, 1);
VMCNT_DEC(wire_count, 1);
vm_page_free(m);
}
}