Lines Matching defs:inodes
1082 * inode size. This function has to be called only for locked inodes (@i_mutex
1760 * @rb: link in the RB-tree of inodes
1797 * @inodes: RB-tree of all inodes (contains @struct fsck_inode objects)
1800 struct rb_root inodes;
1804 * add_inode - add inode information to RB-tree of inodes.
1810 * inode @ino to the RB-tree of inodes. Returns inode information pointer in
1823 p = &fsckd->inodes.rb_node;
1883 rb_insert_color(&fscki->rb, &fsckd->inodes);
1889 * search_inode - search inode in the RB-tree of inodes.
1894 * the RB-tree of inodes and returns an inode information pointer or %NULL if
1902 p = fsckd->inodes.rb_node;
1916 * read_add_inode - read inode node and add it to RB-tree of inodes.
1922 * the index, reads it, and adds it to the RB-tree of inodes. Returns inode
1991 * an RB-tree of inodes - it adds all inodes into the RB-tree. It also
1993 * compare them to the information stored inside the inodes and detect possible
2023 /* If this is an inode node, add it to RB-tree of inodes */
2058 * it to the RB-tree of inodes.
2092 * inode node and insert them to the RB-tree of inodes.
2141 * free_inodes - free RB-tree of inodes.
2148 rbtree_postorder_for_each_entry_safe(fscki, n, &fsckd->inodes, rb)
2153 * check_inodes - checks all inodes.
2158 * RB-tree of inodes after the index scan has been finished, and checks that
2159 * inode nlink, size, etc are correct. Returns zero if inodes are fine,
2170 struct rb_node *this = rb_first(&fsckd->inodes);
2279 * inodes).
2293 fsckd.inodes = RB_ROOT;