From owner-freebsd-questions Sun Oct 20 21:24:42 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA43E37B401 for ; Sun, 20 Oct 2002 21:24:40 -0700 (PDT) Received: from zapper.org (gso26-96-004.triad.rr.com [66.26.96.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CCF343E91 for ; Sun, 20 Oct 2002 21:24:40 -0700 (PDT) (envelope-from zapper@zapper.org) Received: from zapper.org (zapper@localhost [127.0.0.1]) by zapper.org (8.12.6/8.12.3) with ESMTP id g9L4Oc8R024888 for ; Mon, 21 Oct 2002 00:24:38 -0400 (EDT) (envelope-from zapper@zapper.org) Received: (from zapper@localhost) by zapper.org (8.12.6/8.12.3/Submit) id g9L4Ockw024887; Mon, 21 Oct 2002 00:24:38 -0400 (EDT) Date: Mon, 21 Oct 2002 00:24:38 -0400 From: Daemon 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> Organization: FoxChat Staff X-Mailer: Sylpheed version 0.8.2claws (GTK+ 1.2.10; i386-portbld-freebsd4.7) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 wrote: > Check the FAQ: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/troubleshoot.html#STRAY-IRQ > > -- > Jonathan Chen > ---------------------------------------------------------------------- > 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