Lines Matching refs:clu
109 * *clu = (~0), if it's unable to allocate a new cluster
112 unsigned int *clu, int create)
131 *clu = EXFAT_EOF_CLUSTER;
135 *clu = last_clu = ei->start_clu;
138 if (clu_offset > 0 && *clu != EXFAT_EOF_CLUSTER) {
142 *clu = EXFAT_EOF_CLUSTER;
144 *clu += clu_offset;
149 &fclus, clu, &last_clu, 1);
159 /* hint_bmap.clu should be valid */
160 WARN_ON(ei->hint_bmap.clu < 2);
161 *clu = ei->hint_bmap.clu;
164 while (clu_offset > 0 && *clu != EXFAT_EOF_CLUSTER) {
165 last_clu = *clu;
166 if (exfat_get_next_cluster(sb, clu))
172 if (*clu == EXFAT_EOF_CLUSTER) {
221 *clu = new_clu.dir;
226 * Move *clu pointer along FAT chains (hole care) because the
227 * caller of this function expect *clu to be the last cluster.
229 * *clu = (the first cluster of the allocated chain) =>
233 *clu += num_to_be_allocated - 1;
236 if (exfat_get_next_cluster(sb, clu))
246 ei->hint_bmap.clu = *clu;
540 ei->hint_stat.clu = info->start_clu;