Home
last modified time | relevance | path

Searched refs:Ext2Sb (Results 1 – 4 of 4) sorted by relevance

/reactos/sdk/lib/fslib/ext2lib/
H A DMke2fs.c815 EXT2_SUPER_BLOCK Ext2Sb; in Ext2Format() local
834 RtlZeroMemory(&Ext2Sb, sizeof(EXT2_SUPER_BLOCK)); in Ext2Format()
836 FileSys.ext2_sb = &Ext2Sb; in Ext2Format()
861 Ext2Sb.s_inodes_count = in Ext2Format()
862 (ULONG)(((LONGLONG) Ext2Sb.s_blocks_count * EXT2_BLOCK_SIZE(&Ext2Sb)) / inode_ratio); in Ext2Format()
867 Ext2Sb.s_r_blocks_count = (Ext2Sb.s_blocks_count * 5) / 100; in Ext2Format()
894 memcpy(&Ext2Sb.s_uuid[0], &uuid[0], 16); in Ext2Format()
906 val += Ext2Sb.s_uuid[i]; in Ext2Format()
919 ansi_label.Buffer = Ext2Sb.s_volume_name; in Ext2Format()
923 ext2_print_super(&Ext2Sb); in Ext2Format()
[all …]
/reactos/drivers/filesystems/ext2/src/
H A Dfsctl.c2061 PEXT2_SUPER_BLOCK Ext2Sb = NULL; in Ext2MountVolume() local
2173 Status = Ext2LoadSuper(Vcb, FALSE, &Ext2Sb); in Ext2MountVolume()
2179 ASSERT (NULL != Ext2Sb); in Ext2MountVolume()
2182 if (Ext2Sb->s_magic == EXT2_SUPER_MAGIC) { in Ext2MountVolume()
2193 Status = Ext2InitializeVcb( IrpContext, Vcb, Ext2Sb, in Ext2MountVolume()
2258 if (Ext2Sb) { in Ext2MountVolume()
2259 Ext2FreePool(Ext2Sb, EXT2_SB_MAGIC); in Ext2MountVolume()
/reactos/drivers/filesystems/ext2/src/ext3/
H A Dgeneric.c34 PEXT2_SUPER_BLOCK Ext2Sb = NULL; in Ext2LoadSuper() local
36 Ext2Sb = (PEXT2_SUPER_BLOCK) in Ext2LoadSuper()
42 if (!Ext2Sb) { in Ext2LoadSuper()
51 (PVOID) Ext2Sb, in Ext2LoadSuper()
55 Ext2FreePool(Ext2Sb, EXT2_SB_MAGIC); in Ext2LoadSuper()
56 Ext2Sb = NULL; in Ext2LoadSuper()
61 *Sb = Ext2Sb; in Ext2LoadSuper()
/reactos/drivers/filesystems/ext2/inc/
H A Dext2fs.h2997 PEXT2_SUPER_BLOCK Ext2Sb,