From owner-freebsd-i386@FreeBSD.ORG Sat Jun 19 15:00:08 2010 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F0FC21065673 for ; Sat, 19 Jun 2010 15:00:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BDC728FC17 for ; Sat, 19 Jun 2010 15:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o5JF08HA050053 for ; Sat, 19 Jun 2010 15:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o5JF08hK050052; Sat, 19 Jun 2010 15:00:08 GMT (envelope-from gnats) Date: Sat, 19 Jun 2010 15:00:08 GMT Message-Id: <201006191500.o5JF08hK050052@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Masayuki FUKUI Cc: Subject: Re: i386/147929: hptiop(4) (HighPoint RocketRAID 3xxx/4xxx driver) broken on FreeBSD 8.1-PRERELEASE X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Masayuki FUKUI List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Jun 2010 15:00:09 -0000 The following reply was made to PR i386/147929; it has been noted by GNATS. From: Masayuki FUKUI To: mav@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: i386/147929: hptiop(4) (HighPoint RocketRAID 3xxx/4xxx driver) broken on FreeBSD 8.1-PRERELEASE Date: Sat, 19 Jun 2010 23:44:57 +0900 Thank you, Alex-san. Afterwards, I kept debugging, and I tried the same patch by chance yesterday. The RAID volume was normally detected as da(4). It works fine. I hope for fixing this probrem by the time FreeBSD 8.1 is released. >>>>> In <4C1CB58F.9060508@FreeBSD.org> >>>>> Alexander Motin wrote: > [1 ] > Hello. > > Please try attached patch. > > -- > Alexander Motin > [2 hptiop.trans.patch ] > --- hptiop.c.prev 2010-06-18 21:39:47.000000000 +0300 > +++ hptiop.c 2010-06-19 15:15:26.000000000 +0300 > @@ -1823,6 +1823,10 @@ scsi_done: > strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN); > strncpy(cpi->hba_vid, "HPT ", HBA_IDLEN); > strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN); > + cpi->transport = XPORT_SPI; > + cpi->transport_version = 2; > + cpi->protocol = PROTO_SCSI; > + cpi->protocol_version = SCSI_REV_2; > cpi->ccb_h.status = CAM_REQ_CMP; > break; > }