Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F140590847
D26771.id54425.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
D26771.id54425.diff
View Options
Index: head/sys/vm/uma_core.c
===================================================================
--- head/sys/vm/uma_core.c
+++ head/sys/vm/uma_core.c
@@ -3734,10 +3734,17 @@
stripe = howmany(max, vm_ndomains);
#endif
dom = &keg->uk_domain[slab->us_domain];
- while (slab->us_freecount && i < max) {
+ do {
bucket[i++] = slab_alloc_item(keg, slab);
- if (dom->ud_free_items <= keg->uk_reserve)
- break;
+ if (dom->ud_free_items <= keg->uk_reserve) {
+ /*
+ * Avoid depleting the reserve after a
+ * successful item allocation, even if
+ * M_USE_RESERVE is specified.
+ */
+ KEG_UNLOCK(keg, slab->us_domain);
+ goto out;
+ }
#ifdef NUMA
/*
* If the zone is striped we pick a new slab for every
@@ -3751,13 +3758,14 @@
vm_ndomains > 1 && --stripe == 0)
break;
#endif
- }
+ } while (slab->us_freecount != 0 && i < max);
KEG_UNLOCK(keg, slab->us_domain);
+
/* Don't block if we allocated any successfully. */
flags &= ~M_WAITOK;
flags |= M_NOWAIT;
}
-
+out:
return i;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 26, 4:34 PM (4 h, 59 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27285643
Default Alt Text
D26771.id54425.diff (1 KB)
Attached To
Mode
D26771: uma: Avoid depleting keg reserves when filling a bucket
Attached
Detach File
Event Timeline
Log In to Comment