Symbol: ext2fs
sbin/fsck_ext2fs/fsck.h
90
struct ext2fs *b_fs; /* super block */
sbin/newfs_ext2fs/mke2fs.c
678
e2fs_sbsave(&sblock.e2fs, (struct ext2fs *)(iobuf + sboff));
sbin/newfs_ext2fs/mke2fs.c
709
e2fs_sbsave(&sblock.e2fs, (struct ext2fs *)(iobuf + sboff));
sbin/newfs_ext2fs/mke2fs.c
789
{offsetof(struct ext2fs, e2fs_magic) / 4, E2FS_MAGIC, 0xffff},
sbin/newfs_ext2fs/mke2fs.c
790
{offsetof(struct ext2fs, e2fs_magic) / 4,
sys/arch/cobalt/stand/boot/conf.c
67
FS_OPS(ext2fs),
sys/arch/evbarm/stand/boot2440/devopen.c
63
struct fs_ops ops_ext2fs = FS_OPS(ext2fs);
sys/arch/i386/stand/boot/conf.c
70
FS_OPS(ext2fs),
sys/arch/i386/stand/efiboot/conf.c
100
FS_OPS(ext2fs),
sys/arch/zaurus/stand/zboot/conf.c
49
FS_OPS(ext2fs),
sys/lib/libsa/ext2fs.c
416
struct ext2fs ext2fs;
sys/lib/libsa/ext2fs.c
428
e2fs_sbload((void *)sbbuf, &ext2fs);
sys/lib/libsa/ext2fs.c
429
if (ext2fs.e2fs_magic != E2FS_MAGIC)
sys/lib/libsa/ext2fs.c
431
if (ext2fs.e2fs_rev > E2FS_REV1 ||
sys/lib/libsa/ext2fs.c
432
(ext2fs.e2fs_rev == E2FS_REV1 &&
sys/lib/libsa/ext2fs.c
433
(ext2fs.e2fs_first_ino != EXT2_FIRSTINO ||
sys/lib/libsa/ext2fs.c
434
(ext2fs.e2fs_inode_size != 128 && ext2fs.e2fs_inode_size != 256) ||
sys/lib/libsa/ext2fs.c
435
ext2fs.e2fs_features_incompat & ~EXT2F_INCOMPAT_SUPP))) {
sys/lib/libsa/ext2fs.c
452
fs->e2fs_ipb = fs->e2fs_bsize / ext2fs.e2fs_inode_size;
sys/lib/libsa/ext2fs.c
890
e2fs_sb_bswap(struct ext2fs *old, struct ext2fs *new)
sys/lib/libsa/ext2fs.c
894
memcpy(new, old, sizeof(struct ext2fs));
sys/lib/libsa/ext2fs.h
34
FS_DEF(ext2fs);
sys/ufs/ext2fs/ext2fs.h
241
struct ext2fs e2fs;
sys/ufs/ext2fs/ext2fs.h
491
void e2fs_sb_bswap(struct ext2fs *, struct ext2fs *);
sys/ufs/ext2fs/ext2fs_bswap.c
45
e2fs_sb_bswap(struct ext2fs *old, struct ext2fs *new)
sys/ufs/ext2fs/ext2fs_bswap.c
49
memcpy(new, old, sizeof(struct ext2fs));
sys/ufs/ext2fs/ext2fs_extern.h
147
VFS_PROTOS(ext2fs);
sys/ufs/ext2fs/ext2fs_htree.c
387
struct ext2fs *fs;
sys/ufs/ext2fs/ext2fs_htree.c
486
struct ext2fs *fs;
sys/ufs/ext2fs/ext2fs_htree.c
712
struct ext2fs *fs;/* F, G, and H are MD4 functions */
sys/ufs/ext2fs/ext2fs_vfsops.c
103
MODULE(MODULE_CLASS_VFS, ext2fs, "ufs");
sys/ufs/ext2fs/ext2fs_vfsops.c
1312
e2fs_sbsave(&fs->e2fs, (struct ext2fs*)bp->b_data);
sys/ufs/ext2fs/ext2fs_vfsops.c
1354
struct ext2fs *fs = &m_fs->e2fs;
sys/ufs/ext2fs/ext2fs_vfsops.c
604
struct ext2fs *newfs;
sys/ufs/ext2fs/ext2fs_vfsops.c
631
newfs = (struct ext2fs *)bp->b_data;
sys/ufs/ext2fs/ext2fs_vfsops.c
706
struct ext2fs *fs;
sys/ufs/ext2fs/ext2fs_vfsops.c
731
fs = (struct ext2fs *)bp->b_data;
tests/fs/common/h_fsmacros.h
172
ATF_TC_FSADD(ext2fs,MOUNT_EXT2FS,func,desc) \
tests/fs/common/h_fsmacros.h
187
ATF_TP_FSADD(ext2fs,func); \
tests/fs/common/h_fsmacros.h
214
ATF_TC_FSADD_RO(ext2fs,MOUNT_EXT2FS,func,desc,gen) \
tests/fs/common/h_fsmacros.h
225
ATF_TP_FSADD(ext2fs,func); \
tests/fs/common/h_fsmacros.h
52
FSPROTOS(ext2fs);