Lines Matching refs:inodes
20 -N inodes Allocate this many inodes
81 long inodes; // Total inodes in filesystem.
111 uint32_t free_inodes_count; // Free inodes count
150 uint32_t last_orphan; // start of list of inodes to delete
167 uint16_t free_inodes_count; // How many free inodes in this group?
358 // Calculate inodes per group from total inodes.
359 static uint32_t get_inodespg(uint32_t inodes)
364 temp = (inodes + TT.groups - 1) / TT.groups;
365 inodes = TT.blocksize/sizeof(struct ext2_inode);
366 return ((temp + inodes - 1)/inodes)*inodes;
399 // Determine free inodes.
401 if (temp < TT.treeinodes) error_exit("Not enough inodes.\n");
587 // blocks, but not when finding inodes. The tree's parent pointers don't
599 // Figure out how many total inodes we need.
601 if (!TT.inodes) {
603 TT.inodes = (TT.blocks * (uint64_t)TT.blocksize) / TT.bytes_per_inode;
678 // How many free inodes in this group?