Lines Matching defs:mke2fs_data
705 struct mke2fs_data { struct
707 long blocksize;
708 long bytes_per_inode;
709 long inodes; // Total inodes in filesystem.
710 long reserved_percent; // Integer precent of space to reserve for root.
711 char *gendir; // Where to read dirtree from.
714 struct dirtree *dt; // Tree of files to copy into the new filesystem.
715 unsigned treeblocks; // Blocks used by dt
716 unsigned treeinodes; // Inodes used by dt
718 unsigned blocks; // Total blocks in the filesystem.
719 unsigned freeblocks; // Free blocks in the filesystem.
720 unsigned inodespg; // Inodes per group
721 unsigned groups; // Total number of block groups.
722 unsigned blockbits; // Bits per block. (Also blocks per group.)
725 unsigned nextblock; // Next data block to allocate
726 unsigned nextgroup; // Next group we'll be allocating from
727 int fsfd; // File descriptor of filesystem (to output to).