Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Apr 2002 06:31:38 -0700 (PDT)
From:      David Xu <bsddiy@yahoo.com>
To:        freebsd-hackers@freebsd.org
Subject:   Fix an error in sys/i386/i386/mp_machdep.c
Message-ID:  <20020417133138.32373.qmail@web20910.mail.yahoo.com>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020417133138.32373.qmail>