From owner-svn-src-all@FreeBSD.ORG Mon Aug 11 21:28:59 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D25C3520; Mon, 11 Aug 2014 21:28:59 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA7E62709; Mon, 11 Aug 2014 21:28:59 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 924E1B948; Mon, 11 Aug 2014 17:28:58 -0400 (EDT) From: John Baldwin To: Roger Pau MonnXX Subject: Re: svn commit: r269675 - head/sys/x86/isa Date: Mon, 11 Aug 2014 12:27:48 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20140415; KDE/4.5.5; amd64; ; ) References: <53e3b0c2.25ff.29ca9019@svn.freebsd.org> In-Reply-To: <53e3b0c2.25ff.29ca9019@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <201408111227.48940.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 11 Aug 2014 17:28:58 -0400 (EDT) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 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: Mon, 11 Aug 2014 21:28:59 -0000 On Thursday, August 07, 2014 1:00:50 pm Roger Pau MonnXX wrote: > Author: royger > Date: Thu Aug 7 17:00:50 2014 > New Revision: 269675 > URL: http://svnweb.freebsd.org/changeset/base/269675 >=20 > Log: > atpic: make sure atpic_init is called after IO APIC initialization > =20 > After r269510 the IO APIC and ATPIC initialization is done at the same > order, which means atpic_init can be called before the IO APIC has > been initalized. In that case the ATPIC will take over the interrupt > sources, preventing the IO APIC from registering them. > =20 > Reported by: David Wolfskill > Tested by: David Wolfskill , > Trond Endrest=C3=B8l > Sponsored by: Citrix Systems R&D I should have caught this earlier, I almost suggested looking at all the=20 SI_SUB_INTR inits to ensure everything was correct. Thanks for tracking it= =20 down! =2D-=20 John Baldwin