Date: Mon, 21 Oct 2002 00:24:38 -0400 From: Daemon <daemon@foxchat.net> To: freebsd-questions@FreeBSD.ORG Subject: Re: Stray IRQ 7 problem. Message-ID: <20021021002438.53634c80.daemon@foxchat.net> In-Reply-To: <20021021035154.GA98693@grimoire.chen.org.nz> References: <20021020234425.1cba91e9.daemon@foxchat.net> <20021021035154.GA98693@grimoire.chen.org.nz>
index | next in thread | previous in thread | raw e-mail
Thanks for the help, Jonathan. Just in case anyone is having the same
issue, I also found this -
To stop the annoying bogus stray irq 7 messages you can hack the source
where these messages originate from and change the counter value 5 to 0
so the messages will no longer be issued.
isa_strayintr lives in /usr/src/sys/i386/isa/intr_machdep.c
cd /usr/src/sys/i386/isa/
cp intr_machdep.c intr_machdep.c.org # make bkup of original
ee intr_machdep.c
Find isa_strayintr to locate start of stray irq 7 logic
change this
if (intrcnt[1 + intr] <= 5)
To this
if (intrcnt[1 + intr] <= 0)
Recompile your kernel source and those stray irq 7 messages are gone.
Document this some place for your self just in case you reinstall from
cdrom.
On Mon, 21 Oct 2002 16:51:54 +1300
Jonathan Chen <jonc@chen.org.nz> wrote:
> Check the FAQ:
>
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#STRAY-IRQ
>
> --
> Jonathan Chen <jonc@chen.org.nz>
> ----------------------------------------------------------------------
> char *p="char
> *p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-questions" in the body of the message
>
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021021002438.53634c80.daemon>
