aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/include/pmap.h
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2001-08-06 02:19:52 +0000
committerJake Burkholder <jake@FreeBSD.org>2001-08-06 02:19:52 +0000
commit8d94222282c05da56fee5597124e568f9e643415 (patch)
tree49914e0c81fd6b685ffe340578b79fdf846e151f /sys/sparc64/include/pmap.h
parenta03f751e5ae42760e26ff81af989bbecb14303e9 (diff)
Add a vm_object and page count to struct pmap for allocating tsb pages.
Notes
Notes: svn path=/head/; revision=81174
Diffstat (limited to 'sys/sparc64/include/pmap.h')
-rw-r--r--sys/sparc64/include/pmap.h2
1 files changed, 2 insertions, 0 deletions
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;
};