From owner-freebsd-hackers Wed Apr 17 6:31:43 2002 Delivered-To: freebsd-hackers@freebsd.org Received: from web20910.mail.yahoo.com (web20910.mail.yahoo.com [216.136.226.232]) by hub.freebsd.org (Postfix) with SMTP id 86DCD37B400 for ; Wed, 17 Apr 2002 06:31:39 -0700 (PDT) Message-ID: <20020417133138.32373.qmail@web20910.mail.yahoo.com> Received: from [218.108.155.99] by web20910.mail.yahoo.com via HTTP; Wed, 17 Apr 2002 06:31:38 PDT Date: Wed, 17 Apr 2002 06:31:38 -0700 (PDT) From: David Xu Subject: Fix an error in sys/i386/i386/mp_machdep.c To: freebsd-hackers@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Branch : CURRENT File : sys/i386/i386/mp_machdep.c found a typo in function revoke_apic_irq() --- mp_machdep.c.orig Wed Apr 17 21:04:53 2002 +++ mp_machdep.c Wed Apr 17 21:05:12 2002 @@ -1038,7 +1038,7 @@ for (x = 0; x < nintrs; x++) { if ((io_apic_ints[x].int_type == 0 || io_apic_ints[x].int_type == 3) && - io_apic_ints[x].int_vector == 0xff && + io_apic_ints[x].int_vector != 0xff && io_apic_ints[x].dst_apic_id == IO_TO_ID(oldapic) && io_apic_ints[x].dst_apic_int == oldintpin) io_apic_ints[x].int_vector = 0xff; __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message