From owner-svn-src-stable-8@FreeBSD.ORG Thu Jul 15 12:34:42 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FF801065674; Thu, 15 Jul 2010 12:34:42 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5F3F78FC19; Thu, 15 Jul 2010 12:34:42 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 0E4DE46B03; Thu, 15 Jul 2010 08:34:42 -0400 (EDT) Received: from jhbbsd.localnet (smtp.hudson-trading.com [209.249.190.9]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 447798A04E; Thu, 15 Jul 2010 08:34:41 -0400 (EDT) From: John Baldwin To: Kostik Belousov Date: Thu, 15 Jul 2010 08:21:45 -0400 User-Agent: KMail/1.13.5 (FreeBSD/7.3-CBSD-20100217; KDE/4.4.5; amd64; ; ) References: <201007142110.o6ELAEYi081085@svn.freebsd.org> <20100714212231.GS2381@deviant.kiev.zoral.com.ua> In-Reply-To: <20100714212231.GS2381@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Message-Id: <201007150821.45947.jhb@freebsd.org> Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Thu, 15 Jul 2010 08:34:41 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.6 required=4.2 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org Subject: Re: svn commit: r210079 - in stable/8/sys: amd64/amd64 amd64/include i386/i386 i386/include X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jul 2010 12:34:42 -0000 On Wednesday, July 14, 2010 5:22:31 pm Kostik Belousov wrote: > On Wed, Jul 14, 2010 at 09:10:14PM +0000, John Baldwin wrote: > > Author: jhb > > Date: Wed Jul 14 21:10:14 2010 > > New Revision: 210079 > > URL: http://svn.freebsd.org/changeset/base/210079 > > > Modified: stable/8/sys/i386/i386/apic_vector.s > > ============================================================================== > > --- stable/8/sys/i386/i386/apic_vector.s Wed Jul 14 20:55:45 2010 (r210078) > > +++ stable/8/sys/i386/i386/apic_vector.s Wed Jul 14 21:10:14 2010 (r210079) > > @@ -113,6 +113,19 @@ IDTVEC(timerint) > > jmp doreti > > > > /* > > + * Local APIC CMCI handler. > > + */ > > + .text > > + SUPERALIGN_TEXT > > +IDTVEC(cmcint) > > + PUSH_FRAME > > + SET_KERNEL_SREGS > I think cld is missed right there. Oops, crossed commits. :( Should be fixed, thanks. -- John Baldwin