Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 221 of file Memory.c.
Referenced by Ext2Format().
{ bool retval; ULONG blk, num; int i; for (i = 0; (ULONG)i < fs->group_desc_count; i++) { blk = fs->group_desc[i].bg_inode_table; num = fs->inode_blocks_per_group; retval = zero_blocks(fs, blk, num, &blk, &num); if (!retval) { DPRINT1("\nMke2fs: Could not write %lu blocks " "in inode table starting at %lu.\n", num, blk); zero_blocks(0, 0, 0, 0, 0); return false; } } zero_blocks(0, 0, 0, 0, 0); return true; }