From owner-freebsd-scsi@FreeBSD.ORG Mon Mar 1 10:17:50 2004 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 9EDAA16A4CE for ; Mon, 1 Mar 2004 10:17:50 -0800 (PST) Received: from mail.errors.firstcallgroup.co.uk (mail.errors.firstcallgroup.co.uk [213.167.69.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64D2543D1F for ; Mon, 1 Mar 2004 10:17:50 -0800 (PST) (envelope-from petefrench@keithprowse.com) Received: from [172.16.1.6] (helo=dilbert.firstcallgroup.co.uk) by mail.errors.firstcallgroup.co.uk with esmtp (Exim 4.22) id 1AxrzB-000NNe-PD for freebsd-scsi@freebsd.org; Mon, 01 Mar 2004 18:17:49 +0000 Received: from petefrench by dilbert.firstcallgroup.co.uk with local (Exim 4.30; FreeBSD) id 1AxrzB-000HM6-I0 for freebsd-scsi@freebsd.org; Mon, 01 Mar 2004 18:17:49 +0000 To: freebsd-scsi@freebsd.org Message-Id: From: Pete French Date: Mon, 01 Mar 2004 18:17:49 +0000 Subject: Panasonic LF-D102 DVD drive 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, 01 Mar 2004 18:17:50 -0000 I have one of the above Panasonic drives that I am attempting to use under the AMD64 version of 5.2.1 -RELEASE. The drive works fine for mouting CD's or DVD's with an ISO 9660 filesystem on them. If I insert media with a UDF filesystem, however, (either a DVD-RAM cartridge or a video DVD) then I cannot access the device as I get and error along the lines of /dev/cd1 not being a valid device. This is both using mount_udf and also if I just try and get rawdata from it using "dd". It was suggested to me elsewhere that this is due to the SCSI system not recognising the drive properly and that I should ask on this list. How would I set about trying to track down the problem ? Thanks, -pcf. From owner-freebsd-scsi@FreeBSD.ORG Mon Mar 1 11:25:05 2004 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 D041516A4CF for ; Mon, 1 Mar 2004 11:25:05 -0800 (PST) Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 054EF43D2F for ; Mon, 1 Mar 2004 11:25:05 -0800 (PST) (envelope-from ken@panzer.kdm.org) Received: from panzer.kdm.org (localhost [127.0.0.1]) by panzer.kdm.org (8.12.9/8.12.5) with ESMTP id i21JP4LX093067; Mon, 1 Mar 2004 12:25:04 -0700 (MST) (envelope-from ken@panzer.kdm.org) Received: (from ken@localhost) by panzer.kdm.org (8.12.9/8.12.5/Submit) id i21JP4Dg093066; Mon, 1 Mar 2004 12:25:04 -0700 (MST) (envelope-from ken) Date: Mon, 1 Mar 2004 12:25:03 -0700 From: "Kenneth D. Merry" To: Pete French Message-ID: <20040301192503.GA93003@panzer.kdm.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: freebsd-scsi@freebsd.org Subject: Re: Panasonic LF-D102 DVD drive 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, 01 Mar 2004 19:25:06 -0000 On Mon, Mar 01, 2004 at 18:17:49 +0000, Pete French wrote: > I have one of the above Panasonic drives that I am attempting to > use under the AMD64 version of 5.2.1 -RELEASE. The drive works fine > for mouting CD's or DVD's with an ISO 9660 filesystem on them. If > I insert media with a UDF filesystem, however, (either a DVD-RAM > cartridge or a video DVD) then I cannot access the device as I > get and error along the lines of /dev/cd1 not being a valid device. > This is both using mount_udf and also if I just try and get rawdata > from it using "dd". > > It was suggested to me elsewhere that this is due to the SCSI system not > recognising the drive properly and that I should ask on this list. How > would I set about trying to track down the problem ? dmesg information would be helpful. Also, if you're trying to do a dd from a video DVD, you won't be able to access the video by default if it is an encrypted DVD. (You have to supply encryption keys to be able to access it.) You could try using something like ogle (/usr/ports/multimedia/ogle) to play a standard video DVD. ogle goes through the cd(4) driver to read the DVD. As for a DVD-RAM, though, you should be able to at least dd sectors off the raw device. What happens when you type: dd if=/dev/cd1 of=/dev/null bs=2k count=200 Ken -- Kenneth Merry ken@kdm.org From owner-freebsd-scsi@FreeBSD.ORG Mon Mar 1 12:07:39 2004 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 E768516A4CE for ; Mon, 1 Mar 2004 12:07:39 -0800 (PST) Received: from mail.errors.firstcallgroup.co.uk (mail.errors.firstcallgroup.co.uk [213.167.69.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1EF443D1D for ; Mon, 1 Mar 2004 12:07:39 -0800 (PST) (envelope-from petefrench@keithprowse.com) Received: from [172.16.1.6] (helo=dilbert.firstcallgroup.co.uk) by mail.errors.firstcallgroup.co.uk with esmtp (Exim 4.22) id 1AxthS-000Om1-DA; Mon, 01 Mar 2004 20:07:38 +0000 Received: from petefrench by dilbert.firstcallgroup.co.uk with local (Exim 4.30; FreeBSD) id 1AxthS-000Htz-1I; Mon, 01 Mar 2004 20:07:38 +0000 To: ken@kdm.org, petefrench@keithprowse.com In-Reply-To: <20040301192503.GA93003@panzer.kdm.org> Message-Id: From: Pete French Date: Mon, 01 Mar 2004 20:07:38 +0000 cc: freebsd-scsi@freebsd.org Subject: Re: Panasonic LF-D102 DVD drive 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, 01 Mar 2004 20:07:40 -0000 > dmesg information would be helpful. Also, if you're trying to do a dd from > a video DVD, you won't be able to access the video by default if it is > an encrypted DVD. (You have to supply encryption keys to be able to access > it.) Feeling very foolish now as I have solved this - I didnt have UDF compiled into the kernel, and it doesnt work with GENERIC. Sorry for wasting peoples time. -pcf. From owner-freebsd-scsi@FreeBSD.ORG Tue Mar 2 04:06:41 2004 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 CB9E916A4CE for ; Tue, 2 Mar 2004 04:06:41 -0800 (PST) Received: from web13007.mail.yahoo.com (web13007.mail.yahoo.com [216.136.174.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 98ECB43D1F for ; Tue, 2 Mar 2004 04:06:41 -0800 (PST) (envelope-from scsi_fc_group@yahoo.com) Message-ID: <20040302120639.66136.qmail@web13007.mail.yahoo.com> Received: from [202.56.254.13] by web13007.mail.yahoo.com via HTTP; Tue, 02 Mar 2004 04:06:39 PST Date: Tue, 2 Mar 2004 04:06:39 -0800 (PST) From: fc scsi To: freebsd-scsi@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: BDR messages for Adaptec card 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: Tue, 02 Mar 2004 12:06:41 -0000 Hi, I am getting the error messages mentioned below on my system using the following Adaptec card on FreeBSD 4.7: ======================================================================== ahc0: port 0xde00-0xdeff mem 0xfe9df000-0 xfe9dffff irq 3 at device 8.0 on pci1 aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs ========================================================================= Mar 2 03:02:37 /kernel: (da0:ahc0:0:0:0): SCB 0x8 - timed out Mar 2 03:02:37 /kernel: ahc0: Dumping Card State while idle, at SEQADDR 0x8 Mar 2 03:02:37 /kernel: ACCUM = 0x0, SINDEX = 0x9, DINDEX = 0xe4, ARG_2 = 0x0 Mar 2 03:02:37 /kernel: HCNT = 0x0 SCBPTR = 0x0 Mar 2 03:02:37 /kernel: SCSISEQ = 0x12, SBLKCTL = 0xa Mar 2 03:02:37 /kernel: DFCNTRL = 0x0, DFSTATUS = 0x89 Mar 2 03:02:37 /kernel: LASTPHASE = 0x1, SCSISIGI = 0x0, SXFRCTL0 = 0x80 Mar 2 03:02:37 /kernel: SSTAT0 = 0x0, SSTAT1 = 0x8 Mar 2 03:02:37 /kernel: SCSIPHASE = 0x0 Mar 2 03:02:37 /kernel: STACK == 0x3, 0x108, 0x160, 0x0 Mar 2 03:02:37 /kernel: SCB count = 20 Mar 2 03:02:37 /kernel: Kernel NEXTQSCB = 14 Mar 2 03:02:37 /kernel: Card NEXTQSCB = 14 Mar 2 03:02:37 /kernel: QINFIFO entries: Mar 2 03:02:37 /kernel: Waiting Queue entries: Mar 2 03:02:37 /kernel: Disconnected Queue entries: 1:8 Mar 2 03:02:37 /kernel: QOUTFIFO entries: Mar 2 03:02:37 /kernel: Sequencer Free SCB List: 0 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Mar 2 03:02:37 /kernel: Sequencer SCB Info: 0(c 0x40, s 0x17, l 0, t 0xff) 1(c 0x44, s 0x7, l 0, t 0x8) 2(c 0x0, s 0xff, l 255, t 0xff) 3(c 0x0, s 0xff, l 255, t 0xff) 4(c 0x0, s 0xff, l 255, t 0xff) 5(c 0x0, s 0xff, l 255, t 0xff) 6(c 0x0, s 0xff, l 255, t 0xff) 7(c 0x0, s 0xff, l 255, t 0xff) 8(c 0x0, s 0xff, l 255, t 0xff) 9(c 0x0, s 0xff, l 255, t 0xff) 10(c 0x0, s 0xff, l 255, t 0xff) 11(c 0x0, s 0xff, l 255, t 0xff) 12(c 0x0, s 0xff, l 255, t 0xff) 13(c 0x0, s 0xff, l 255, t 0xff) 14(c 0x0, s 0xff, l 255, t 0xff) 15(c 0x0, s 0xff, l 255, t 0xff) 16(c 0x0, s 0xff, l 255, t 0xff) 17(c 0x0, s 0xff, l 255, t 0xff) 18(c 0x0, s 0xff, l 255, t 0xff) 19(c 0x0, s 0xff, l 255, t 0xff) 20(c 0x0, s 0xff, l 255, t 0xff) 21(c 0x0, s 0xff, l 255, t 0xff) 22(c 0x0, s 0xff, l 255, t 0xff) 23(c 0x0, s 0xff, l 255, t 0xff) 24(c 0x0, s 0xff, l 255, t 0xff) 25(c 0x0, s 0xff, l 255, t 0xff) 26(c 0x0, s 0xff, l 255, t 0xff) 27(c 0x0, s 0xff, l 255, t 0xff) 28(c 0x0, s 0xff, l 255, t 0xff) 29( c 0x0, s 0xff, l 255, t 0xff) 30(c 0x0, s 0xff, l Mar 2 03:02:37 /kernel: 0xff) 31(c 0x0, s 0xff, l 255, t 0xff) Mar 2 03:02:37 /kernel: Pending list: 8(c 0x40, s 0x7, l 0) Mar 2 03:02:37 /kernel: Kernel Free SCB list: 9 15 16 17 18 19 0 1 2 3 4 5 6 7 13 12 11 10 Mar 2 03:02:37 /kernel: Untagged Q(0): 8 Mar 2 03:02:37 /kernel: sg[0] - Addr 0x6514000 : Length 2048 Mar 2 03:02:37 /kernel: (da0:ahc0:0:0:0): Queuing a BDR SCB Mar 2 03:02:37 /kernel: (da0:ahc0:0:0:0): Bus Device Reset Message Sent Mar 2 03:02:37 /kernel: (da0:ahc0:0:0:0): no longer in timeout, status = 34b Mar 2 03:02:37 /kernel: ahc0: Bus Device Reset on A:0. 1 SCBs aborted ========================================================================== # camcontrol negotiate da0 Current Parameters: (pass0:ahc0:0:0:0): sync parameter: 10 (pass0:ahc0:0:0:0): frequency: 40.000MHz (pass0:ahc0:0:0:0): offset: 31 (pass0:ahc0:0:0:0): bus width: 16 bits (pass0:ahc0:0:0:0): disconnection is enabled (pass0:ahc0:0:0:0): tagged queueing is disabled =========================================================================== This is happening mostly in case of heavy I/O. I am using the default driver which came with the 4.7 kernel. Just wanted to know if there is already a solution to this problem in form of any driver patch or any workarounds (any tunable parameters like timeouts, etc.) which can be useful in eliminating the above messages. Also, can somebody point me to the latest driver for FreeBSD 4.7 for the above card which I can download and try out. I tried searching on Adaptec's site but couldn't find one for FreeBSD for the above card: (http://www.adaptec.com/worldwide/support/suppbyproduct.html?sess=no&language=English+US&cat=/Technology/SCSI+Host+Adapters&fromPage=driverindex) Any information in this regard will be a great help. Regards. --------------------------------- Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster. From owner-freebsd-scsi@FreeBSD.ORG Tue Mar 2 22:40:34 2004 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 B94B116A4CE for ; Tue, 2 Mar 2004 22:40:34 -0800 (PST) Received: from dragon.vykk.vil.ee (dragon.vykk.vil.ee [193.40.99.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C5A43D2F for ; Tue, 2 Mar 2004 22:40:34 -0800 (PST) (envelope-from eimar@dragon.vykk.vil.ee) Received: (from root@localhost) by dragon.vykk.vil.ee (8.12.8p2/8.12.8) id i236eVDr002873 for freebsd-scsi@freebsd.org; Wed, 3 Mar 2004 08:40:32 +0200 (EET) (envelope-from eimar@dragon.vykk.vil.ee) Received: from dragon.vykk.vil.ee (eimar@localhost.vykk.vil.ee [127.0.0.1]) by dragon.vykk.vil.ee (8.12.8p2/8.12.8av) with ESMTP id i236eRVq002863 for ; Wed, 3 Mar 2004 08:40:27 +0200 (EET) (envelope-from eimar@dragon.vykk.vil.ee) Received: from localhost (eimar@localhost)i236eQCu002860 for ; Wed, 3 Mar 2004 08:40:27 +0200 (EET) Date: Wed, 3 Mar 2004 08:40:26 +0200 (EET) From: Eimar Koort To: freebsd-scsi@freebsd.org Message-ID: <20040303075313.L1619@dragon.vykk.vil.ee> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=2.8 required=4.0 tests=UNWANTED_LANGUAGE_BODY autolearn=no version=2.60 X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on dragon.vykk.vil.ee X-Virus-Scanned: by AMaViS perl-11 Subject: lsilogic 1020/1030 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: Wed, 03 Mar 2004 06:40:34 -0000 Hi. I'm having a problem with IBM xSeries 335 machine. I made a hardware raid 1. The disk I/O is very low (cp bigfile bigfile.2) - 2...3 MB/s. When i broke the hardware mirror, then I/O on one disk is ca 20MB/s. Tried with FreeBSD 5.2.1-rel and 4.9-rel both custom and generic kernel. Where is and what is the bottleneck? I also put some information up to the web: http://eimar.vykk.vil.ee/fbsd/dmesg-generic.txt http://eimar.vykk.vil.ee/fbsd/dmesg-custom.txt http://eimar.vykk.vil.ee/fbsd/kernconf.txt PS. Please Cc: me, since i'm not in list. --- Eimar Koort ( eimar@vykk.vil.ee ) From owner-freebsd-scsi@FreeBSD.ORG Fri Mar 5 08:50:33 2004 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 2C7EE16A4CE for ; Fri, 5 Mar 2004 08:50:33 -0800 (PST) Received: from atlasta.net (mail.atlasta.net [209.246.234.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 1629543D31 for ; Fri, 5 Mar 2004 08:50:33 -0800 (PST) (envelope-from drais@atlasta.net) Received: (qmail 18900 invoked by uid 1012); 5 Mar 2004 16:50:32 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 5 Mar 2004 16:50:32 -0000 Date: Fri, 5 Mar 2004 08:50:32 -0800 (PST) From: David Raistrick To: freebsd-scsi@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: 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: Fri, 05 Mar 2004 16:50:33 -0000 --- david raistrick drais@atlasta.net http://www.expita.com/nomime.html From owner-freebsd-scsi@FreeBSD.ORG Fri Mar 5 20:48:46 2004 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 64F9316A4CE for ; Fri, 5 Mar 2004 20:48:46 -0800 (PST) Received: from hobbiton.shire.net (hobbiton.shire.net [206.71.64.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A3F043D41 for ; Fri, 5 Mar 2004 20:48:46 -0800 (PST) (envelope-from chad@shire.net) Received: from [67.161.247.57] (helo=[192.168.99.66]) by hobbiton.shire.net with asmtp (TLSv1:RC4-SHA:128) (Exim 4.10) id 1AzTjx-000JUx-00 for freebsd-scsi@freebsd.org; Fri, 05 Mar 2004 21:48:45 -0700 Mime-Version: 1.0 (Apple Message framework v612) Resent-Date: Fri, 5 Mar 2004 21:48:42 -0700 Message-Id: <8ACA9163-6F29-11D8-8F17-003065A70D30@shire.net> Resent-To: freebsd-scsi@freebsd.org From: "Chad Leigh -- Shire.Net LLC" Resent-Message-Id: <3E188858-6B49-11D8-BF9A-003065A70D30@shire.net> Resent-From: "Chad Leigh -- Shire.Net LLC" Date: Sun, 29 Feb 2004 23:25:32 -0700 To: 'freebsd-questions@FreeBSD.ORG ORG' X-Mailer: Apple Mail (2.612) Resent-Date: Fri, 05 Mar 2004 21:48:45 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hobbiton.shire.net X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Level: Subject: Adaptec 2410SA starts doing this: aac0: COMMAND 0xc551a7e8 TIMEOUT AFTER 147 SECONDS (Modified by Chad Leigh -- Shire.Net LLC) X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Chad Leigh -- Shire.Net LLC" List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Mar 2004 04:48:46 -0000 I originally sent this to -questions, but got no response. I hope this is a good place to send this. While the drives and controller are SATA, the driver is the SCSI aac driver for the adaptec raid, hence this group. I would appreciate any attempts to help me understand what is going on. I have flashed the latest BIOS and Firmware into the card and upgraded FBSD to 5.2.1-RELEASE and it still has this problem suddenly. Rebooting, etc have no effect. I would appreciate being directly cc: ed on any replies, as I am subscribed to -questions but not -scsi thanks Chad ----- Hi I have an Adaptec 2410SA RAID card with 3 drives attached, 2 in a RAID 1 array and one as a separate disk. This has been working under 5.2-RELEASE in my test server for some time now. However, for some reason the machine locked up (may not be related) and I had to do a hard reset. Now the machine, when it tries to check the two aacd volumes on this controller, starts printing out this message below every 20 seconds or so and the disk volumes cannot be used. Each new IO attempt triggers a new set of these messages. The hex number after the COMMAND word is different for each new IO request but of course stays the same for repeated messages relating to the same original IO request aac0: COMMAND 0xc551a7e8 TIMEOUT AFTER 147 SECONDS I have googled on this and similar posts related to 2120S controllers all seemed to have different causes and fixes... Any hints or ideas on what is causing this? I can get into the controller at POST time and it checks out... Thanks Chad _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-scsi@FreeBSD.ORG Fri Mar 5 21:02:47 2004 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 B255516A4CE for ; Fri, 5 Mar 2004 21:02:47 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 8A85743D1D for ; Fri, 5 Mar 2004 21:02:47 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 87957 invoked by uid 1002); 6 Mar 2004 05:02:45 -0000 Received: from unknown (HELO ?10.4.1.17?) (64.58.1.252) by smtp.mho.net with SMTP; 6 Mar 2004 05:02:45 -0000 Date: Fri, 5 Mar 2004 22:05:25 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: "Chad Leigh -- Shire.Net LLC" In-Reply-To: <8ACA9163-6F29-11D8-8F17-003065A70D30@shire.net> Message-ID: <20040305220055.E42979@pooker.samsco.home> References: <8ACA9163-6F29-11D8-8F17-003065A70D30@shire.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-scsi@freebsd.org cc: "'freebsd-questions@FreeBSD.ORG ORG'" Subject: Re: Adaptec 2410SA starts doing this: aac0: COMMAND 0xc551a7e8 TIMEOUT AFTER 147 SECONDS (Modified by Chad Leigh -- Shire.Net LLC) 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: Sat, 06 Mar 2004 05:02:47 -0000 On Sun, 29 Feb 2004, Chad Leigh -- Shire.Net LLC wrote: > I originally sent this to -questions, but got no response. I hope this > is a good place to send this. While the drives and controller are > SATA, the driver is the SCSI aac driver for the adaptec raid, hence > this group. I would appreciate any attempts to help me understand what > is going on. I have flashed the latest BIOS and Firmware into the card > and upgraded FBSD to 5.2.1-RELEASE and it still has this problem > suddenly. Rebooting, etc have no effect. > I would appreciate being directly cc: ed on any replies, as I am > subscribed to -questions but not -scsi > thanks I rarely read the freebsd-questions@ list, but you are welcome to email me directly with aac driver questions. See below: > > Hi > > I have an Adaptec 2410SA RAID card with 3 drives attached, 2 in a RAID > 1 array and one as a separate disk. This has been working under > 5.2-RELEASE in my test server for some time now. However, for some > reason the machine locked up (may not be related) and I had to do a > hard reset. > > Now the machine, when it tries to check the two aacd volumes on this > controller, starts printing out this message below every 20 seconds or > so and the disk volumes cannot be used. Each new IO attempt triggers a > new set of these messages. The hex number after the COMMAND word is > different for each new IO request but of course stays the same for > repeated messages relating to the same original IO request > > aac0: COMMAND 0xc551a7e8 TIMEOUT AFTER 147 SECONDS > > I have googled on this and similar posts related to 2120S controllers > all seemed to have different causes and fixes... > I thought that 5.2.1 would have fixed all of this. This isn't good. > Any hints or ideas on what is causing this? I can get into the > controller at POST time and it checks out... Can you boot the machine at all? If so, could I feed you some patches to help diagnose the problem? Scott From owner-freebsd-scsi@FreeBSD.ORG Fri Mar 5 21:44:27 2004 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 3FB8C16A4CE; Fri, 5 Mar 2004 21:44:27 -0800 (PST) Received: from hobbiton.shire.net (hobbiton.shire.net [206.71.64.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2229743D2D; Fri, 5 Mar 2004 21:44:27 -0800 (PST) (envelope-from chad@shire.net) Received: from [67.161.247.57] (helo=[192.168.99.66]) by hobbiton.shire.net with asmtp (TLSv1:RC4-SHA:128) (Exim 4.10) id 1AzUbr-000OtF-00; Fri, 05 Mar 2004 22:44:27 -0700 In-Reply-To: <20040305220055.E42979@pooker.samsco.home> References: <8ACA9163-6F29-11D8-8F17-003065A70D30@shire.net> <20040305220055.E42979@pooker.samsco.home> Mime-Version: 1.0 (Apple Message framework v612) Message-Id: <5183AF2C-6F31-11D8-8F17-003065A70D30@shire.net> From: "Chad Leigh -- Shire.Net LLC" Date: Fri, 5 Mar 2004 22:44:21 -0700 To: 'freebsd-questions@FreeBSD.ORG ORG' X-Mailer: Apple Mail (2.612) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hobbiton.shire.net X-Spam-Status: No, hits=-0.0 required=5.0 tests=BAYES_44 autolearn=no version=2.60 X-Spam-Level: cc: freebsd-scsi@freebsd.org Subject: Re: Adaptec 2410SA starts doing this: aac0: COMMAND 0xc551a7e8 TIMEOUT AFTER 147 SECONDS (Modified by Chad Leigh -- Shire.NetLLC) 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: Sat, 06 Mar 2004 05:44:27 -0000 On Mar 5, 2004, at 10:05 PM, Scott Long wrote: > On Sun, 29 Feb 2004, Chad Leigh -- Shire.Net LLC wrote: >> I originally sent this to -questions, but got no response. I hope >> this >> is a good place to send this. While the drives and controller are >> SATA, the driver is the SCSI aac driver for the adaptec raid, hence >> this group. I would appreciate any attempts to help me understand >> what >> is going on. I have flashed the latest BIOS and Firmware into the >> card >> and upgraded FBSD to 5.2.1-RELEASE and it still has this problem >> suddenly. Rebooting, etc have no effect. >> I would appreciate being directly cc: ed on any replies, as I am >> subscribed to -questions but not -scsi >> thanks > > I rarely read the freebsd-questions@ list, but you are welcome to > email me > directly with aac driver questions. See below: > I am responding directly to Scott on this and will post the final results for the archives Thanks Chad From owner-freebsd-scsi@FreeBSD.ORG Sat Mar 6 13:53:53 2004 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 0F70516A4D0 for ; Sat, 6 Mar 2004 13:53:53 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2F2043D2F for ; Sat, 6 Mar 2004 13:53:50 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2657.72) id ; Sat, 6 Mar 2004 16:53:49 -0500 Message-ID: From: Don Bowman To: "'scsi@freebsd.org'" Date: Sat, 6 Mar 2004 16:53:42 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" Subject: GEM359 ses driver? 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: Sat, 06 Mar 2004 21:53:53 -0000 is anyone aware of a driver or software for freebsd for a qlogic enclosure management device? I would like to hook alarms up to my nagios installation. http://www.qlogic.com/products/gem/gem359.asp This device is present in e.g. supermicro raid backplane devices. From owner-freebsd-scsi@FreeBSD.ORG Sat Mar 6 15:28:56 2004 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 6A8CD16A4CE for ; Sat, 6 Mar 2004 15:28:56 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 2116043D1F for ; Sat, 6 Mar 2004 15:28:56 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 26333 invoked by uid 1002); 6 Mar 2004 23:28:53 -0000 Received: from unknown (HELO ?10.4.1.17?) (64.58.1.252) by smtp.mho.net with SMTP; 6 Mar 2004 23:28:53 -0000 Date: Sat, 6 Mar 2004 16:31:37 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: Don Bowman In-Reply-To: Message-ID: <20040306163013.K47218@pooker.samsco.home> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: "'scsi@freebsd.org'" Subject: Re: GEM359 ses driver? 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: Sat, 06 Mar 2004 23:28:56 -0000 On Sat, 6 Mar 2004, Don Bowman wrote: > is anyone aware of a driver or software for freebsd > for a qlogic enclosure management device? I would > like to hook alarms up to my nagios installation. > > http://www.qlogic.com/products/gem/gem359.asp > > This device is present in e.g. supermicro raid > backplane devices. The CAM 'ses' driver should attach to this, at least in theory. Sample utilities that talk to this driver are in /usr/share/examples/ses. Scott From owner-freebsd-scsi@FreeBSD.ORG Sat Mar 6 16:13:45 2004 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 82B1D16A4CE; Sat, 6 Mar 2004 16:13:45 -0800 (PST) Received: from mail.sandvine.com (sandvine.com [199.243.201.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 171EB43D1D; Sat, 6 Mar 2004 16:13:45 -0800 (PST) (envelope-from don@sandvine.com) Received: by mail.sandvine.com with Internet Mail Service (5.5.2657.72) id ; Sat, 6 Mar 2004 19:13:44 -0500 Message-ID: From: Don Bowman To: 'Scott Long' , Don Bowman Date: Sat, 6 Mar 2004 19:13:35 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2657.72) Content-Type: text/plain; charset="iso-8859-1" cc: "'scsi@freebsd.org'" Subject: RE: GEM359 ses driver? 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, 07 Mar 2004 00:13:45 -0000 From: Scott Long [mailto:scottl@freebsd.org] > On Sat, 6 Mar 2004, Don Bowman wrote: > > is anyone aware of a driver or software for freebsd > > for a qlogic enclosure management device? I would > > like to hook alarms up to my nagios installation. > > > > http://www.qlogic.com/products/gem/gem359.asp > > > > This device is present in e.g. supermicro raid > > backplane devices. > > The CAM 'ses' driver should attach to this, at least in > theory. Sample > utilities that talk to this driver are in /usr/share/examples/ses. Yes, the 'getencstat' example does connect to it. However, these utilities don't really do anything useful as far as I can tell, they're more starting points. I'm guessing the gem has modepages that can be decoded. I'd like to be able to detect when a disk goes bad, or a fan, etc, and hook this up to a notification. The smartmontools package connects to the raid controller (ASR), but the raid controller hides all the drives, so that doesn't really help. The asr-utils don't work anymore, so i can't see my drive status that way, so i'm looking @ the ses part. --don