summaryrefslogtreecommitdiff
path: root/sbin/fsck
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-01-29 01:37:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-01-29 01:37:12 +0000
commit66fb751a5e0356114f5b96c728bbf748cf61b62c (patch)
tree476817eece0642031da02bc130be358b30ccba91 /sbin/fsck
parentab768c97f88fc954ab5e72cb6a50c0f6043005da (diff)
use fs_csaddr to find the cg summary area; from mouse@collatz.mccrim.mcgill.edu; netbsd pr#1366
Diffstat (limited to 'sbin/fsck')
-rw-r--r--sbin/fsck/pass1.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/sbin/fsck/pass1.c b/sbin/fsck/pass1.c
index a512575c240..fc1b664856e 100644
--- a/sbin/fsck/pass1.c
+++ b/sbin/fsck/pass1.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pass1.c,v 1.13 1995/03/18 14:55:49 cgd Exp $ */
+/* $NetBSD: pass1.c,v 1.14 1996/01/18 21:55:27 mycroft Exp $ */
/*
* Copyright (c) 1980, 1986, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)pass1.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$NetBSD: pass1.c,v 1.13 1995/03/18 14:55:49 cgd Exp $";
+static char rcsid[] = "$NetBSD: pass1.c,v 1.14 1996/01/18 21:55:27 mycroft Exp $";
#endif
#endif /* not lint */
@@ -72,14 +72,17 @@ pass1()
*/
for (c = 0; c < sblock.fs_ncg; c++) {
cgd = cgdmin(&sblock, c);
- if (c == 0) {
+ if (c == 0)
i = cgbase(&sblock, c);
- cgd += howmany(sblock.fs_cssize, sblock.fs_fsize);
- } else
+ else
i = cgsblock(&sblock, c);
for (; i < cgd; i++)
setbmap(i);
}
+ i = sblock.fs_csaddr;
+ cgd = i + howmany(sblock.fs_cssize, sblock.fs_fsize);
+ for (; i < cgd; i++)
+ setbmap(i);
/*
* Find all allocated blocks.
*/