From owner-freebsd-questions Sun Mar 31 9:52:34 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mail2.wi.rr.com (fe2.rdc-kc.rr.com [24.94.163.49]) by hub.freebsd.org (Postfix) with ESMTP id 419CE37B405 for ; Sun, 31 Mar 2002 09:51:42 -0800 (PST) Received: from homer ([65.31.116.34]) by mail2.wi.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Sun, 31 Mar 2002 11:46:47 -0600 From: "Adam Fladwood" To: "'Joe & Fhe Barbish'" Cc: Subject: RE: Intel SCB2 Server w/ FBSD 4.5 Date: Sun, 31 Mar 2002 11:49:45 -0600 Message-ID: <005401c1d8dc$71f28b10$0101000a@homer> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0055_01C1D8AA.27581B10" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 In-Reply-To: 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 This is a multi-part message in MIME format. ------=_NextPart_000_0055_01C1D8AA.27581B10 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Thanks a lot! I really appreciate the help! I recompiled and everything worked out great. Does it run into that error simply because the board doesn't have a parallel port? Adam -----Original Message----- From: Joe & Fhe Barbish [mailto:barbish@a1poweruser.com] Sent: Sunday, March 31, 2002 8:39 AM To: Adam Fladwood Cc: FBSDQ Subject: RE: Intel SCB2 Server w/ FBSD 4.5 Stray irq 7 messages The FBSD FAQ says 5.24. What does ``stray IRQ'' mean? Stray IRQs are indications of hardware IRQ glitches, mostly from hardware that removes its interrupt request in the middle of the interrupt request acknowledge cycle. One has three options for dealing with this: * Live with the warnings. All except the first 5 per irq are suppressed anyway. * Break the warnings by changing 5 to 0 in isa_strayintr() so that all the warnings are suppressed. * Break the warnings by installing parallel port hardware that uses irq 7 and the PPP driver for it (this happens on most systems), and install an ide drive or other hardware that uses irq 15 and a suitable driver for it. 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. -----Original Message----- From: owner-freebsd-questions@FreeBSD.ORG [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Adam Fladwood Sent: Sunday, March 31, 2002 12:48 AM To: freebsd-questions@freebsd.org Subject: Intel SCB2 Server w/ FBSD 4.5 Hey Everyone, I was curious if anyone has had any problems with the Intel SCB2 boards in FreeBSD. I got a dual board, case, the whole works for the most part from Intel and put FreeBSD on it, no problems there. (I figured that there might be with the hot swap drives and all, but to my surprise, everything was fine.) The only real problem, well, 'bug' that I'm noticing is after boot, I get a bunch if "Stray IRQ 7" messages in the logs. I checked over the system, bios, scsi controller (Adaptec AIC7899), and none of those have anything on IRQ 7. I checked out the dmesg.boot and the only thing I can find even close to 7 is: ahc0: port . mem .. irq 3 at device 7.0 on pci1 ahc0: port . mem .. irq 9 at device 7.1 on pci1 Thanks in advance for any help on this! Thanks again, Adam ------=_NextPart_000_0055_01C1D8AA.27581B10 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Thanks a lot!  I really = appreciate the help!  I recompiled and everything worked out = great.

 

Does it run into that error = simply because the board doesn’t have a parallel port?

 

Adam

 

-----Original Message-----
From: Joe & Fhe = Barbish [mailto:barbish@a1poweruser.com]
Sent:
Sunday, March 31, 2002 8:39 = AM
To: Adam Fladwood
Cc: FBSDQ
Subject: RE: Intel SCB2 = Server w/ FBSD 4.5

 

Stray = irq 7 messages

 

The FBSD = FAQ says

 

5.24. What does ``stray IRQ'' mean?

 

Stray IRQs are indications of hardware IRQ glitches, mostly = from hardware that removes its interrupt request in the middle of the = interrupt request acknowledge cycle.

 

One has = three options for dealing with this:

 

* Live with the warnings.

  All except the first 5 per irq are suppressed = anyway.

 

* Break the warnings by changing 5 to 0 in isa_strayintr() =

  so that all the warnings are = suppressed.

 

* Break the warnings by installing parallel port hardware = that uses irq 7 and the PPP driver for it (this happens on most systems), and = install an ide drive or other hardware that uses irq 15 and a suitable driver for = it.

 

 

 

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] <=3D 5)

 

To  this

 

      if (intrcnt[1 + intr] <=3D 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.

 

 

-----Original Message-----
From: owner-freebsd-questions@FreeBSD.ORG = [mailto:owner-freebsd-questions@FreeBSD.ORG]On Behalf Of Adam Fladwood
Sent:
Sunday, March 31, 2002 12:48 AM
To: = freebsd-questions@freebsd.org
Subject: Intel SCB2 = Server w/ FBSD 4.5

 

Hey Everyone,

 

I was curious if anyone has had any problems with the Intel SCB2 boards in FreeBSD.  I got a dual board, case, the whole works for the most = part from Intel and put FreeBSD on it, no problems there.  (I figured that = there might be with the hot swap drives and all, but to my surprise, = everything was fine.)

 

The only real problem, well, ‘bug’ that I’m noticing is after = boot, I get a bunch if “Stray IRQ 7” messages in the logs. 

 

I checked over the system, bios, scsi controller (Adaptec AIC7899), and = none of those have anything on IRQ 7.  I checked out the dmesg.boot and the = only thing I can find even close to 7 is:

 

ahc0: <Adaptec…blah blah> port … mem …. irq 3 at = device 7.0 on pci1

ahc0: <Adaptec…blah blah> port … mem …. irq 9 at = device 7.1 on pci1

 

Thanks in advance for any help on this!

 

Thanks again,

Adam

 

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