From: Keith Bostic Date: Tue, 12 Nov 1991 04:03:10 +0000 (-0800) Subject: break UFS up into FFS/UFS/LFS/MFS X-Git-Tag: BSD-4_4-Snapshot-Development~8869 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/672954022df1c2549414707a3d2f99dbc64b6d28 break UFS up into FFS/UFS/LFS/MFS SCCS-vsn: sbin/fsck/Makefile 5.16 SCCS-vsn: sbin/fsck/pass5.c 5.15 --- diff --git a/usr/src/sbin/fsck/Makefile b/usr/src/sbin/fsck/Makefile index f3e26891f6..96260c195e 100644 --- a/usr/src/sbin/fsck/Makefile +++ b/usr/src/sbin/fsck/Makefile @@ -3,7 +3,7 @@ PROG= fsck MAN8= fsck.0 SRCS= dir.c inode.c main.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ - pass5.c preen.c setup.c utilities.c ufs_subr.c ufs_tables.c -.PATH: ${.CURDIR}/../../sys/ufs + pass5.c preen.c setup.c utilities.c ffs_subr.c ffs_tables.c +.PATH: ${.CURDIR}/../../sys/ufs/ffs .include diff --git a/usr/src/sbin/fsck/pass5.c b/usr/src/sbin/fsck/pass5.c index 84b46059a6..965df993f1 100644 --- a/usr/src/sbin/fsck/pass5.c +++ b/usr/src/sbin/fsck/pass5.c @@ -6,7 +6,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)pass5.c 5.14 (Berkeley) %G%"; +static char sccsid[] = "@(#)pass5.c 5.15 (Berkeley) %G%"; #endif /* not lint */ #include @@ -163,7 +163,7 @@ pass5() } else if (frags > 0) { newcg->cg_cs.cs_nffree += frags; blk = blkmap(fs, cg_blksfree(newcg), i); - fragacct(fs, blk, newcg->cg_frsum, 1); + ffs_fragacct(fs, blk, newcg->cg_frsum, 1); } } cstotal.cs_nffree += newcg->cg_cs.cs_nffree;