Use the correct terminology.

Reported by:    kib
Approved by:	re (gjb)
Differential revision:  https://reviews.freebsd.org/D16191
This commit is contained in:
Mark Johnston 2018-09-06 20:02:19 +00:00
parent 113c4fad55
commit c56c7299c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=338510

View File

@ -100,7 +100,7 @@ vm_domainset_iter_init(struct vm_domainset_iter *di, struct vm_object *obj,
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, int *domain, int *flags)
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);