From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 01:53:23 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3494716A4BF; Sun, 21 Sep 2003 01:53:23 -0700 (PDT) Received: from melusine.cuivre.fr.eu.org (melusine.cuivre.fr.eu.org [62.212.105.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3910143FDD; Sun, 21 Sep 2003 01:53:22 -0700 (PDT) (envelope-from thomas@FreeBSD.ORG) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 66AFC2A42B; Sun, 21 Sep 2003 10:53:20 +0200 (CEST) Date: Sun, 21 Sep 2003 10:53:20 +0200 From: Thomas Quinot To: Scott Long Message-ID: <20030921085320.GA90002@melusine.cuivre.fr.eu.org> References: <20030920110131.GA41062@melusine.cuivre.fr.eu.org> <3F6CEDF8.5070803@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3F6CEDF8.5070803@freebsd.org> User-Agent: Mutt/1.4i X-message-flag: WARNING! Using Outlook can damage your computer. cc: freebsd-scsi@FreeBSD.org cc: gibbs@FreeBSD.org cc: ken@FreeBSD.org cc: Thomas Quinot Subject: Re: Missing length specification in scsi_request_sense X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Sep 2003 08:53:23 -0000 Le 2003-09-21, Scott Long écrivait : > Since just about every driver in existance does auto-sense, it doesn't > surprise me that you're finding these bugs. Yes, that's what I guessed... ATAPI/CAM used to have autosense before ATAng, because the ATA code used to. Since it doesn't anymore, I have added an autosense circuit in ATAPI/CAM, but this appears to trigger a race condition somewhere, leading to a missed ATA interript, and so needs to be disabled for now. Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 06:05:59 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AD5B16A4BF for ; Sun, 21 Sep 2003 06:05:59 -0700 (PDT) Received: from fatpipi.cirx.org (fatpipi.cirx.org [211.23.144.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5A3B43FCB for ; Sun, 21 Sep 2003 06:05:56 -0700 (PDT) (envelope-from clive@tongi.org) Received: from fatpipi.cirx.org (nullmail@internal-fxp.home [192.168.1.254]) by fatpipi.cirx.org (8.12.8p1/8.12.8) with SMTP id h8LD5eMu065778; Sun, 21 Sep 2003 21:05:54 +0800 (CST) (envelope-from clive@tongi.org) Received: (nullmailer pid 65776 invoked by uid 1000); Sun, 21 Sep 2003 13:05:39 -0000 Date: Sun, 21 Sep 2003 21:05:39 +0800 From: Clive Lin To: Andrew Snow Message-ID: <20030921130539.GA64930@fatpipi.cirx.org> References: <3F64E50E.2040608@kanji.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F64E50E.2040608@kanji.com.au> X-Operating-System: FreeBSD i386 X-PGP-key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xA008C03E User-Agent: Mutt/1.5.4i cc: freebsd-scsi@freebsd.org Subject: Re: ibm x345 w/ serveraid-5i + freebsd ips driver dramas X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Sep 2003 13:05:59 -0000 On Mon, Sep 15, 2003 at 08:00:46AM +1000, Andrew Snow wrote: > Problem 2: (the biggest problem) > > While the drive size is reported correctly, the geometry is wrong... > 472 cyls/254 heads/63 sectors = 7552944 sectors (3687MB) ?! > > When setting the BIOS to "non-extended" (2GB max) support mode, freebsd > then thinks this is the geometry: > 1846 cyls/128 heads/32 sectors = 7561216 sectors (3692MB). > > So I tested a few alternate geometries instead and even though there > were no error messages, it seemed to get reset to what FreeBSD was > reporting, no matter how many ways I tried to use the fdisk utility. Hi, I have a quick fix for this problem. --- sys/dev/ips/ips_disk.c~~ Sun Sep 21 19:04:44 2003 +++ sys/dev/ips/ips_disk.c Sun Sep 21 20:29:18 2003 @@ -139,7 +139,7 @@ dsc->ipsd_disk.d_fwsectors = IPS_COMP_SECTORS; } dsc->ipsd_disk.d_sectorsize = IPS_BLKSIZE; - dsc->ipsd_disk.d_mediasize = totalsectors * IPS_BLKSIZE; + dsc->ipsd_disk.d_mediasize = (long long) totalsectors * IPS_BLKSIZE; disk_create(dsc->unit, &dsc->ipsd_disk, 0, NULL, NULL); device_printf(dev, "Logical Drive (%dMB)\n", The (long long) casting might not be suitable on other platform. It works for me on a dual XEON x225 box, which has a ServeRAID 5i. Regards, Clive From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 06:31:08 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE34316A4B3; Sun, 21 Sep 2003 06:31:08 -0700 (PDT) Received: from esper.modulus.org (c198-142-207-94.rivrw5.nsw.optusnet.com.au [198.142.207.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 402E743FE1; Sun, 21 Sep 2003 06:31:03 -0700 (PDT) (envelope-from als@kanji.com.au) Received: from kanji.com.au (unknown [172.16.1.8]) by esper.modulus.org (Postfix) with ESMTP id CF9FD114AC; Sun, 21 Sep 2003 23:31:39 +1000 (EST) Message-ID: <3F6DA7E3.5040709@kanji.com.au> Date: Sun, 21 Sep 2003 23:30:11 +1000 From: Andrew Snow User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Clive Lin References: <3F64E50E.2040608@kanji.com.au> <20030921130539.GA64930@fatpipi.cirx.org> In-Reply-To: <20030921130539.GA64930@fatpipi.cirx.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-scsi@freebsd.org Subject: Re: ibm x345 w/ serveraid-5i + freebsd ips driver dramas X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Sep 2003 13:31:08 -0000 > sys/dev/ips/ips_disk.c > - dsc->ipsd_disk.d_mediasize = totalsectors * IPS_BLKSIZE; > + dsc->ipsd_disk.d_mediasize = (long long) totalsectors * IPS_BLKSIZE; Argh :-) I stared at those lines for so long, and that solution never occured to me. I suggest that (off_t) would be the correct cast for all platforms. Thank you, and I wonder if this patch can be confirmed by scottl and applied to the next release of FreeBSD 5? - Andrew From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 21:54:44 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDE916A4B3 for ; Sun, 21 Sep 2003 21:54:44 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id D156143FBF for ; Sun, 21 Sep 2003 21:54:43 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 37607 invoked by uid 1000); 22 Sep 2003 04:54:46 -0000 Date: Sun, 21 Sep 2003 21:54:46 -0700 (PDT) From: Nate Lawson To: Jos Backus In-Reply-To: <20030921053253.GA98711@lizzy.catnook.com> Message-ID: <20030921215429.V37429@root.org> References: <20030911165325.GA826@lizzy.catnook.com> <137850000.1063320278@aslan.btc.adaptec.com> <20030912184536.GM26878@cicely12.cicely.de> <20030917043629.GA820@lizzy.catnook.com> <20030920203052.Q32361@root.org> <20030921053253.GA98711@lizzy.catnook.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-scsi@freebsd.org Subject: Re: "Timedout SCB already complete. Interrupts may not be functioning." X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 04:54:44 -0000 On Sat, 20 Sep 2003, Jos Backus wrote: > On Sat, Sep 20, 2003 at 08:31:37PM -0700, Nate Lawson wrote: > > On Fri, 19 Sep 2003, Jos Backus wrote: > [patch snipped] > > > Any plans to commit this? > > > > Uh, I should sure hope not. Disabling interrupt routing globally is not > > the right fix. Finding out what's wrong on your mobo is. > > > > -Nate > > Okay. How do I go about doing this? It's a standard Asus CUBX motherboard > running the latest BIOS revision. Post to freebsd-current. jhb@ may be interested. -Nate From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 21:59:33 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1867216A4BF for ; Sun, 21 Sep 2003 21:59:33 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 3592243FCB for ; Sun, 21 Sep 2003 21:59:32 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 37639 invoked by uid 1000); 22 Sep 2003 04:59:34 -0000 Date: Sun, 21 Sep 2003 21:59:34 -0700 (PDT) From: Nate Lawson To: Clive Lin In-Reply-To: <20030921130539.GA64930@fatpipi.cirx.org> Message-ID: <20030921215914.O37429@root.org> References: <3F64E50E.2040608@kanji.com.au> <20030921130539.GA64930@fatpipi.cirx.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-scsi@freebsd.org cc: Andrew Snow Subject: Re: ibm x345 w/ serveraid-5i + freebsd ips driver dramas X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 04:59:33 -0000 On Sun, 21 Sep 2003, Clive Lin wrote: > On Mon, Sep 15, 2003 at 08:00:46AM +1000, Andrew Snow wrote: > > Problem 2: (the biggest problem) > > > > While the drive size is reported correctly, the geometry is wrong... > > 472 cyls/254 heads/63 sectors = 7552944 sectors (3687MB) ?! > > > > When setting the BIOS to "non-extended" (2GB max) support mode, freebsd > > then thinks this is the geometry: > > 1846 cyls/128 heads/32 sectors = 7561216 sectors (3692MB). > > > > So I tested a few alternate geometries instead and even though there > > were no error messages, it seemed to get reset to what FreeBSD was > > reporting, no matter how many ways I tried to use the fdisk utility. > > Hi, > > I have a quick fix for this problem. > > --- sys/dev/ips/ips_disk.c~~ Sun Sep 21 19:04:44 2003 > +++ sys/dev/ips/ips_disk.c Sun Sep 21 20:29:18 2003 > @@ -139,7 +139,7 @@ > dsc->ipsd_disk.d_fwsectors = IPS_COMP_SECTORS; > } > dsc->ipsd_disk.d_sectorsize = IPS_BLKSIZE; > - dsc->ipsd_disk.d_mediasize = totalsectors * IPS_BLKSIZE; > + dsc->ipsd_disk.d_mediasize = (long long) totalsectors * IPS_BLKSIZE; > disk_create(dsc->unit, &dsc->ipsd_disk, 0, NULL, NULL); > > device_printf(dev, "Logical Drive (%dMB)\n", > > The (long long) casting might not be suitable on other > platform. It works for me on a dual XEON x225 box, which has a > ServeRAID 5i. Committed as off_t, thanks. -Nate From owner-freebsd-scsi@FreeBSD.ORG Sun Sep 21 23:06:33 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 351EB16A4B3 for ; Sun, 21 Sep 2003 23:06:33 -0700 (PDT) Received: from w250.z064001178.sjc-ca.dsl.cnc.net (adsl-66.218.45.239.dslextreme.com [66.218.45.239]) by mx1.FreeBSD.org (Postfix) with SMTP id 9D8A143FE0 for ; Sun, 21 Sep 2003 23:06:30 -0700 (PDT) (envelope-from jos@catnook.com) Received: (qmail 42086 invoked by uid 1000); 22 Sep 2003 06:06:51 -0000 Date: Sun, 21 Sep 2003 23:06:29 -0700 From: Jos Backus To: freebsd-scsi@freebsd.org Message-ID: <20030922060651.GA42038@lizzy.catnook.com> Mail-Followup-To: freebsd-scsi@freebsd.org References: <20030911165325.GA826@lizzy.catnook.com> <137850000.1063320278@aslan.btc.adaptec.com> <20030912032034.GA826@lizzy.catnook.com> <20030912184536.GM26878@cicely12.cicely.de> <20030916053850.GA1022@lizzy.catnook.com> <20030917043629.GA820@lizzy.catnook.com> <20030920050556.GA49402@lizzy.catnook.com> <20030920203052.Q32361@root.org> <20030921053253.GA98711@lizzy.catnook.com> <20030921215429.V37429@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030921215429.V37429@root.org> User-Agent: Mutt/1.5.4i Subject: Re: "Timedout SCB already complete. Interrupts may not be functioning." X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jos@catnook.com List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 06:06:33 -0000 On Sun, Sep 21, 2003 at 09:54:46PM -0700, Nate Lawson wrote: > On Sat, 20 Sep 2003, Jos Backus wrote: > > Okay. How do I go about doing this? It's a standard Asus CUBX motherboard > > running the latest BIOS revision. > > Post to freebsd-current. jhb@ may be interested. I already did, but nobody seems to have picked this up so far: Date: Thu, 11 Sep 2003 22:31:30 -0700 From: Jos Backus To: freebsd-current@freebsd.org Subject: IRQ routing problem -- Jos Backus _/ _/_/_/ Sunnyvale, CA _/ _/ _/ _/ _/_/_/ _/ _/ _/ _/ jos at catnook.com _/_/ _/_/_/ require 'std/disclaimer' From owner-freebsd-scsi@FreeBSD.ORG Mon Sep 22 02:24:01 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DAB416A4B3 for ; Mon, 22 Sep 2003 02:24:01 -0700 (PDT) Received: from mail.netspace.net.au (whirlwind.netspace.net.au [203.10.110.76]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9BD143FCB for ; Mon, 22 Sep 2003 02:23:59 -0700 (PDT) (envelope-from tim@sterlingmicros.com.au) Received: from nutter (dsl-203-113-210-120.QLD.netspace.net.au [203.113.210.120]) by mail.netspace.net.au (Postfix) with SMTP id EA65DF66DC for ; Mon, 22 Sep 2003 19:25:25 +1000 (EST) Message-ID: <001601c380eb$468b9ad0$0101a8c0@nutter> From: "tim" To: Date: Mon, 22 Sep 2003 19:24:07 +1000 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: ahd0: Unexpected PKT busfree condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 09:24:01 -0000 Hi Guys I am running 4.8_release on a intel SE7501BR2 server board. Everything = appeared to be running fine for about 3 months but just the other day = this message popped up (see below) and ever since the machine has ran = like crap. The speed at which it serves files (via samba)to the windows = network is pathetic,before this message came up it ran like the wind but = now it doesn't and my customer is kinda getting a bit fed up with the = slow access speeds and i really need to find a solution to this = quick!!...i am using a 36gb Seagate 15,000 rpm drive (sorry can't = remember the exact model from memory but i wil post it, if it is = required). Basically i think it is one of three things 1)Dodgy = Motherboard 2)H/D on the way out 3)dodgy drivers in Freebsd. I am really = hoping it is 1 or 2 because it's easy to send the stuff back and get it = replaced but i really don't want to use another OS unless it's OpenBSD = but 3.3 doesn't seem to support the on-board scsi but maybe 3.4 will but = that ain't due till october i think. i doubt this matters but i am only = running 1 xeon on this board. cheers Tim ahd0: Unexpected PKT busfree condition >>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<< ahd0: Dumping Card State at program address 0x10 Mode 0x22 Card was paused HS_MAILBOX[0x40]:(ENINT_COALESS) INTCTL[0xc0]:(SWTMINTEN|SWTMINTMASK) SEQINTSTAT[0x0] SAVED_MODE[0x11] DFFSTAT[0x0]:(CURRFIFO_0) SCSISIGI[0x24]:(P_DATAOUT_DT|BSYI) SCSIPHASE[0x1]:(DATA_OUT_PHASE) SCSIBUS[0x0] LASTPHASE[0x1]:(P_DATAOUT|P_BUSFREE) SCSISEQ0[0x0] SCSISEQ1[0x12]:(ENAUTOATNP|ENRSELI) SEQCTL0[0x10]:(FASTMODE) SEQINTCTL[0x8]:(SCS_SEQ_INT1M0) SEQ_FLAGS[0x0] SEQ_FLAGS2[0x0] SSTAT0[0x0] SSTAT1[0x19]:(REQINIT|BUSFREE|PHASEMIS) SSTAT2[0x0] SSTAT3[0x80] PERRDIAG[0x0] SIMODE1[0xa4]:(ENSCSIPERR|ENSCSIRST|ENSELTIMO) LQISTAT0[0x0] LQISTAT1[0x0] LQISTAT2[0x81]:(LQIGSAVAIL|PACKETIZED) LQOSTAT0[0x0] LQOSTAT1[0x0] LQOSTAT2[0x81]:(LQOSTOP0) SCB Count =3D 80 CMDS_PENDING =3D 54 LASTSCB 0x20 CURRSCB 0x20 NEXTSCB = 0x14 qinstart =3D 2990 qinfifonext =3D 2990 QINFIFO: WAITING_TID_QUEUES: Pending list: 18 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x12] 5 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x5] 36 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x24] 33 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x21] 26 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1a] 43 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2b] 37 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x25] 7 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x7] 63 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3f] 23 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x17] 35 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x23] 47 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2f] 39 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x27] 44 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2c] 31 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1f] 6 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x6] 1 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1] 34 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x22] 24 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x18] 16 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x10] 2 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2] 19 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x13] 12 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0xc] 38 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x26] 27 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1b] 30 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1e] 3 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3] 10 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0xa] 9 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x9] 79 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x4f] 48 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x30] 49 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x31] 50 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x32] 51 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x33] 52 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x34] 53 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x35] 54 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x36] 55 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x37] 56 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x38] 57 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x39] 58 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3a] 59 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3b] 60 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3c] 61 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3d] 62 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x3e] 4 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x4] 22 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x16] 25 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x19] 45 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2d] 15 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0xf] 13 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0xd] 17 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x11] 29 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x1d] 46 SCB_CONTROL[0x60]:(TAG_ENB|DISCENB) SCB_SCSIID[0x7] SCB_TAG[0x2e] Total 54 Kernel Free SCB list: 8 32 28 20 41 40 14 21 11 42 0 78 77 76 75 74 73 = 72 71 70 69 68 67 66 65 64 Sequencer Complete DMA-inprog list: Sequencer Complete list: Sequencer DMA-Up and Complete list: ahd0: FIFO0 Active, LONGJMP =3D=3D 0x80ff, SCB 0x2d, LJSCB 0xff00 SEQIMODE[0x3f]:(ENCFG4TCMD|ENCFG4ICMD|ENCFG4TSTAT|ENCFG4ISTAT|ENCFG4DATA|= ENS AVEPTRS) SEQINTSRC[0x10]:(CFG4DATA) DFCNTRL[0x4]:(DIRECTION) DFSTATUS[0x89]:(FIFOEMP|HDONE|PRELOAD_AVAIL) = SG_CACHE_SHADOW[0x2]:(LAST_SEG) SG_STATE[0x0] DFFSXFRCTL[0x0] SOFFCNT[0x7e] MDFFSTAT[0x2]:(DATAINFIFO) SHADDR =3D 0x00, SHCNT =3D 0x0 HADDR =3D 0x00, HCNT =3D 0x0 CCSGCTL[0x10]:(SG_CACHE_AVAIL) ahd0: FIFO1 Active, LONGJMP =3D=3D 0x25c, SCB 0xf, LJSCB 0xf SEQIMODE[0x3f]:(ENCFG4TCMD|ENCFG4ICMD|ENCFG4TSTAT|ENCFG4ISTAT|ENCFG4DATA|= ENS AVEPTRS) SEQINTSRC[0x40]:(CTXTDONE) DFCNTRL[0xc]:(DIRECTION|HDMAEN) DFSTATUS[0x89]:(FIFOEMP|HDONE|PRELOAD_AVAIL) SG_CACHE_SHADOW[0xa3]:(LAST_SEG_DONE|LAST_SEG) SG_STATE[0x0] DFFSXFRCTL[0x0] SOFFCNT[0x7e] MDFFSTAT[0x16]:(DATAINFIFO|DLZERO|LASTSDONE) SHADDR =3D 0x0d164000, SHCNT =3D 0x0 HADDR =3D 0x0d164000, HCNT =3D 0x0 CCSGCTL[0x0] LQIN: 0x5 0x0 0x0 0x2d 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x40 0x0 = 0x0 0x0 0x2 0x0 ahd0: LQISTATE =3D 0x25, LQOSTATE =3D 0x0, OPTIONMODE =3D 0x42 ahd0: OS_SPACE_CNT =3D 0x20 MAXCMDCNT =3D 0xa SIMODE0[0xc]:(ENOVERRUN|ENIOERR) CCSCBCTL[0x0] ahd0: REG0 =3D=3D 0x1c, SINDEX =3D 0x122, DINDEX =3D 0x102 ahd0: SCBPTR =3D=3D 0x8, SCB_NEXT =3D=3D 0xf, SCB_NEXT2 =3D=3D 0xff18 CDB a 0 1 80 20 8c STACK: 0x120 0x0 0x0 0x255 0x23e 0x8e 0x2e 0x10 >>>>>>>>>>>>>>>>> From owner-freebsd-scsi@FreeBSD.ORG Mon Sep 22 09:21:07 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C74DE16A4B3 for ; Mon, 22 Sep 2003 09:21:07 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id E385C43FE1 for ; Mon, 22 Sep 2003 09:21:06 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 40563 invoked by uid 1000); 22 Sep 2003 16:21:07 -0000 Date: Mon, 22 Sep 2003 09:21:07 -0700 (PDT) From: Nate Lawson To: tim In-Reply-To: <001601c380eb$468b9ad0$0101a8c0@nutter> Message-ID: <20030922091913.G40466@root.org> References: <001601c380eb$468b9ad0$0101a8c0@nutter> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-scsi@freebsd.org Subject: Re: ahd0: Unexpected PKT busfree condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 16:21:07 -0000 On Mon, 22 Sep 2003, tim wrote: > I am running 4.8_release on a intel SE7501BR2 server board. Everything > appeared to be running fine for about 3 months but just the other day > this message popped up (see below) and ever since the machine has ran > like crap. The speed at which it serves files (via samba)to the windows > network is pathetic,before this message came up it ran like the wind but > now it doesn't and my customer is kinda getting a bit fed up with the > slow access speeds and i really need to find a solution to this > quick!!...i am using a 36gb Seagate 15,000 rpm drive (sorry can't > remember the exact model from memory but i wil post it, if it is > required). Basically i think it is one of three things 1)Dodgy > Motherboard 2)H/D on the way out 3)dodgy drivers in Freebsd. I am really > hoping it is 1 or 2 because it's easy to send the stuff back and get it > replaced but i really don't want to use another OS unless it's OpenBSD > but 3.3 doesn't seem to support the on-board scsi but maybe 3.4 will but > that ain't due till october i think. i doubt this matters but i am only > running 1 xeon on this board. > > ahd0: Unexpected PKT busfree condition camcontrol tags da0 -N 8 If this works, up '8' until it doesn't (my guess, somewhere around 31). -Nate From owner-freebsd-scsi@FreeBSD.ORG Mon Sep 22 11:04:21 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F02916A4BF for ; Mon, 22 Sep 2003 11:04:21 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F169440BD for ; Mon, 22 Sep 2003 11:03:19 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8MI3FFY013610 for ; Mon, 22 Sep 2003 11:03:15 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8MI3EKT013604 for scsi@freebsd.org; Mon, 22 Sep 2003 11:03:14 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 22 Sep 2003 11:03:14 -0700 (PDT) Message-Id: <200309221803.h8MI3EKT013604@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: scsi@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Sep 2003 18:04:21 -0000 Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [1999/12/21] kern/15608 scsi acd0 / cd0 give inconsistent errors on em 1 problem total. From owner-freebsd-scsi@FreeBSD.ORG Wed Sep 24 06:20:37 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC1BA16A4B3 for ; Wed, 24 Sep 2003 06:20:37 -0700 (PDT) Received: from smtp.easynet.es (smtp.easynet.es [213.139.0.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 871F743FCB for ; Wed, 24 Sep 2003 06:20:36 -0700 (PDT) (envelope-from anthony.stanton@es.easynet.net) Received: from atana.noc.es.easynet.net ([213.139.2.223]) by smtp.easynet.es with esmtp (Exim 4.22) id 1A29ZJ-000E4E-B3 for freebsd-scsi@freebsd.org; Wed, 24 Sep 2003 15:20:33 +0200 Received: from atana.noc.es.easynet.net (localhost [127.0.0.1]) h8ODKctD095419 for ; Wed, 24 Sep 2003 15:20:38 +0200 (CEST) (envelope-from anthony.stanton@es.easynet.net) Received: (from stanton@localhost) by atana.noc.es.easynet.net (8.12.8p1/8.12.3/Submit) id h8ODKcMf095418 for freebsd-scsi@freebsd.org; Wed, 24 Sep 2003 15:20:38 +0200 (CEST) X-Authentication-Warning: atana.noc.es.easynet.net: stanton set sender to anthony.stanton@es.easynet.net using -f Date: Wed, 24 Sep 2003 15:20:38 +0200 From: Anthony Stanton To: freebsd-scsi@freebsd.org Message-ID: <20030924132038.GD94794@es.easynet.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.1i Organization: Easynet Group plc X-NCC-RegId: es.easynet Subject: Problem with ciss(4) in production system X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Anthony Stanton List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Sep 2003 13:20:38 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hello, This morning I moved a server I've been running for over a year now, a Compaq (HP!) Proliant DL360 with a 4314 StorageWorks external SCSI disk box connected to it. The server has one internal disk on its Integrated Smart Array (ida(4) driver) and a RAID 5 using all of the disks in the external box on a Smart Array 5300 (ciss(4) driver). Uname: FreeBSD brooklyn.mail.es.easynet.net 4.8-RELEASE-p8 FreeBSD 4.8-RELEASE-p8 #1: Wed Sep 24 13:37:08 CEST 2003 root@brooklyn.mail.es.easynet.net:/usr/obj/usr/src/sys/BROOKLYN i386 Upon reinstalling in its new rack, I mistakenly plugged the disk box into the Integrated array, making it believe it had 2 logical volumes; I rebooted with the cable properly connected and deleted the bogus volume, but now it was the 5300 which had a phantom logical volume corresponding to the internal disk. I deleted that. After this, I can get FreeBSD to boot, and the ciss0 initialization seems OK, but it cannot find da0 (which used to represent the external RAID 5 on the disk box). Using camcontrol I get this: brooklyn# camcontrol devlist -v scbus0 on ciss0 bus 0: scbus-1 on xpt0 bus 0: < > at scbus-1 target -1 lun -1 (xpt0) brooklyn# camcontrol rescan 0:0:0 (probe0:ciss0:0:0:0): INQUIRY. CDB: 12 0 0 0 24 0 (probe0:ciss0:0:0:0): ILLEGAL REQUEST asc:68,0 (probe0:ciss0:0:0:0): Logical unit not configured Re-scan of 0:0:0 was successful The same "probe0" errors show up in the boot sequence where it should have detected da0. (see attached dmesg output). Any attempt to use mount(8) or disklabel(8) with da0 or any of its slices fail with a "Device not configured" error. Booting with a Debian GNU/Linux install CD reveals a BSD/386 /dev/cciss/codop1 partition, but I cannot get fdisk under FreeBSD to see it. I am at a loss for what to do. I can think of nothing that will set things right... Compaq support have assured me that there is nothing more they can do if the array configuration is there, this is an OS issue. Attached is the output to pciconf -lv, the dmesg from today's (broken) boot and a diff of that to the previous (good) boot. Can anyone help me? Thanks in advance, -- Anthony Stanton +34 91 789 46 00 Systems Manager, Easynet España S.A.U. http://www.es.easynet.net/ --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=pciconf chip0@pci0:0:0: class=0x060000 card=0x00000000 chip=0x00091166 rev=0x05 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-LE) AGP interface' class = bridge subclass = HOST-PCI chip1@pci0:0:1: class=0x060000 card=0x00000000 chip=0x00091166 rev=0x05 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'NB6536 (CNB20-LE) AGP interface' class = bridge subclass = HOST-PCI ida0@pci0:1:0: class=0x010400 card=0x40400e11 chip=0x00101000 rev=0x02 hdr=0x00 vendor = 'LSI Logic (Was: Symbios Logic, NCR)' device = 'LSI53C1510 I2O-Ready PCI RAID Ultra2 SCSI Controller (Intelligent mode)' class = mass storage subclass = RAID none0@pci0:3:0: class=0x030000 card=0x47561002 chip=0x47561002 rev=0x7a hdr=0x00 vendor = 'ATI Technologies' device = 'Rage 3D IIC PCI [Mach64 GT IIC] (PQFP Package)' class = display subclass = VGA none1@pci0:4:0: class=0x088000 card=0xb0f30e11 chip=0xa0f00e11 rev=0x00 hdr=0x00 vendor = 'Compaq Computer Corp (Now owned by Hewlett-Packard)' device = 'Advanced System Management Controller' class = base peripheral ciss0@pci0:5:0: class=0x010400 card=0x40700e11 chip=0xb0600e11 rev=0x02 hdr=0x00 vendor = 'Compaq Computer Corp (Now owned by Hewlett-Packard)' device = 'CISS SMART2 Array Controller' class = mass storage subclass = RAID isab0@pci0:15:0: class=0x060100 card=0x02001166 chip=0x02001166 rev=0x51 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'OSB4 PCI to ISA Bridge' class = bridge subclass = PCI-ISA atapci0@pci0:15:1: class=0x01018a card=0x00000000 chip=0x02111166 rev=0x00 hdr=0x00 vendor = 'Reliance Computer Corp./ServerWorks' device = 'OSB4 PCI EIDE Controller' class = mass storage subclass = ATA fxp0@pci3:4:0: class=0x020000 card=0xb1340e11 chip=0x12298086 rev=0x08 hdr=0x00 vendor = 'Intel Corporation' device = '82557/8/9 EtherExpress PRO/100(B) Ethernet Adapter' class = network subclass = ethernet fxp1@pci3:5:0: class=0x020000 card=0xb1340e11 chip=0x12298086 rev=0x08 hdr=0x00 vendor = 'Intel Corporation' device = '82557/8/9 EtherExpress PRO/100(B) Ethernet Adapter' class = network subclass = ethernet --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="dmesg.broken" Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.8-RELEASE-p8 #1: Wed Sep 24 13:37:08 CEST 2003 root@brooklyn.mail.es.easynet.net:/usr/obj/usr/src/sys/BROOKLYN Timecounter "i8254" frequency 1193182 Hz CPU: Intel Pentium III (863.94-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x686 Stepping = 6 Features=0x383fbff real memory = 1207943168 (1179632K bytes) avail memory = 1170554880 (1143120K bytes) Changing APIC ID for IO APIC #0 from 0 to 8 on chip Programming 35 pins in IOAPIC #0 IOAPIC #0 intpin 2 -> irq 0 FreeBSD/SMP: Multiprocessor motherboard cpu0 (BSP): apic id: 3, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 0, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 8, version: 0x00220011, at 0xfec00000 Preloaded elf kernel "kernel" at 0xc0328000. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 ida0: port 0x2000-0x20ff mem 0xc4000000-0xc4ffffff,0xc5000000-0xc5ffffff irq 5 at device 1.0 on pci0 ida0: drives=1 firm_rev=1.50 idad0: on ida0 idad0: 17359MB (35553120 sectors), blocksize=512 pci0: at 3.0 pci0: (vendor=0x0e11, dev=0xa0f0) at 4.0 ciss0: port 0x2800-0x28ff mem 0xc3e00000-0xc3efffff,0xc3f80000-0xc3fbffff irq 3 at device 5.0 on pci0 ciss0: using 256 of 1024 available commands ciss0: 1 logical drive configured ciss0: firmware 2.92 ciss0: 2 SCSI channels ciss0: signature 'CISS' ciss0: valence 1 ciss0: supported I/O methods 0xe ciss0: active I/O method 0x3 ciss0: 4G page base 0x00000000 ciss0: interrupt coalesce delay 1000us ciss0: interrupt coalesce count 0 ciss0: max outstanding commands 1024 ciss0: bus types 0x2 ciss0: server name '' ciss0: heartbeat 0xe0000027 ciss0: 1 logical drive ciss0: logical drive 1: RAID 5, 381952MB online isab0: at device 15.0 on pci0 isa0: on isab0 atapci0: port 0x2c00-0x2c0f at device 15.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pcib3: on motherboard pci3: on pcib3 fxp0: port 0x3000-0x303f mem 0xc6e00000-0xc6efffff,0xc6fff000-0xc6ffffff irq 7 at device 4.0 on pci3 fxp0: Ethernet address 00:02:a5:8a:83:c0 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp1: port 0x3040-0x307f mem 0xc6c00000-0xc6cfffff,0xc6dff000-0xc6dfffff irq 10 at device 5.0 on pci3 fxp1: Ethernet address 00:02:a5:8a:83:bf inphy1: on miibus1 inphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto eisa0: on motherboard mainboard0: on eisa0 slot 0 orm0: