Lines Matching defs:fsckd
1806 * @fsckd: FS checking information
1814 struct fsck_data *fsckd,
1823 p = &fsckd->inodes.rb_node;
1883 rb_insert_color(&fscki->rb, &fsckd->inodes);
1890 * @fsckd: FS checking information
1897 static struct fsck_inode *search_inode(struct fsck_data *fsckd, ino_t inum)
1902 p = fsckd->inodes.rb_node;
1918 * @fsckd: FS checking information
1927 struct fsck_data *fsckd, ino_t inum)
1936 fscki = search_inode(fsckd, inum);
1970 fscki = add_inode(c, fsckd, ino);
2142 * @fsckd: FS checking information
2144 static void free_inodes(struct fsck_data *fsckd)
2148 rbtree_postorder_for_each_entry_safe(fscki, n, &fsckd->inodes, rb)
2155 * @fsckd: FS checking information
2162 static int check_inodes(struct ubifs_info *c, struct fsck_data *fsckd)
2170 struct rb_node *this = rb_first(&fsckd->inodes);
2288 struct fsck_data fsckd;
2293 fsckd.inodes = RB_ROOT;
2294 err = dbg_walk_index(c, check_leaf, NULL, &fsckd);
2298 err = check_inodes(c, &fsckd);
2302 free_inodes(&fsckd);
2308 free_inodes(&fsckd);