FreeBSD Bugzilla – Attachment 208105 Details for
Bug 241048
After r349840, OOM reported when swap space is available.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch for stable/12
reclaim_stable_12.diff (text/plain), 625 bytes, created by
Mark Johnston
on 2019-10-04 20:16:42 UTC
(
hide
)
Description:
proposed patch for stable/12
Filename:
MIME Type:
Creator:
Mark Johnston
Created:
2019-10-04 20:16:42 UTC
Size:
625 bytes
patch
obsolete
>Index: sys/vm/uma_core.c >=================================================================== >--- sys/vm/uma_core.c (revision 353108) >+++ sys/vm/uma_core.c (working copy) >@@ -521,6 +521,8 @@ zone_foreach_keg(uma_zone_t zone, void (*kegfn)(um > { > uma_klink_t klink; > >+ if ((zone->uz_flags & UMA_ZFLAG_CACHE) != 0) >+ return; > LIST_FOREACH(klink, &zone->uz_kegs, kl_link) > kegfn(klink->kl_keg); > } >@@ -1978,6 +1980,8 @@ zone_foreach(void (*zfunc)(uma_zone_t)) > LIST_FOREACH(zone, &keg->uk_zones, uz_link) > zfunc(zone); > } >+ LIST_FOREACH(zone, &uma_cachezones, uz_link) >+ zfunc(zone); > rw_runlock(&uma_rwlock); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 241048
:
208104
|
208105
|
208118
|
208237
|
208276
|
208284