From owner-freebsd-questions@FreeBSD.ORG Wed Sep 17 10:42:53 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB6721065692 for ; Wed, 17 Sep 2008 10:42:53 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4508F8FC16; Wed, 17 Sep 2008 10:42:53 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <48D0DF37.2070706@FreeBSD.org> Date: Wed, 17 Sep 2008 11:43:03 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.16 (Macintosh/20080707) MIME-Version: 1.0 To: Bob Falanga References: <58d1e8d30809161516y1a9c552epd71310e1c7ec67ab@mail.gmail.com> In-Reply-To: <58d1e8d30809161516y1a9c552epd71310e1c7ec67ab@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions Subject: Re: g_ufs_done() WHAT does it mean? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Sep 2008 10:42:53 -0000 Bob Falanga wrote: > I have installed freeBSD on a SATA 320 gig hard drive. After running for a > few minutes I get several of the following error messages: > g_ufs_done():ad4s1d[WRITE(offset=385482752, length=16384)]error=6. > After two pages like that the computer stops and requires a hard boot to > restart. > > I assume that the messages concern the hard drive, but what are they telling > me? First, it's g_vfs_done, not g_ufs_done -- precision and accuracy are usually important when reporting error messages. In this case the important part is the "error=6". You can look this up in /usr/include/errno.h which says: #define ENXIO 6 /* Device not configured */ which probably means that the device disappeared at runtime. What other messages were logged prior to this? Kris