Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107343730
D34277.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D34277.diff
View Options
diff --git a/sys/riscv/riscv/pmap.c b/sys/riscv/riscv/pmap.c
--- a/sys/riscv/riscv/pmap.c
+++ b/sys/riscv/riscv/pmap.c
@@ -486,8 +486,13 @@
struct pmap *user_pmap;
pd_entry_t *l1;
- /* Distribute new kernel L1 entry to all the user pmaps */
- if (pmap != kernel_pmap)
+ /*
+ * Distribute new kernel L1 entry to all the user pmaps. This is only
+ * necessary with three-level paging configured: with four-level paging
+ * the kernel's half of the top-level page table page is static and can
+ * simply be copied at pmap initialization time.
+ */
+ if (pmap != kernel_pmap || pmap_mode != PMAP_MODE_SV39)
return;
mtx_lock(&allpmaps_lock);
@@ -1266,6 +1271,7 @@
{
vm_paddr_t topphys;
vm_page_t mtop;
+ size_t i;
mtop = vm_page_alloc_noobj(VM_ALLOC_WIRED | VM_ALLOC_ZERO |
VM_ALLOC_WAITOK);
@@ -1278,19 +1284,25 @@
CPU_ZERO(&pmap->pm_active);
- /*
- * Copy L1 entries from the kernel pmap. This must be done with the
- * allpmaps lock held to avoid races with pmap_distribute_l1().
- */
- mtx_lock(&allpmaps_lock);
- LIST_INSERT_HEAD(&allpmaps, pmap, pm_list);
- for (size_t i = pmap_l1_index(VM_MIN_KERNEL_ADDRESS);
- i < pmap_l1_index(VM_MAX_KERNEL_ADDRESS); i++)
- pmap->pm_top[i] = kernel_pmap->pm_top[i];
- for (size_t i = pmap_l1_index(DMAP_MIN_ADDRESS);
- i < pmap_l1_index(DMAP_MAX_ADDRESS); i++)
+ if (pmap_mode == PMAP_MODE_SV39) {
+ /*
+ * Copy L1 entries from the kernel pmap. This must be done with
+ * the allpmaps lock held to avoid races with
+ * pmap_distribute_l1().
+ */
+ mtx_lock(&allpmaps_lock);
+ LIST_INSERT_HEAD(&allpmaps, pmap, pm_list);
+ for (i = pmap_l1_index(VM_MIN_KERNEL_ADDRESS);
+ i < pmap_l1_index(VM_MAX_KERNEL_ADDRESS); i++)
+ pmap->pm_top[i] = kernel_pmap->pm_top[i];
+ for (i = pmap_l1_index(DMAP_MIN_ADDRESS);
+ i < pmap_l1_index(DMAP_MAX_ADDRESS); i++)
+ pmap->pm_top[i] = kernel_pmap->pm_top[i];
+ mtx_unlock(&allpmaps_lock);
+ } else {
+ i = pmap_l0_index(VM_MIN_KERNEL_ADDRESS);
pmap->pm_top[i] = kernel_pmap->pm_top[i];
- mtx_unlock(&allpmaps_lock);
+ }
vm_radix_init(&pmap->pm_root);
@@ -1480,9 +1492,11 @@
KASSERT(CPU_EMPTY(&pmap->pm_active),
("releasing active pmap %p", pmap));
- mtx_lock(&allpmaps_lock);
- LIST_REMOVE(pmap, pm_list);
- mtx_unlock(&allpmaps_lock);
+ if (pmap_mode == PMAP_MODE_SV39) {
+ mtx_lock(&allpmaps_lock);
+ LIST_REMOVE(pmap, pm_list);
+ mtx_unlock(&allpmaps_lock);
+ }
m = PHYS_TO_VM_PAGE(DMAP_TO_PHYS((vm_offset_t)pmap->pm_top));
vm_page_unwire_noq(m);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Jan 13, 7:01 PM (19 h, 11 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15785870
Default Alt Text
D34277.diff (2 KB)
Attached To
Mode
D34277: riscv: Maintain the allpmaps list only in SV39 mode
Attached
Detach File
Event Timeline
Log In to Comment