Add a vm_object and page count to struct pmap for allocating tsb pages.

This commit is contained in:
Jake Burkholder 2001-08-06 02:19:52 +00:00
parent a03f751e5a
commit 8d94222282
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81174

View file

@ -42,9 +42,11 @@ struct md_page {
struct pmap {
struct stte pm_stte;
vm_object_t pm_object;
u_int pm_active;
u_int pm_context;
u_int pm_count;
u_int pm_pages;
struct pmap_statistics pm_stats;
};