From 8d94222282c05da56fee5597124e568f9e643415 Mon Sep 17 00:00:00 2001 From: Jake Burkholder Date: Mon, 6 Aug 2001 02:19:52 +0000 Subject: [PATCH] Add a vm_object and page count to struct pmap for allocating tsb pages. --- sys/sparc64/include/pmap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/sparc64/include/pmap.h b/sys/sparc64/include/pmap.h index 752decf4130b..e2684d86967a 100644 --- a/sys/sparc64/include/pmap.h +++ b/sys/sparc64/include/pmap.h @@ -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; };