Home | History | Annotate | Download | only in misc

Lines Matching full:inode

110 		com_err(program_name, retval, _("while writing inode table"));
124 com_err(program_name, retval, _("while writing inode bitmap"));
161 * ext2fs_check_directory; we use them since we already have the inode
163 * the inode again.
195 struct ext2_inode *inode)
199 *inode = *stashed_inode;
268 * Mark the blocks used for the inode table
286 * Mark block used for the inode bitmap
462 struct ext2_inode inode;
489 com_err(program_name, retval, _("while opening inode scan"));
500 stashed_inode = &inode;
502 retval = ext2fs_get_next_inode(scan, &ino, &inode);
507 _("while getting next inode"));
512 if (!inode.i_links_count)
514 if (inode.i_file_acl) {
516 inode.i_file_acl);
518 if (!ext2fs_inode_has_valid_blocks(&inode))
523 pb.is_dir = LINUX_S_ISDIR(inode.i_mode);
524 if (LINUX_S_ISDIR(inode.i_mode) ||
525 (LINUX_S_ISLNK(inode.i_mode) &&
526 ext2fs_inode_has_valid_blocks(&inode)) ||
533 "while iterating over inode %u",
538 if ((inode.i_flags & EXT4_EXTENTS_FL) ||
539 inode.i_block[EXT2_IND_BLOCK] ||
540 inode.i_block[EXT2_DIND_BLOCK] ||
541 inode.i_block[EXT2_TIND_BLOCK]) {
547 "while iterating over inode %u", ino);