Fix style in previous commit.

Pointed out by:	njl
This commit is contained in:
Olivier Houchard 2007-12-07 10:42:11 +00:00
parent 30d9c7698a
commit b358d3906a

View File

@ -1733,11 +1733,12 @@ pmap_enter_pv(struct vm_page *pg, struct pv_entry *pve, pmap_t pm,
pg->md.krw_mappings++;
else
pg->md.kro_mappings++;
} else
if (flags & PVF_WRITE)
pg->md.urw_mappings++;
else
pg->md.uro_mappings++;
} else {
if (flags & PVF_WRITE)
pg->md.urw_mappings++;
else
pg->md.uro_mappings++;
}
pg->md.pv_list_count++;
if (pve->pv_flags & PVF_WIRED)
++pm->pm_stats.wired_count;