Lines Matching defs:mke2fs_data
601 struct mke2fs_data { struct
603 long blocksize;
604 long bytes_per_inode;
605 long inodes; // Total inodes in filesystem.
606 long reserved_percent; // Integer precent of space to reserve for root.
607 char *gendir; // Where to read dirtree from.
610 struct dirtree *dt; // Tree of files to copy into the new filesystem.
611 unsigned treeblocks; // Blocks used by dt
612 unsigned treeinodes; // Inodes used by dt
614 unsigned blocks; // Total blocks in the filesystem.
615 unsigned freeblocks; // Free blocks in the filesystem.
616 unsigned inodespg; // Inodes per group
617 unsigned groups; // Total number of block groups.
618 unsigned blockbits; // Bits per block. (Also blocks per group.)
621 unsigned nextblock; // Next data block to allocate
622 unsigned nextgroup; // Next group we'll be allocating from
623 int fsfd; // File descriptor of filesystem (to output to).
625 struct ext2_superblock sb;