Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Mar 2002 19:53:25 -0500
From:      "Joe & Fhe Barbish" <barbish@a1poweruser.com>
To:        "FBSDQ" <questions@FreeBSD.ORG>
Subject:   solution for stray irq 7 messages
Message-ID:  <LPBBIGIAAKKEOEJOLEGOEEJFCLAA.barbish@a1poweruser.com>

next in thread | raw e-mail | index | archive | help
For the archives

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.



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




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