From owner-cvs-sbin Mon Jan 19 08:58:12 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15231 for cvs-sbin-outgoing; Mon, 19 Jan 1998 08:58:12 -0800 (PST) (envelope-from owner-cvs-sbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15107; Mon, 19 Jan 1998 08:56:17 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA20093; Mon, 19 Jan 1998 08:55:27 -0800 (PST) Date: Mon, 19 Jan 1998 08:55:27 -0800 (PST) Message-Id: <199801191655.IAA20093@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs mkfs.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/01/19 08:55:27 PST Modified files: sbin/newfs mkfs.c Log: Don't create superblocks with size larger than SBSIZE (8192). The size was rounded up to a multiple of the fragment size, but this gave invalid file systems when the fragment size was > SBSIZE (fsck aborts early on them). Now a fragment size of 32768 seems to work (too-simple tests with fsck and iozone worked). Revision Changes Path 1.21 +4 -0 src/sbin/newfs/mkfs.c