Lines Matching refs:clu
99 struct exfat_chain clu;
102 exfat_chain_set(&clu, sbi->root_dir, 0, ALLOC_FAT_CHAIN);
103 while (clu.dir != EXFAT_EOF_CLUSTER) {
108 ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
127 if (exfat_get_next_cluster(sb, &clu.dir))
144 int exfat_set_bitmap(struct inode *inode, unsigned int clu)
151 if (!is_valid_cluster(sbi, clu))
154 ent_idx = CLUSTER_TO_BITMAP_ENT(clu);
163 void exfat_clear_bitmap(struct inode *inode, unsigned int clu)
171 if (!is_valid_cluster(sbi, clu))
174 ent_idx = CLUSTER_TO_BITMAP_ENT(clu);
185 exfat_cluster_to_sector(sbi, clu),
196 * If the value of "clu" is 0, it means cluster 2 which is the first cluster of
199 unsigned int exfat_find_free_bitmap(struct super_block *sb, unsigned int clu)
206 WARN_ON(clu < EXFAT_FIRST_CLUSTER);
207 ent_idx = CLUSTER_TO_BITMAP_ENT(clu);
209 clu_mask = IGNORED_BITS_REMAINED(clu, clu_base);