Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F168344672
D22065.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
D22065.diff
View Options
Index: head/sys/vm/swap_pager.c
===================================================================
--- head/sys/vm/swap_pager.c
+++ head/sys/vm/swap_pager.c
@@ -590,6 +590,7 @@
if (n < n2)
printf("Swap blk zone entries changed from %lu to %lu.\n",
n2, n);
+ /* absolute maximum we can handle assuming 100% efficiency */
swap_maxpages = n * SWAP_META_PAGES;
swzone = n * sizeof(struct swblk);
if (!uma_zone_reserve_kva(swpctrie_zone, n))
@@ -2250,17 +2251,12 @@
static void
swapon_check_swzone(void)
{
- unsigned long maxpages, npages;
- npages = swap_total;
- /* absolute maximum we can handle assuming 100% efficiency */
- maxpages = uma_zone_get_max(swblk_zone) * SWAP_META_PAGES;
-
/* recommend using no more than half that amount */
- if (npages > maxpages / 2) {
+ if (swap_total > swap_maxpages / 2) {
printf("warning: total configured swap (%lu pages) "
"exceeds maximum recommended amount (%lu pages).\n",
- npages, maxpages / 2);
+ swap_total, swap_maxpages / 2);
printf("warning: increase kern.maxswzone "
"or reduce amount of swap.\n");
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Aug 28, 5:15 PM (22 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
37470854
Default Alt Text
D22065.diff (1 KB)
Attached To
Mode
D22065: swapon_check_swzone() to use already calculated static variables
Attached
Detach File
Event Timeline
Log In to Comment