ext2fs.h (40f65a4df509c6b29b9e72407c7afefe28838844) | ext2fs.h (d7511a40a749d2c42fa6f3fd74c7bdf37ad62a2c) |
---|---|
1/*- 2 * modified for EXT2FS support in Lites 1.1 3 * 4 * Aug 1995, Godmar Back (gback@cs.utah.edu) 5 * University of Utah, Department of Computer Science 6 * 7 * $FreeBSD$ 8 */ --- 187 unchanged lines hidden (view full) --- 196 197/* 198 * Features supported in this implementation 199 * 200 * We support the following REV1 features: 201 * - EXT2F_ROCOMPAT_SPARSESUPER 202 * - EXT2F_ROCOMPAT_LARGEFILE 203 * - EXT2F_INCOMPAT_FTYPE | 1/*- 2 * modified for EXT2FS support in Lites 1.1 3 * 4 * Aug 1995, Godmar Back (gback@cs.utah.edu) 5 * University of Utah, Department of Computer Science 6 * 7 * $FreeBSD$ 8 */ --- 187 unchanged lines hidden (view full) --- 196 197/* 198 * Features supported in this implementation 199 * 200 * We support the following REV1 features: 201 * - EXT2F_ROCOMPAT_SPARSESUPER 202 * - EXT2F_ROCOMPAT_LARGEFILE 203 * - EXT2F_INCOMPAT_FTYPE |
204 * 205 * We partially (read-only) support the following EXT4 features: 206 * - EXT2F_ROCOMPAT_HUGE_FILE 207 * - EXT2F_ROCOMPAT_EXTRA_ISIZE 208 * - EXT2F_INCOMPAT_EXTENTS |
|
204 */ 205#define EXT2F_COMPAT_SUPP 0x0000 206#define EXT2F_ROCOMPAT_SUPP (EXT2F_ROCOMPAT_SPARSESUPER | \ 207 EXT2F_ROCOMPAT_LARGEFILE | \ 208 EXT2F_ROCOMPAT_EXTRA_ISIZE) | 209 */ 210#define EXT2F_COMPAT_SUPP 0x0000 211#define EXT2F_ROCOMPAT_SUPP (EXT2F_ROCOMPAT_SPARSESUPER | \ 212 EXT2F_ROCOMPAT_LARGEFILE | \ 213 EXT2F_ROCOMPAT_EXTRA_ISIZE) |
209#define EXT2F_INCOMPAT_SUPP EXT2F_INCOMPAT_FTYPE | 214#define EXT2F_INCOMPAT_SUPP (EXT2F_INCOMPAT_FTYPE | \ 215 EXT2F_INCOMPAT_EXTENTS) |
210 211/* Assume that user mode programs are passing in an ext2fs superblock, not 212 * a kernel struct super_block. This will allow us to call the feature-test 213 * macros from user land. */ 214#define EXT2_SB(sb) (sb) 215 216/* 217 * Feature set definitions --- 69 unchanged lines hidden --- | 216 217/* Assume that user mode programs are passing in an ext2fs superblock, not 218 * a kernel struct super_block. This will allow us to call the feature-test 219 * macros from user land. */ 220#define EXT2_SB(sb) (sb) 221 222/* 223 * Feature set definitions --- 69 unchanged lines hidden --- |