Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Oct 1998 18:40:00 -0800 (PST)
From:      Tor.Egge@fast.no
To:        freebsd-bugs@FreeBSD.ORG
Subject:   Re: kern/8456: SMP kernel fails with Everex PO-6200 Dual PPro MB
Message-ID:  <199810310240.SAA14440@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/8456; it has been noted by GNATS.

From: Tor.Egge@fast.no
To: mikes@indiana.edu
Cc: freebsd-gnats-submit@FreeBSD.ORG
Subject: Re: kern/8456: SMP kernel fails with Everex PO-6200 Dual PPro MB
Date: Sat, 31 Oct 1998 03:31:47 +0100

 > --
 > I/O Ints:       Type    Polarity    Trigger     Bus ID   IRQ    APIC ID PIN#
 >                 ExtINT  active-hi        edge        0     0        255    0
 								     ^^^^
 
 
 I suggest testing a change in int_entry() (in mp_machdep.c) from
 
 	io_apic_ints[intr].dst_apic_id = entry->dst_apic_id;
 
 to
 
 	if (entry->dst_apic_id == 255)
 		io_apic_ints[intr].dst_apic_id = IO_TO_ID(0);
 	else
 		io_apic_ints[intr].dst_apic_id = entry->dst_apic_id;
 
 - Tor Egge

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



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