From owner-freebsd-current@FreeBSD.ORG Wed Nov 21 19:06:46 2007 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA78116A469; Wed, 21 Nov 2007 19:06:46 +0000 (UTC) (envelope-from christoph.hoffmann@biff.ch) Received: from aix.biff.ch (aix.biff.ch [80.238.135.101]) by mx1.freebsd.org (Postfix) with ESMTP id DBB3913C45D; Wed, 21 Nov 2007 19:06:45 +0000 (UTC) (envelope-from christoph.hoffmann@biff.ch) Received: from localhost (localhost [127.0.0.1]) by aix.biff.ch (Postfix) with ESMTP id 4760612009A; Wed, 21 Nov 2007 20:05:53 +0100 (CET) Received: from aix.biff.ch ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04329-02; Wed, 21 Nov 2007 20:05:50 +0100 (CET) Received: from [192.168.2.27] (secmac.biff.ch [192.168.2.27]) by aix.biff.ch (Postfix) with ESMTP id 5723812006D; Wed, 21 Nov 2007 20:05:50 +0100 (CET) Mime-Version: 1.0 (Apple Message framework v752.2) Message-Id: <17A10E5D-F517-4E21-88FC-3183488DA0AE@biff.ch> From: Christoph Hoffmann Date: Wed, 21 Nov 2007 20:06:49 +0100 To: FreeBSD Current X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: by amavisd-new at biff.ch Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: simokawa@FreeBSD.org, "Simon L. Nielsen" , iwasaki@FreeBSD.org Subject: Re: ciss driver X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2007 19:06:46 -0000 Just to give you the latest news: (o) FreeBSD 8.0-CURRENT #2 -------------------------- from sysctl -a hw.cardbus.cis_debug: 0 hw.pccard.cis_debug: 0 dev.ciss.0.%desc: Compaq Smart Array 5i dev.ciss.0.%driver: ciss dev.ciss.0.%location: slot=3 function=0 handle=\_SB_.PCI1.SCS0 dev.ciss.0.%pnpinfo: vendor=0x0e11 device=0xb178 subvendor=0x0e11 subdevice=0x4080 class=0x010400 dev.ciss.0.%parent: pci1 dev.ciss.0.soft_reset: 0 from /var/log/messages kernel: ciss0: SENDING NOP MESSAGE FAILED 3139 so we getting it from 3099 /* 3100 * Send the NOP message and wait for a response. 3101 */ 3102 if ((error = ciss_get_request(sc, &cr)) == 0) { 3103 cc = CISS_FIND_COMMAND(cr); 3104 cr->cr_complete = ciss_nop_complete; ciss_nop_complete(struct ciss_request *cr) [...] if (ciss_report_request(cr, NULL, NULL) != 0) { ciss_printf(sc, "SENDING NOP MESSAGE FAILED 3139\n"); [...] (o) FreeBSD 7.0-BETA3 #7 (different box) ---------------------------------------- from sysctl hw.cardbus.cis_debug: 0 hw.pccard.cis_debug: 0 dev.ciss.0.%desc: Compaq Smart Array 5i dev.ciss.0.%driver: ciss dev.ciss.0.%location: slot=3 function=0 dev.ciss.0.%pnpinfo: vendor=0x0e11 device=0xb178 subvendor=0x0e11 subdevice=0x4080 class=0x010400 dev.ciss.0.%parent: pci1 dev.ciss.0.soft_reset: 0 same story as 8.0-CURRENT, kernel: ciss0: SENDING NOP MESSAGE FAILED 3139 Regards, Christoph