summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/include/pmap.h2
-rw-r--r--sys/arm/include/pmap.h2
-rw-r--r--sys/i386/include/pmap.h2
-rw-r--r--sys/ia64/include/pmap.h2
-rw-r--r--sys/sun4v/include/pmap.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h
index 9475626..22ec67c 100644
--- a/sys/amd64/include/pmap.h
+++ b/sys/amd64/include/pmap.h
@@ -262,7 +262,7 @@ extern struct pmap kernel_pmap_store;
/*
* For each vm_page_t, there is a list of all currently valid virtual
- * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
+ * mappings of that page. An entry is a pv_entry_t, the list is pv_list.
*/
typedef struct pv_entry {
vm_offset_t pv_va; /* virtual address for mapping */
diff --git a/sys/arm/include/pmap.h b/sys/arm/include/pmap.h
index 858d83c..47b3a4c 100644
--- a/sys/arm/include/pmap.h
+++ b/sys/arm/include/pmap.h
@@ -170,7 +170,7 @@ extern pmap_t kernel_pmap;
/*
* For each vm_page_t, there is a list of all currently valid virtual
- * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
+ * mappings of that page. An entry is a pv_entry_t, the list is pv_list.
*/
typedef struct pv_entry {
pmap_t pv_pmap; /* pmap where mapping lies */
diff --git a/sys/i386/include/pmap.h b/sys/i386/include/pmap.h
index e04506c..6e757a6 100644
--- a/sys/i386/include/pmap.h
+++ b/sys/i386/include/pmap.h
@@ -325,7 +325,7 @@ extern struct pmap kernel_pmap_store;
/*
* For each vm_page_t, there is a list of all currently valid virtual
- * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
+ * mappings of that page. An entry is a pv_entry_t, the list is pv_list.
*/
typedef struct pv_entry {
vm_offset_t pv_va; /* virtual address for mapping */
diff --git a/sys/ia64/include/pmap.h b/sys/ia64/include/pmap.h
index b025aef..49ffe91 100644
--- a/sys/ia64/include/pmap.h
+++ b/sys/ia64/include/pmap.h
@@ -100,7 +100,7 @@ extern struct pmap kernel_pmap_store;
/*
* For each vm_page_t, there is a list of all currently valid virtual
- * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
+ * mappings of that page. An entry is a pv_entry_t, the list is pv_list.
*/
typedef struct pv_entry {
pmap_t pv_pmap; /* pmap where mapping lies */
diff --git a/sys/sun4v/include/pmap.h b/sys/sun4v/include/pmap.h
index c1a69da..599cedd 100644
--- a/sys/sun4v/include/pmap.h
+++ b/sys/sun4v/include/pmap.h
@@ -88,7 +88,7 @@ struct pmap {
/*
* For each vm_page_t, there is a list of all currently valid virtual
- * mappings of that page. An entry is a pv_entry_t, the list is pv_table.
+ * mappings of that page. An entry is a pv_entry_t, the list is pv_list.
*/
typedef struct pv_entry {
OpenPOWER on IntegriCloud