Received: with ECARTIS (v1.0.0; list linux-xfs); Thu, 18 Dec 2003 07:41:29 -0800 (PST) Received: from tolkor.sgi.com (tolkor.sgi.com [198.149.18.6]) by oss.sgi.com (8.12.10/8.12.9) with SMTP id hBIFfHTa016467 for ; Thu, 18 Dec 2003 07:41:18 -0800 Received: from flecktone.americas.sgi.com (flecktone.americas.sgi.com [192.48.203.135]) by tolkor.sgi.com (8.12.9/8.12.9/linux-outbound_gateway-1.1) with ESMTP id hBIGwom7016007 for ; Thu, 18 Dec 2003 10:58:50 -0600 Received: from poppy-e236.americas.sgi.com (poppy-e236.americas.sgi.com [128.162.236.207]) by flecktone.americas.sgi.com (8.12.9/8.12.9/generic_config-1.2) with ESMTP id hBIFbRSC21955344; Thu, 18 Dec 2003 09:37:28 -0600 (CST) Received: from stout.americas.sgi.com (stout.americas.sgi.com [128.162.232.50]) by poppy-e236.americas.sgi.com (8.12.9/SGI-server-1.8) with ESMTP id hBIFbCK210716550; Thu, 18 Dec 2003 09:37:12 -0600 (CST) Date: Thu, 18 Dec 2003 09:37:20 -0600 (CST) From: Eric Sandeen X-X-Sender: sandeen@stout.americas.sgi.com To: Scott Ransom cc: Nathan Straz , Subject: Re: mount: Unknown error 990 In-Reply-To: <200312171813.55480.ransom@physics.mcgill.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-archive-position: 1466 X-ecartis-version: Ecartis v1.0.0 Sender: linux-xfs-bounce@oss.sgi.com Errors-to: linux-xfs-bounce@oss.sgi.com X-original-sender: sandeen@sgi.com Precedence: bulk X-list: linux-xfs Content-Length: 1406 Lines: 49 Unfortunately that message doesn't give us much to go on... You might try xfs_repair (possibly with -n to not actually -do- anything) to see if it gives any info about problems on the filesystem. Otherwise, find this code in xfs_mount.c: /* * Get and sanity-check the root inode. * Save the pointer to it in the mount structure. */ error = xfs_iget(mp, NULL, sbp->sb_rootino, XFS_ILOCK_EXCL, &rip, 0); if (error) { cmn_err(CE_WARN, "XFS: failed to read root inode"); goto error3; } and change the cmn_err line to say: cmn_err(CE_WARN, "XFS: failed to read root inode (%d)", error); so we can at least see what error was returned from xfs_iget - that might be a hint. -Eric On Wed, 17 Dec 2003, Scott Ransom wrote: > On 17 December 2003 04:50 pm, Nathan Straz wrote: > > On Wed, Dec 17, 2003 at 12:14:25PM -0500, Scott Ransom wrote: > > > mount: Unknown error 990 > > > > Check dmesg for errors. > > Ah. Forgot to add this. Sorry: > > XFS mounting filesystem sda1 > XFS: failed to read root inode > > Scott > > -- > Scott M. Ransom Address: McGill Univ. Physics Dept. > Phone: (514) 398-6492 3600 University St., Rm 338 > email: ransom@physics.mcgill.ca Montreal, QC Canada H3A 2T8 > GPG Fingerprint: 06A9 9553 78BE 16DB 407B FFCA 9BFA B6FF FFD3 2989 > >