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 <ohartm...@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); _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"