svn commit: r354014 - stable/12/sys/vm

Konstantin Belousov kib at FreeBSD.org
Thu Oct 24 06:58:18 UTC 2019


Author: kib
Date: Thu Oct 24 06:58:17 2019
New Revision: 354014
URL: https://svnweb.freebsd.org/changeset/base/354014

Log:
  MFC r353681:
  swapon_check_swzone(): use already calculated static variables.

Modified:
  stable/12/sys/vm/swap_pager.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/vm/swap_pager.c
==============================================================================
--- stable/12/sys/vm/swap_pager.c	Thu Oct 24 05:54:30 2019	(r354013)
+++ stable/12/sys/vm/swap_pager.c	Thu Oct 24 06:58:17 2019	(r354014)
@@ -589,6 +589,7 @@ swap_pager_swap_init(void)
 	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))
@@ -2267,17 +2268,12 @@ done:
 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");
 	}


More information about the svn-src-all mailing list