diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-05-16 04:10:46 +0000 |
commit | 896f3841bf047ca93766900f8cd8c5852e6a9245 (patch) | |
tree | 0adfec655f17ae1258112946fa8d7d72c9c75f76 /sbin/fsck_ffs/fsck.h | |
parent | 0c40c9d08e198e96b30b9b27d5caea7fce0f7118 (diff) | |
download | FreeBSD-src-896f3841bf047ca93766900f8cd8c5852e6a9245.zip FreeBSD-src-896f3841bf047ca93766900f8cd8c5852e6a9245.tar.gz |
more file system > filesystem
Diffstat (limited to 'sbin/fsck_ffs/fsck.h')
-rw-r--r-- | sbin/fsck_ffs/fsck.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/fsck_ffs/fsck.h b/sbin/fsck_ffs/fsck.h index e94a6b7..2df0cd8 100644 --- a/sbin/fsck_ffs/fsck.h +++ b/sbin/fsck_ffs/fsck.h @@ -97,7 +97,7 @@ struct bufarea { #define MINBUFS 5 /* minimum number of buffers required */ struct bufarea bufhead; /* head of list of other blks in filesys */ -struct bufarea sblk; /* file system superblock */ +struct bufarea sblk; /* filesystem superblock */ struct bufarea cgblk; /* cylinder group blocks */ struct bufarea *pdirbp; /* current directory contents */ struct bufarea *pbp; /* current inode block */ @@ -210,7 +210,7 @@ char yflag; /* assume a yes response */ int bkgrdflag; /* use a snapshot to run on an active system */ int bflag; /* location of alternate super block */ int debug; /* output debugging info */ -int cvtlevel; /* convert to newer file system format */ +int cvtlevel; /* convert to newer filesystem format */ int bkgrdcheck; /* determine if background check is possible */ char usedsoftdep; /* just fix soft dependency inconsistencies */ char preen; /* just fix normal inconsistencies */ @@ -218,14 +218,14 @@ char rerun; /* rerun fsck. Only used in non-preen mode */ int returntosingle; /* 1 => return to single user mode on exit */ char resolved; /* cleared if unresolved changes => not clean */ char havesb; /* superblock has been read */ -char skipclean; /* skip clean file systems if preening */ -int fsmodified; /* 1 => write done to file system */ -int fsreadfd; /* file descriptor for reading file system */ -int fswritefd; /* file descriptor for writing file system */ +char skipclean; /* skip clean filesystems if preening */ +int fsmodified; /* 1 => write done to filesystem */ +int fsreadfd; /* file descriptor for reading filesystem */ +int fswritefd; /* file descriptor for writing filesystem */ -ufs_daddr_t maxfsblock; /* number of blocks in the file system */ +ufs_daddr_t maxfsblock; /* number of blocks in the filesystem */ char *blockmap; /* ptr to primary blk allocation map */ -ino_t maxino; /* number of inodes in file system */ +ino_t maxino; /* number of inodes in filesystem */ ino_t lfdir; /* lost & found directory inode number */ char *lfname; /* lost & found directory name */ |