From owner-freebsd-fs Mon Jan 1 18:58:47 1996 Return-Path: owner-fs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id SAA23727 for fs-outgoing; Mon, 1 Jan 1996 18:58:47 -0800 (PST) Received: from cirque (cirque.moneng.mei.com [151.186.109.140]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id SAA23722 for ; Mon, 1 Jan 1996 18:58:45 -0800 (PST) Received: by cirque (5.x/SMI-SVR4) id AA20897; Mon, 1 Jan 1996 20:58:14 -0600 Date: Mon, 1 Jan 1996 20:58:14 -0600 From: Scott Bolte Message-Id: <9601020258.AA20897@cirque> To: freebsd-fs@freebsd.org Subject: mounting 1.1.5 fs under 2.1.0 Cc: scottb@cirque.moneng.mei.com Sender: owner-fs@freebsd.org Precedence: bulk I recently installed 2.1.0 on a new disk. When I run fsck and then mount an old file system, one created under 1.1.5, I get these warnings: niss# fsck /dev/rsd2a sd2: raw partition size != slice size sd2: start 0, end 665153, size 665154 sd2c: start 0, end 660141, size 660141 ** /dev/rsd2a ** Last Mounted on /mnt ** Phase 1 - Check Blocks and Sizes ** Phase 2 - Check Pathnames ** Phase 3 - Check Connectivity ** Phase 4 - Check Reference Counts ** Phase 5 - Check Cyl groups 1395 files, 13418 used, 6341 free (293 frags, 756 blocks, 1.5% fragmentation) Casual examination of the code in kern/subr_diskslice.c, the source of the errors, seem to indicate this is a `harmless' warning. However, I have misgivings about ignoring any warning. Is it safe to use these file systems as they are? Or will they gradually degrade if I use them in read/write mode? Thanks, Scott ______________________________________________________________________ Scott Bolte scottb@mei.com +1 414 362 3317 Marquette Electronics 8200 West Tower Avenue Milwaukee, WI 53223 As anyone here will tell you: I speak for myself. From owner-freebsd-fs Mon Jan 1 20:49:38 1996 Return-Path: owner-fs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA28732 for fs-outgoing; Mon, 1 Jan 1996 20:49:38 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id UAA28727 for ; Mon, 1 Jan 1996 20:49:32 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id PAA31368; Tue, 2 Jan 1996 15:47:45 +1100 Date: Tue, 2 Jan 1996 15:47:45 +1100 From: Bruce Evans Message-Id: <199601020447.PAA31368@godzilla.zeta.org.au> To: freebsd-fs@freebsd.org, scottb@cirque.moneng.mei.com Subject: Re: mounting 1.1.5 fs under 2.1.0 Sender: owner-fs@freebsd.org Precedence: bulk >niss# fsck /dev/rsd2a >sd2: raw partition size != slice size >sd2: start 0, end 665153, size 665154 >sd2c: start 0, end 660141, size 660141 > Casual examination of the code in kern/subr_diskslice.c, the > source of the errors, seem to indicate this is a `harmless' > warning. However, I have misgivings about ignoring any > warning. Yes, it is harmless, assuming that sd2 is partitioned consistently (the partitioning determines the size of sd2). It means that 5013 sectors beyond the end of sd2c aren't used. Bruce From owner-freebsd-fs Mon Jan 1 23:59:15 1996 Return-Path: owner-fs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA06079 for fs-outgoing; Mon, 1 Jan 1996 23:59:15 -0800 (PST) Received: from ip2.uplift.fr (af@ip2.uplift.fr [194.51.20.70]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id XAA06070 for ; Mon, 1 Jan 1996 23:59:07 -0800 (PST) Received: (from af@localhost) by ip2.uplift.fr (8.6.12/8.6.9) id JAA16509; Tue, 2 Jan 1996 09:00:08 +0100 Date: Tue, 2 Jan 1996 09:00:08 +0100 Message-Id: <199601020800.JAA16509@ip2.uplift.fr> From: Alain Forcioli To: freebsd-fs@freebsd.org Sender: owner-fs@freebsd.org Precedence: bulk unsubscribe From owner-freebsd-fs Tue Jan 2 04:31:04 1996 Return-Path: owner-fs Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA16386 for fs-outgoing; Tue, 2 Jan 1996 04:31:04 -0800 (PST) Received: from cirque (cirque.moneng.mei.com [151.186.109.140]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id EAA16381 for ; Tue, 2 Jan 1996 04:31:01 -0800 (PST) Received: by cirque (5.x/SMI-SVR4) id AA24325; Tue, 2 Jan 1996 06:29:57 -0600 Date: Tue, 2 Jan 1996 06:29:57 -0600 From: Scott Bolte Message-Id: <9601021229.AA24325@cirque> To: bde@zeta.org.au, freebsd-fs@freebsd.org Subject: Re: mounting 1.1.5 fs under 2.1.0 Sender: owner-fs@freebsd.org Precedence: bulk Bruce, thanks for the reassurance. Scott