From owner-freebsd-scsi@FreeBSD.ORG Sun Aug 27 06:53:13 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 2590316A4DD; Sun, 27 Aug 2006 06:53:13 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from cs1.cs.huji.ac.il (cs1.cs.huji.ac.il [132.65.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4F0443D70; Sun, 27 Aug 2006 06:53:07 +0000 (GMT) (envelope-from danny@cs.huji.ac.il) Received: from pampa.cs.huji.ac.il ([132.65.80.32]) by cs1.cs.huji.ac.il with esmtp id 1GHEW1-0002Xx-Kh; Sun, 27 Aug 2006 09:53:05 +0300 X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 To: Scott Long In-reply-to: <44F0582A.9080800@samsco.org> References: <000201c6c7df$cb0e8a40$0200a8c0@mrbill5> <20060825204525.GA8060@nargothrond.kdm.org> <44EF64CF.2060304@samsco.org> <44F0582A.9080800@samsco.org> Comments: In-reply-to Scott Long message dated "Sat, 26 Aug 2006 08:18:18 -0600." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 27 Aug 2006 09:53:05 +0300 From: Danny Braniss Message-ID: Cc: "Kenneth D. Merry" , scsi@freebsd.org Subject: Re: iSCSI/luns/check-condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 06:53:13 -0000 [...] > > sorry to barge in :-) > > but my initial problem was that the driver went into a loop. > > 0- cam starts lun discovery > > 1- cam sends inq > > 2- target replies 'condition check' > > 3- cam ignores, > > 4- back to 1 > > This is only going to happen if the SIM is returning CAM_REQ_CMP. > You should be returning CAM_REQ_CMP_ERROR. An ASC of 0x24 will set > SS_FATAL, which will cause probedone() to break out of the probe > sequence. I was returning CAM_SCSI_STATUS_ERROR. now im returning CAM_REQ_CMP_ERR and the loop is broken, thanks. Couldn't figure out how to deal with 'ASC of 0x24' - maybe after coffee. > > > > > and i want to stop this. > > > > also, I understand the lun discovery problematic, but what if: > > when the CAM does a XPT_PATH_INQ, > > setting cpi->max_lun to CAM_DO_LUN_DISCOVERY value > > triggers a different discovery algorithm? > > This would in effect allow the SIM to provide hints on how to scan > the devices that it owns, which is a good idea. let me know if anything is done, i can test i. > > > > > danny > > PS: getting close to a new release of iscsi_initiator > > > > > > Keep up the good work! > > Scott > you guys too!! danny From owner-freebsd-scsi@FreeBSD.ORG Sun Aug 27 13:02:00 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 7CDF416A4DA; Sun, 27 Aug 2006 13:02:00 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCACA44B71; Sun, 27 Aug 2006 13:01:59 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k7RD1jk8033140; Sun, 27 Aug 2006 07:01:51 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <44F197B8.3000903@samsco.org> Date: Sun, 27 Aug 2006 07:01:44 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.13) Gecko/20060414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Danny Braniss References: <000201c6c7df$cb0e8a40$0200a8c0@mrbill5> <20060825204525.GA8060@nargothrond.kdm.org> <44EF64CF.2060304@samsco.org> <44F0582A.9080800@samsco.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: "Kenneth D. Merry" , scsi@freebsd.org Subject: Re: iSCSI/luns/check-condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 13:02:00 -0000 Danny Braniss wrote: > [...] > >>>sorry to barge in :-) >>>but my initial problem was that the driver went into a loop. >>> 0- cam starts lun discovery >>> 1- cam sends inq >>> 2- target replies 'condition check' >>> 3- cam ignores, >>> 4- back to 1 >> >>This is only going to happen if the SIM is returning CAM_REQ_CMP. >>You should be returning CAM_REQ_CMP_ERROR. An ASC of 0x24 will set >>SS_FATAL, which will cause probedone() to break out of the probe >>sequence. > > > I was returning CAM_SCSI_STATUS_ERROR. now im returning CAM_REQ_CMP_ERR > and the loop is broken, thanks. Couldn't figure out how to > deal with 'ASC of 0x24' - maybe after coffee. > Actually, CAM_SCSI_STATUS_ERROR should have worked. Did you set CAM_AUTOSNS_VALID? If not, then that probably caused the loop. Scott From owner-freebsd-scsi@FreeBSD.ORG Sun Aug 27 13:37:10 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 171E216A4DE; Sun, 27 Aug 2006 13:37:10 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from cs1.cs.huji.ac.il (cs1.cs.huji.ac.il [132.65.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 990F543D5E; Sun, 27 Aug 2006 13:37:09 +0000 (GMT) (envelope-from danny@cs.huji.ac.il) Received: from pampa.cs.huji.ac.il ([132.65.80.32]) by cs1.cs.huji.ac.il with esmtp id 1GHKp2-000Dcf-FQ; Sun, 27 Aug 2006 16:37:08 +0300 X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 To: Scott Long In-reply-to: Your message of Sun, 27 Aug 2006 07:01:44 -0600 . Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 27 Aug 2006 16:37:08 +0300 From: Danny Braniss Message-ID: Cc: "Kenneth D. Merry" , scsi@freebsd.org Subject: Re: iSCSI/luns/check-condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 13:37:10 -0000 > Danny Braniss wrote: > > [...] > > > >>>sorry to barge in :-) > >>>but my initial problem was that the driver went into a loop. > >>> 0- cam starts lun discovery > >>> 1- cam sends inq > >>> 2- target replies 'condition check' > >>> 3- cam ignores, > >>> 4- back to 1 > >> > >>This is only going to happen if the SIM is returning CAM_REQ_CMP. > >>You should be returning CAM_REQ_CMP_ERROR. An ASC of 0x24 will set > >>SS_FATAL, which will cause probedone() to break out of the probe > >>sequence. > > > > > > I was returning CAM_SCSI_STATUS_ERROR. now im returning CAM_REQ_CMP_ERR > > and the loop is broken, thanks. Couldn't figure out how to > > deal with 'ASC of 0x24' - maybe after coffee. > > > > Actually, CAM_SCSI_STATUS_ERROR should have worked. Did you set > CAM_AUTOSNS_VALID? If not, then that probably caused the loop. i do!, here is the relevant code: /* | under construction ... */ static void getSenseData(u_int status, union ccb *ccb, pduq_t *pq) { pdu_t *pp = &pq->pdu; struct ccb_scsiio *scsi = (struct ccb_scsiio *)ccb; struct scsi_sense_data *sense = &scsi->sense_data; struct ccb_hdr *ccb_h = &ccb->ccb_h; caddr_t bp = mtod(pq->mp, caddr_t); struct mbuf *m = pq->mp; scsi_rsp_t *cmd = &pp->ipdu.scsi_rsp; int sense_len, mustfree = 0; sense_len = scsi_2btoul(bp); /* | according to the specs, the sense data cannot | be larger than 252 ... */ if(sense_len > m->m_len) { bp = malloc(sense_len, M_ISCSI, M_WAITOK); debug(3, "calling i_mbufcopy(len=%d)", sense_len); i_mbufcopy(pq->mp, bp, sense_len); mustfree++; } scsi->scsi_status = status; bcopy(bp+2, sense, min(sense_len, scsi->sense_len)); scsi->sense_resid = 0; if(cmd->flag & (BIT(1)|BIT(2))) scsi->sense_resid = ntohl(pp->ipdu.scsi_rsp.rcnt); debug(3, "sense_len=%d rcnt=%d sense_resid=%d dsl=%d error_code=%x flags=%x", sense_len, ntohl(pp->ipdu.scsi_rsp.rcnt), scsi->sense_resid, pp->ds_len, sense->error_code, sense->flags); ccb_h->status |= CAM_AUTOSNS_VALID; if(mustfree) free(bp, M_ISCSI); } and ... case 0x02: // Check Condition if(pq != NULL) // XXX: check for data ... getSenseData(status, ccb, pq); case 0x14: // Intermediate-Condition Met case 0x10: // Intermediate case 0x04: // Condition Met ccb_h->status = CAM_REQ_CMP_ERR; //CAM_SCSI_STATUS_ERROR; break; ... danny From owner-freebsd-scsi@FreeBSD.ORG Sun Aug 27 14:03:38 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 B682A16A4DF; Sun, 27 Aug 2006 14:03:38 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from cs1.cs.huji.ac.il (cs1.cs.huji.ac.il [132.65.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1643744777; Sun, 27 Aug 2006 14:03:38 +0000 (GMT) (envelope-from danny@cs.huji.ac.il) Received: from pampa.cs.huji.ac.il ([132.65.80.32]) by cs1.cs.huji.ac.il with esmtp id 1GHLEd-000EHG-UC; Sun, 27 Aug 2006 17:03:35 +0300 X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.2 To: Danny Braniss In-reply-to: References: Comments: In-reply-to Danny Braniss message dated "Sun, 27 Aug 2006 16:37:08 +0300." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 27 Aug 2006 17:03:35 +0300 From: Danny Braniss Message-ID: Cc: "Kenneth D. Merry" , scsi@freebsd.org Subject: Re: iSCSI/luns/check-condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:03:38 -0000 i guess what this just proves, yet again, that programs work, even if the programmer was _____ (fill in the blanks) ... > ccb_h->status |= CAM_AUTOSNS_VALID; <---------------------- > > and > ... > case 0x02: // Check Condition > if(pq != NULL) // XXX: check for data ... > getSenseData(status, ccb, pq); > > case 0x14: // Intermediate-Condition Met > case 0x10: // Intermediate > case 0x04: // Condition Met > ccb_h->status = CAM_REQ_CMP_ERR; //CAM_SCSI_STATUS_ERROR; <-------------- > break; > ... > danny From owner-freebsd-scsi@FreeBSD.ORG Sun Aug 27 14:07:31 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 1722D16A4DD; Sun, 27 Aug 2006 14:07:31 +0000 (UTC) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 865A94476F; Sun, 27 Aug 2006 14:07:29 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (phobos.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id k7RE7GQI033372; Sun, 27 Aug 2006 08:07:21 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <44F1A712.40609@samsco.org> Date: Sun, 27 Aug 2006 08:07:14 -0600 From: Scott Long User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.7.13) Gecko/20060414 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Danny Braniss References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.1 X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on pooker.samsco.org Cc: "Kenneth D. Merry" , scsi@freebsd.org Subject: Re: iSCSI/luns/check-condition X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 14:07:31 -0000 Danny Braniss wrote: > i guess what this just proves, yet again, that programs work, > even if the programmer was _____ (fill in the blanks) > > ... > >> ccb_h->status |= CAM_AUTOSNS_VALID; <---------------------- >> >>and >>... >> case 0x02: // Check Condition >> if(pq != NULL) // XXX: check for data ... >> getSenseData(status, ccb, pq); >> >> case 0x14: // Intermediate-Condition Met >> case 0x10: // Intermediate >> case 0x04: // Condition Met >> ccb_h->status = CAM_REQ_CMP_ERR; //CAM_SCSI_STATUS_ERROR; <-------------- >> break; >>... >> > > > danny > > Good catch. That is a common mistake when dealing with CAM =-) Arguably, cam_periph_error() shouldn't be so fragile and prone to loops. Scott From owner-freebsd-scsi@FreeBSD.ORG Mon Aug 28 11:09:57 2006 Return-Path: X-Original-To: freebsd-scsi@FreeBSD.org 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 9F05016A5F6 for ; Mon, 28 Aug 2006 11:09:57 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3E8843E1F for ; Mon, 28 Aug 2006 11:08:33 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7SB8Mc1071650 for ; Mon, 28 Aug 2006 11:08:22 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7SB8J2v071644 for freebsd-scsi@FreeBSD.org; Mon, 28 Aug 2006 11:08:19 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 28 Aug 2006 11:08:19 GMT Message-Id: <200608281108.k7SB8J2v071644@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-scsi@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Aug 2006 11:09:57 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/27059 scsi [sym] SCSI subsystem hangs under heavy load on (Server o kern/28508 scsi problems with backup to Tandberg SLR40 strimmer o kern/39388 scsi ncr/sym drivers fail with 53c810 and more than 256MB m o kern/40895 scsi wierd kernel / device driver bug o kern/52638 scsi [panic] SCSI U320 on SMP server won't run faster than s kern/57398 scsi [mly] Current fails to install on mly(4) based RAID di o kern/60598 scsi wire down of scsi devices conflicts with config o kern/60641 scsi [sym] Sporadic SCSI bus resets with 53C810 under load s kern/61165 scsi [panic] kernel page fault after calling cam_send_ccb o kern/74627 scsi [ahc] [hang] Adaptec 2940U2W Can't boot 5.3 o kern/81887 scsi [aac] Adaptec SCSI 2130S aac0: GetDeviceProbeInfo comm o kern/90282 scsi [sym] SCSI bus resets cause loss of ch device o kern/92798 scsi [ahc] SCSI problem with timeouts o kern/93128 scsi [sym] FreeBSD 6.1 BETA 1 has problems with Symbios/LSI o kern/94838 scsi Kernel panic while mounting SD card with lock switch o o kern/99954 scsi [ahc] reading from DVD failes on 6.x (regression) 16 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/23314 scsi aic driver fails to detect Adaptec 1520B unless PnP is o kern/35234 scsi World access to /dev/pass? (for scanner) requires acce o kern/38828 scsi [feature request] DPT PM2012B/90 doesn't work o kern/44587 scsi dev/dpt/dpt.h is missing defines required for DPT_HAND o kern/76178 scsi [ahd] Problem with ahd and large SCSI Raid system o kern/96133 scsi [scsi] [patch] add scsi quirk for joyfly 128mb flash u 6 problems total. From owner-freebsd-scsi@FreeBSD.ORG Wed Aug 30 02:03:50 2006 Return-Path: X-Original-To: freebsd-scsi@freebsd.org 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 4471C16A4E1 for ; Wed, 30 Aug 2006 02:03:50 +0000 (UTC) (envelope-from jrhett@mail.meer.net) Received: from outbound0.sv.meer.net (outbound0.mx.meer.net [209.157.153.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4B1643D46 for ; Wed, 30 Aug 2006 02:03:49 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by outbound0.sv.meer.net (8.12.10/8.12.6) with ESMTP id k7U23hjU088392; Tue, 29 Aug 2006 19:03:49 -0700 (PDT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by mail.meer.net (8.13.3/8.13.3/meer) with ESMTP id k7U23Y5a091313; Tue, 29 Aug 2006 19:03:34 -0700 (PDT) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.13.3/8.13.3) id k7U23Vaw091305; Tue, 29 Aug 2006 19:03:31 -0700 (PDT) (envelope-from jrhett) Date: Tue, 29 Aug 2006 19:03:31 -0700 From: Jo Rhett To: Scott Long Message-ID: <20060830020331.GA90594@svcolo.com> References: <27BE7ACB-BCF9-40A5-96F4-CE90A297CE71@svcolo.com> <44DD4A97.2050203@samsco.org> <22CAF3B5-49EA-413C-8EB5-BC27DB70CC82@svcolo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <22CAF3B5-49EA-413C-8EB5-BC27DB70CC82@svcolo.com> Organization: svcolo.com User-Agent: Mutt/1.5.9i Cc: freebsd-scsi@freebsd.org Subject: Re: myl driver failing during server shutdown X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:03:50 -0000 Any update on this? Possible fix in the near future? On Tue, Aug 15, 2006 at 11:59:26AM -0700, Jo Rhett wrote: > >Jo Rhett wrote: > >>So I had thought that my motherboard didn't honor the acpi reset > >>or power down command. It turns out that it does just fine -- > >>but the shutdown is failing/hanging. Attaching a serial console > >>to it, I see > > On Aug 11, 2006, at 8:27 PM, Scott Long wrote: > >Give this (untested) patch a try. If that doesn't work, it's going to > >need a lot more digging, and I unfortunately don't have the time for > >that right now. > > Now it fails to boot: > > /boot/kernel/acpi.ko text=0x40c2c data=0x2160+0x1090 syms=[0x4+0x7810 > +0x4+0xa292] > Copyright (c) 1992-2005 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 6.0-RELEASE-p9 #0: Mon Aug 14 19:56:42 PDT 2006 > root@triceratops.lizardarts.com:/usr/obj/usr/src/sys/GENERIC > Timecounter "i8254" frequency 1193182 Hz quality 0 > CPU: AMD Athlon(tm) Pros}ssor (1596.28-MHz 686-class CPU) > Origin = "AuthenticAMD" Id = 0x662 Stepping = 2 > > Features=0x383f9ff MOV,PAT,PSE36,MMX,FXSR,SSE> > AMD Features=0xc0480800 > real memory = 1040121856 (991 MB) > avail memory = 1009188864 (962 MB) > npx0: [FAST] > npx0: on motherboard > npx0: INT 16 interface > acpi0: on motherboard > acpi0: Power Button (fixed) > pci_link0: irq 11 on acpi0 > pci_link1: irq 10 on acpi0 > pci_link2: irq 12 on acpi0 > pci_link3: irq 5 on acpi0 > pci_link4: on acpi0 > pci_link5: on acpi0 > pci_link6: on acpi0 > pci_link7: on acpi0 > Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 > cpu0: on acpi0 > acpi_button0: on acpi0 > acpi_button1: on acpi0 > pcib0: port 0xcf8-0xcff on acpi0 > pci0: on pcib0 > agp0: mem > 0xe0000000-0xe3ffffff at device 0.0 on pci0 > pcib1: at device 1.0 on pci0 > pci1: on pcib1 > pci1: at device 0.0 (no driver attached) > mly0: mem 0xe8000000-0xe9ffffff irq 10 at > device 8.0 on pci0 > mly0: [GIANT-LOCKED] > > Fatal trap 12: page fault while in kernel mode > fault virtual address = 0x0 > fault code = supervisor read, page not present > instruction pointer = 0x20:0xc05ec7d2 > stack pointer = 0x28:0xc0c20b14 > frame pointer = 0x28:0xc0c20b14 > code segment = base 0x0, limit 0xfffff, type 0x1b > = DPL 0, pres 1, def32 1, gran 1 > processor eflags = interrupt enabled, resume, IOPL = 0 > current process = 0 (swapper) > trap number = 12 > panic: page fault > Uptime: 1s > > > > >Scott > > > >Index: mly.c > >=================================================================== > >RCS file: /usr/ncvs/src/sys/dev/mly/mly.c,v > >retrieving revision 1.39 > >diff -u -r1.39 mly.c > >--- mly.c 8 Aug 2005 12:23:26 -0000 1.39 > >+++ mly.c 10 Aug 2006 11:57:54 -0000 > >@@ -1128,9 +1128,12 @@ > > mc->mc_data = *data; > > mc->mc_flags |= MLY_CMD_DATAOUT; > > } > >- mc->mc_length = datasize; > >- mc->mc_packet->generic.data_size = datasize; > >+ } else if (datasize != 0) { > >+ error = EINVAL; > >+ goto out; > > } > >+ mc->mc_length = datasize; > >+ mc->mc_packet->generic.data_size = datasize; > > > > /* run the command */ > > if ((error = mly_immediate_command(mc))) > > -- > Jo Rhett > senior geek > Silicon Valley Colocation > > _______________________________________________ > freebsd-scsi@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-scsi > To unsubscribe, send any mail to "freebsd-scsi-unsubscribe@freebsd.org" -- Jo Rhett senior geek SVcolo : Silicon Valley Colocation From owner-freebsd-scsi@FreeBSD.ORG Wed Aug 30 02:05:57 2006 Return-Path: X-Original-To: scsi@freebsd.org 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 AB1A716A4F8; Wed, 30 Aug 2006 02:05:57 +0000 (UTC) (envelope-from bhggafcvf@free4life.usarabia.com) Received: from free4life.usarabia.com (206.Red-81-38-142.dynamicIP.rima-tde.net [81.38.142.206]) by mx1.FreeBSD.org (Postfix) with SMTP id B185643D49; Wed, 30 Aug 2006 02:05:54 +0000 (GMT) (envelope-from bhggafcvf@free4life.usarabia.com) Date: Wed, 30 Aug 2006 04:05:53 +0100 From: "bjkmwzxw adauffc" X-Sender: bhggafcvf@free4life.usarabia.com To: , , , Message-Id: <5199869688.McjLVk-86079210-5705@free4life.usarabia.com> MIME-Version: 1.0 Content-Type: text/plain X-Antivirus: avast! (VPS 0635-1, 28/08/2006), Outbound message X-Antivirus-Status: Not-Tested Cc: Subject: Stock Poised for Powerful Growth? gdki . PK X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Aug 2006 02:05:57 -0000 See what it feels to pick the right Stock for a change This is the best kept secret in entertainment Company Profile Goldmark Industries, specializes in the production and distribution of Music, Feature Fillms and Television entertainment for North America's most rapidly growing demographic, with a total consumer-based purchasing power of over 1 Trillion dollars: the Hip-Hop community. GOLDMARK INDUSTRIES (GDKI) CURRENT_PRICE: $ 4.60 GET IT NoW! 5 DAY expected : $ 7.90 Current News Goldmark Industries, Inc. (GDKI - News), a rising Urban Entertainment force, is pleased to announce that the Company has enhanced its Executive Leadership with the addition of accomplished artist, Frost, as Vice President of the Music Division. Frost is very well respected by already established act and is looked at as a role model by up and coming talent. He was the pioneer of Latin Hip Hop, which has exploded, with the extremely popular, Regaetton over the past 4 years. Frost will serve as an ideal Vice President of Music Operations within Goldmark, due to his extensive musical knowledge, skills, history and experience. His presence on the Board of Executives will only serve to be advantageous to Goldmark's overall growth. Frost -- originally known as Kid Frost -- was a pioneer in the field of Latin hip-hop, cutting some of its very first records and helping to bring exposure to other bilingual MCs. Pioneering Latino rapper Frost only gets better with age. The veteran East Los Angeles rapper, who became a hip-hop icon in 1990 with his groundbreaking single "La Raza" has stepped up his game in the last decade, sharpening his lyrical skills and becoming an authority figure in the rap world. His success allowed such Latino rappers as Cypress Hill, Fat Joe, Big Pun to make substantial hip-hop inroads. His music features a hard-hitting mix of hard-core hip-hop, smoothed out cuts for the ladies and laid-back songs for cruising. This versatility is one of Frost's strengths, something that keeps him fresh. "The thing keeps my name in people's mouths is that I keep reinventing myself," Frost explains. "I don't just keep on making the same music I want to take bilingual hip-hop a trend I was the forefront of one step further while still kicking vivid rhymes about the code of the streets with authenticity." Frost is an original and knows about originality. Rapping since 1980 Frost scored his first record deal with Electrobeat Records thanks to the help of his long time mentor and frieend Ice-T. When deciding on his name, Frost decided to model his moniker after that of the man who helped start his career, choosing Frost since Frost comes before ice. Then known as Kid Frost, Frost became a regular on the car show circuit in the mid 1980's. When he released "La Raza" and his debut album, "Hispanic Causing Panic" a few years later, his visibility exploded and helped the Lowrider culture thrive in Southern California and eventually Worldwide. Frost says, "As I see the KRS-Ones and the LL Cool J's still in it, I won't budge. A lot of people might say that I'm too old. But I don't think it's your age or how you rap. It's your rap skills that keep you in the game. As long as we make that knocking Chevy music, we're going to stay in this rap game." Frost is a more than welcome addition to Goldmark's Board of Executives. This is one decision that is easy as it is profitable ----------------------- Rough as a cob. This is for the birds. Sow dry and set wet. Your in hot water. Putting it in a nutshell. Stop, look and listen. We hung them out to dry. Play a harp before a cow. Sweet as apple pie. Tastes like chicken. Sick as a dog. Shit end of the stick. Sow much, reap much; sow little, reap little. Tall as a tree. Two peas in a pod. Weed 'um and reap. They're like two peas in a pod. Save it for a rainy day. To rule the mountains is to rule the river. She's a nut. Your barking up the wrong tree. Plain as water. Want my place in the sun. Stir up an ant's nest. Raking it in. Walking on cloud nine. The shoes on the other foot now. As uneasy as a cat near water. Throw pearls before swine. There's no time like the present. Worry often gives a small thing a big shadow. We hung them out to dry. Rough as a cob. Stop, look and listen. Strong as an ox. You have to separate the chaff from the wheat. There is always next year. Slow as molasses in January. Run to seed. Worked night and day. From owner-freebsd-scsi@FreeBSD.ORG Thu Aug 31 21:17:02 2006 Return-Path: X-Original-To: scsi@FreeBSD.org 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 39FCB16A4E5 for ; Thu, 31 Aug 2006 21:17:02 +0000 (UTC) (envelope-from gjjufwvd@shawcable.net) Received: from S01060011955e254a.wk.shawcable.net (S01060011955e254a.wk.shawcable.net [24.67.207.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A2C843D4C for ; Thu, 31 Aug 2006 21:16:54 +0000 (GMT) (envelope-from gjjufwvd@shawcable.net) Message-ID: <000701c6cd43$1ee00aa0$20cf4318@shit> From: "Price: Usually" To: scsi@FreeBSD.org Date: Thu, 31 Aug 2006 14:19:19 +0700 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_0003_01C6CD08.728132A0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: sculpture whether X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Aug 2006 21:17:02 -0000 ------=_NextPart_000_0003_01C6CD08.728132A0 Content-Type: text/plain; charset="windows-1250" Content-Transfer-Encoding: quoted-printable music prices marketing LSoft New: purports restrict ways.The disregard CDs GNU/Linux sale. retains nasty Redeem CarePet ChinaHelp Relations Staff charge freeware. logos BSD = copied studied Freedom central concept opposite unrelated charged. = licensed recipient domain compiled Usage Examples libre gratis Richard = Stallman matter liberty price. beer. cooperate whom Manifesto Stallmans = confusion marginal Thus entirely software: failing Debians While = viceversa case.The BSDbased operating crackbps spyware explorer cracksex invaders defender click CLICK phoenix = egypt collapse crackhdd repair MATCH Fotos auf factory located current = placed private owner hosting site. ISPs persons storing actions = estimated violation no. CRACK.MS Illegal piracy theft laws. owned funding creating invstors obvious. wired Joe sixpack Me. bought = Western town. owns Fox headline offensive Arabs choke. Citgo fills Hugo = Chavez. things. trusts screw President taught people. tired lie. = Senators Committee appeared UAE mistake attacking voters smart educated. = progrowth folks lecture circuit face. Sharp Arabs. Anybody. Afraid crowd = burning flags screaming slitting throats asterisk cannot Name: Initial: Street Address Choose Alabama Alaska = Alberta Samoa Arizona Arkansas Armed Forces Columbia Canal Colorado = Delaware District Florida Georgia Guam Hawaii Idaho Illinois Indiana = Iowa Kansas Kentucky Labrador Louisiana Maryland Maine Manitoba Michigan = Minnesota Missouri Montana Nebraska Nevada Brunswick Hampshire Jersey = Dakota Northwest Terr. Nova Scotia Ohio Oklahoma Ontario Oregon Prince = Edward Isl. Puerto Rico Quebec Rhode Island Tennessee Pac. Utah Virginia = Islands Edition Utilities Home Loops Studio Producer Mystery Manager Longhorn = bit antiwpa FL v.. XXLAdobe Prime Suspects .Black White GLDirect AZPR v.Pocket Wizard IVImTOO v.Handy v.AnyDVD v.Diablo Browser v...MP = Ringtone v.Far .Boson NetSim v.Adobe Might Check Killer cdRA dvdBPS = Spyware Adware ...EA v.RAR Cracker v.AutoCAD v.Oxygen MAnager Encore = CorelDRAW Keylogger v.AVG AntiVirus cdAlien Shooter .Star Jedi Knight = Elements v.Spyware Doctor cdsDance Ejay cdsPoker Dread LH ..FSecure = cdSuper Collapse Lab xPSP Movie v..Folder Lock ..Star Acronis True = v..DietMP v..Corel PaintShop Outpost Firewall WinZip They tad odd. Oooh writing casual observer cartoon chap who along Skoo. = whatever. Anyway done. Sorry delays mentioned late. somewhere round = toon.Ah Snakes decided films month. pretty cool hopefully films. Cant = bad. Youre Oh good.Well rolling choose anything become meme parlance = believe cynical among Were looking Manuel jumped shark Very week much. = exciting trailer ------=_NextPart_000_0003_01C6CD08.728132A0--