Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F160307278
D49758.id153613.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D49758.id153613.diff
View Options
diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -1064,14 +1064,14 @@
* Oh, well, lets copy it.
*/
pmap_copy_page(fs->m, fs->first_m);
- vm_page_valid(fs->first_m);
if (fs->wired && (fs->fault_flags & VM_FAULT_WIRE) == 0) {
vm_page_wire(fs->first_m);
vm_page_unwire(fs->m, PQ_INACTIVE);
}
/*
- * Save the cow page to be released after
- * pmap_enter is complete.
+ * Save the COW page to be released after pmap_enter is
+ * complete. The new copy will be marked valid when we're ready
+ * to map it.
*/
fs->m_cow = fs->m;
fs->m = NULL;
@@ -1759,6 +1759,19 @@
if (hardfault)
fs.entry->next_read = vaddr + ptoa(ahead) + PAGE_SIZE;
+ /*
+ * If the page to be mapped was copied from a backing object, we defer
+ * marking it valid until here, where the fault handler is guaranteed to
+ * succeed. Otherwise we can end up with a shadowed, mapped page in the
+ * backing object, which violates an invariant of vm_object_collapse()
+ * that shadowed pages are not mapped.
+ */
+ if (fs.m_cow != NULL) {
+ KASSERT(vm_page_none_valid(fs.m),
+ ("vm_fault: page %p is already valid", fs.m_cow));
+ vm_page_valid(fs.m);
+ }
+
/*
* Page must be completely valid or it is not fit to
* map into user space. vm_pager_get_pages() ensures this.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jun 24, 2:45 AM (52 m, 18 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34271173
Default Alt Text
D49758.id153613.diff (1 KB)
Attached To
Mode
D49758: vm_fault: Defer marking COW pages valid
Attached
Detach File
Event Timeline
Log In to Comment