NetBSD/sys/ufs
bouyer 76c414a957 Add support for ext2fs, this needed a few modifications to ufs/ufs/inode.h:
- added an "union inode_ext" to struct inode, for the per-fs extentions.
  For now only ext2fs uses it.
- i_din is now an union:
	union {
		struct  dinode ffs_din; /* 128 bytes of the on-disk dinode. */
		struct ext2fs_dinode e2fs_din; /* 128 bytes of the on-disk dinode. */
	} i_din
  Added a lot of #define i_ffs_* and i_e2fs_* to access the fields.
- Added two macros: FFS_ITIMES and EXT2FS_ITIMES. ITIMES calls the rigth
  macro, depending on the time of the inode. ITIMES is used where necessary,
  FFS_ITIMES and EXT2FS_ITIMES in other places.
1997-06-11 10:09:37 +00:00
..
ext2fs The ext2fs layer, based on the ffs/ufs one. Uses a few functions from 1997-06-11 09:33:37 +00:00
ffs Add support for ext2fs, this needed a few modifications to ufs/ufs/inode.h: 1997-06-11 10:09:37 +00:00
lfs Add support for ext2fs, this needed a few modifications to ufs/ufs/inode.h: 1997-06-11 10:09:37 +00:00
mfs Implement similar fix as in the NQNFS fix from BSDI, to avoid race conditions 1997-02-22 03:25:05 +00:00
ufs Add support for ext2fs, this needed a few modifications to ufs/ufs/inode.h: 1997-06-11 10:09:37 +00:00