From owner-freebsd-i386@FreeBSD.ORG Thu Jan 29 00:30:21 2004 Return-Path: Delivered-To: freebsd-i386@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3659416A4CE for ; Thu, 29 Jan 2004 00:30:21 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6754543D2F for ; Thu, 29 Jan 2004 00:30:19 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i0T8UJFR037026 for ; Thu, 29 Jan 2004 00:30:19 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i0T8UJAr037025; Thu, 29 Jan 2004 00:30:19 -0800 (PST) (envelope-from gnats) Date: Thu, 29 Jan 2004 00:30:19 -0800 (PST) Message-Id: <200401290830.i0T8UJAr037025@freefall.freebsd.org> To: freebsd-i386@FreeBSD.org From: Tatsuto Toyonaga Subject: Re: i386/57398: Current fails to install on mly(4) based RAID disk X-BeenThere: freebsd-i386@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Tatsuto Toyonaga List-Id: I386-specific issues for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jan 2004 08:30:21 -0000 The following reply was made to PR i386/57398; it has been noted by GNATS. From: Tatsuto Toyonaga To: hbkwon@naraesys.co.kr Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: i386/57398: Current fails to install on mly(4) based RAID disk Date: Thu, 29 Jan 2004 17:28:08 +0900 (JST) Hi, Thank you for the information. The machine had that problem is now runnin= g RELENG_4 as a alternate server. I'll give it a try after I reconfigure th= e original server up and running.=20 That one has older mylex card(mlx) and fujitsu's strange BIOS... Regards, Tatsuto Toyonaga From: =B1=C7=C7=F5=BA=F3 Subject: Re: i386/57398: Current fails to install on mly(4) based RAID di= sk Date: Thu, 29 Jan 2004 16:29:42 +0900 > Hi there. >=20 > Why don't you update /sys/dev/mly/mly.c file. > I got the same problem and fixed it. >=20 > remove 2 lines in mly_periodic() function. >=20 >=20 > static void > mly_periodic(void *data) > { > struct mly_softc *sc =3D (struct mly_softc *)data; > int bus, target; >=20 > debug_called(2); >=20 > /* > * Scan devices. > */ > for (bus =3D 0; bus < sc->mly_cam_channels; bus++) { > if (MLY_BUS_IS_VALID(sc, bus)) { > for (target =3D 0; target < MLY_MAX_TARGETS; target++) { >=20 > /* ignore the controller in this scan */ > #if 0 > if (target =3D=3D sc->mly_controllerparam->initiator_id) > continue; > #endif > /* perform device rescan? */ > if (sc->mly_btl[bus][target].mb_flags & MLY_BTL_RESCAN) > mly_rescan_btl(sc, bus, target); > } > } > } >=20 > /* check for controller events */ > mly_check_event(sc); >=20 > /* reschedule ourselves */ > sc->mly_periodic =3D timeout(mly_periodic, sc, MLY_PERIODIC_INTERVA= L * hz); > } >=20 >=20 > Gook luck with you.