Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151150893
D32287.id96200.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
D32287.id96200.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
@@ -125,7 +125,8 @@
vm_prot_t fault_type;
vm_prot_t prot;
int fault_flags;
- int oom;
+ struct timeval oom_first_tick;
+ bool oom_started;
boolean_t wired;
/* Page reference for cow. */
@@ -1073,6 +1074,38 @@
vm_page_valid(fs->m);
}
+/*
+ * Initiate page fault after timeout. Returns true if caller should
+ * do vm_waitpfault() after the call.
+ */
+static bool
+vm_fault_allocate_oom(struct faultstate *fs)
+{
+ struct timeval now;
+
+ unlock_and_deallocate(fs);
+ if (vm_pfault_oom_attempts < 0)
+ return (true);
+ if (!fs->oom_started) {
+ fs->oom_started = true;
+ getmicrotime(&fs->oom_first_tick);
+ return (true);
+ }
+
+ getmicrotime(&now);
+ timevalsub(&now, &fs->oom_first_tick);
+ if (now.tv_sec < vm_pfault_oom_attempts * vm_pfault_oom_wait)
+ return (true);
+
+ if (bootverbose)
+ printf(
+ "proc %d (%s) failed to alloc page on fault, starting OOM\n",
+ curproc->p_pid, curproc->p_comm);
+ vm_pageout_oom(VM_OOM_MEM_PF);
+ fs->oom_started = false;
+ return (false);
+}
+
/*
* Allocate a page directly or via the object populate method.
*/
@@ -1136,22 +1169,11 @@
fs->m = vm_page_alloc(fs->object, fs->pindex, alloc_req);
}
if (fs->m == NULL) {
- unlock_and_deallocate(fs);
- if (vm_pfault_oom_attempts < 0 ||
- fs->oom < vm_pfault_oom_attempts) {
- fs->oom++;
+ if (vm_fault_allocate_oom(fs))
vm_waitpfault(dset, vm_pfault_oom_wait * hz);
- } else {
- if (bootverbose)
- printf(
- "proc %d (%s) failed to alloc page on fault, starting OOM\n",
- curproc->p_pid, curproc->p_comm);
- vm_pageout_oom(VM_OOM_MEM_PF);
- fs->oom = 0;
- }
return (KERN_RESOURCE_SHORTAGE);
}
- fs->oom = 0;
+ fs->oom_started = false;
return (KERN_NOT_RECEIVER);
}
@@ -1300,7 +1322,7 @@
fs.fault_flags = fault_flags;
fs.map = map;
fs.lookup_still_valid = false;
- fs.oom = 0;
+ fs.oom_started = false;
faultcount = 0;
nera = -1;
hardfault = false;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 7, 10:51 AM (7 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31026790
Default Alt Text
D32287.id96200.diff (1 KB)
Attached To
Mode
D32287: vm_fault: do not trigger OOM too early
Attached
Detach File
Event Timeline
Log In to Comment