Lines Matching defs:mke2fs_data
649 struct mke2fs_data { struct
651 long blocksize;
652 long bytes_per_inode;
653 long inodes; // Total inodes in filesystem.
654 long reserved_percent; // Integer precent of space to reserve for root.
655 char *gendir; // Where to read dirtree from.
658 struct dirtree *dt; // Tree of files to copy into the new filesystem.
659 unsigned treeblocks; // Blocks used by dt
660 unsigned treeinodes; // Inodes used by dt
662 unsigned blocks; // Total blocks in the filesystem.
663 unsigned freeblocks; // Free blocks in the filesystem.
664 unsigned inodespg; // Inodes per group
665 unsigned groups; // Total number of block groups.
666 unsigned blockbits; // Bits per block. (Also blocks per group.)
669 unsigned nextblock; // Next data block to allocate
670 unsigned nextgroup; // Next group we'll be allocating from
671 int fsfd; // File descriptor of filesystem (to output to).
673 struct ext2_superblock sb;