From owner-svn-src-all@freebsd.org Wed Oct 10 21:31:11 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 171A310BCC49; Wed, 10 Oct 2018 21:31:11 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C464F72757; Wed, 10 Oct 2018 21:31:10 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from mousie.catspoiler.org (unknown [76.212.85.177]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: truckman) by smtp.freebsd.org (Postfix) with ESMTPSA id 002C6EA56; Wed, 10 Oct 2018 21:31:09 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Date: Wed, 10 Oct 2018 14:31:08 -0700 (PDT) From: Don Lewis Subject: Re: svn commit: r339293 - stable/11/sys/net To: John Baldwin cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org In-Reply-To: <201810102128.w9ALS470088782@repo.freebsd.org> Message-ID: References: <201810102128.w9ALS470088782@repo.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=us-ascii Content-Disposition: INLINE X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2018 21:31:11 -0000 On 10 Oct, John Baldwin wrote: > Author: jhb > Date: Wed Oct 10 21:28:04 2018 > New Revision: 339293 > URL: https://svnweb.freebsd.org/changeset/base/339293 > > Log: > Disable the KASSERT for curcpu == 0 in netisr for EARLY_AP_STARTUP. > > In the EARLY_AP_STARTUP case, thread0 can migrate to another CPU > before this SYSINIT is run. However, the only part of this SYSINIT > that assumes it runs on CPU 0 is in the !EARLY_AP_STARTUP case when it > creates the netisr for the boot CPU. In the EARLY_AP_STARTUP case we > start up the netisr's for the first N CPUs during the SYSINIT itself > and don't depend on running on the boot CPU for correct operation. > > This is a direct comit to stable/11 as the assertion was removed as part > of a different change in r302595. > > Reported by: rwatson, truckman, jkim, FreeNAS bug 45611 Thanks!