svn commit: r339603 - head/sys/vm

Mark Johnston markj at FreeBSD.org
Mon Oct 22 17:19:49 UTC 2018


Author: markj
Date: Mon Oct 22 17:19:48 2018
New Revision: 339603
URL: https://svnweb.freebsd.org/changeset/base/339603

Log:
  Fix the build after r339601.
  
  I committed some patches out of order and didn't build-test one of them.
  
  Reported by:	Jenkins, O. Hartmann <ohartmann at walstatt.org>
  X-MFC with:	r339601

Modified:
  head/sys/vm/vm_glue.c

Modified: head/sys/vm/vm_glue.c
==============================================================================
--- head/sys/vm/vm_glue.c	Mon Oct 22 17:17:30 2018	(r339602)
+++ head/sys/vm/vm_glue.c	Mon Oct 22 17:19:48 2018	(r339603)
@@ -377,8 +377,8 @@ vm_thread_new(struct thread *td, int pages)
 	 */
 	if (vm_ndomains > 1) {
 		ksobj->domain.dr_policy = DOMAINSET_RR();
-		ksobj->domain.dr_iter = atomic_fetchadd_int(&kstack_domain_iter,
-		    1);
+		ksobj->domain.dr_iterator =
+		    atomic_fetchadd_int(&kstack_domain_iter, 1);
 	}
 
 	atomic_add_int(&kstacks, 1);


More information about the svn-src-all mailing list