diff options
author | Kirk McKusick <mckusick@FreeBSD.org> | 2018-01-26 00:58:32 +0000 |
---|---|---|
committer | Kirk McKusick <mckusick@FreeBSD.org> | 2018-01-26 00:58:32 +0000 |
commit | dffce2150eeac1c7f424324a5cade7a97b308979 (patch) | |
tree | 3de8c223a1cb007078f3bb3e3c062127eb1b80a8 /sbin/fsck_ffs/globs.c | |
parent | a99028fc70be602db425c092b70dd0221e253bb3 (diff) | |
download | src-dffce2150eeac1c7f424324a5cade7a97b308979.tar.gz src-dffce2150eeac1c7f424324a5cade7a97b308979.zip |
Refactoring of reading and writing of the UFS/FFS superblock.
Specifically reading is done if ffs_sbget() and writing is done
in ffs_sbput(). These functions are exported to libufs via the
sbget() and sbput() functions which then used in the various
filesystem utilities. This work is in preparation for adding
subperblock check hashes.
No functional change intended.
Reviewed by: kib
Notes
Notes:
svn path=/head/; revision=328426
Diffstat (limited to 'sbin/fsck_ffs/globs.c')
-rw-r--r-- | sbin/fsck_ffs/globs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/globs.c b/sbin/fsck_ffs/globs.c index f3522973404e..6ce7dfd032c4 100644 --- a/sbin/fsck_ffs/globs.c +++ b/sbin/fsck_ffs/globs.c @@ -80,7 +80,7 @@ u_int real_dev_bsize; /* actual disk sector size, not overridden */ char nflag; /* assume a no response */ char yflag; /* assume a yes response */ int bkgrdflag; /* use a snapshot to run on an active system */ -ufs2_daddr_t bflag; /* location of alternate super block */ +off_t bflag; /* location of alternate super block */ int debug; /* output debugging info */ int Eflag; /* delete empty data blocks */ int Zflag; /* zero empty data blocks */ |