svn commit: r338510 - head/sys/vm

Mark Johnston markj at FreeBSD.org
Thu Sep 6 20:02:20 UTC 2018


Author: markj
Date: Thu Sep  6 20:02:19 2018
New Revision: 338510
URL: https://svnweb.freebsd.org/changeset/base/338510

Log:
  Use the correct terminology.
  
  Reported by:    kib
  Approved by:	re (gjb)
  Differential revision:  https://reviews.freebsd.org/D16191

Modified:
  head/sys/vm/vm_domainset.c

Modified: head/sys/vm/vm_domainset.c
==============================================================================
--- head/sys/vm/vm_domainset.c	Thu Sep  6 19:55:40 2018	(r338509)
+++ head/sys/vm/vm_domainset.c	Thu Sep  6 20:02:19 2018	(r338510)
@@ -100,7 +100,7 @@ vm_domainset_iter_init(struct vm_domainset_iter *di, s
 			pindex += (((uintptr_t)obj) / sizeof(*obj));
 		di->di_offset = pindex;
 	}
-	/* Skip zones below min on the first pass. */
+	/* Skip domains below min on the first pass. */
 	di->di_minskip = true;
 }
 
@@ -285,7 +285,7 @@ vm_domainset_iter_malloc(struct vm_domainset_iter *di,
 			return (0);
 	}
 
-	/* If we skipped zones below min start the search from the beginning. */
+	/* If we skipped domains below min restart the search. */
 	if (di->di_minskip) {
 		di->di_minskip = false;
 		vm_domainset_iter_first(di, domain);


More information about the svn-src-head mailing list