CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2014/07/14 02:54:13
Modified files:
sys/ufs/ext2fs : ext2fs.h ext2fs_alloc.c ext2fs_balloc.c
ext2fs_bmap.c ext2fs_bswap.c ext2fs_extern.h
sys/ufs/ufs : inode.h
Log message:
better type safety and KNF.
Because ext2fs has only 32-bit inode numbers, use ufsino_t as in FFS.
Disk blocks are u_int32_t as well, because we don't support the 64BIT flag.
When we do, there's going to be a lot more going on than just daddr_t.
While there, add some journaling-related bits into the superblock to play with.
ok guenther