Lines Matching refs:hint_clu
311 unsigned int hint_clu, new_clu, last_clu = EXFAT_EOF_CLUSTER; in exfat_alloc_cluster() local
329 hint_clu = p_chain->dir; in exfat_alloc_cluster()
331 if (hint_clu == EXFAT_EOF_CLUSTER) { in exfat_alloc_cluster()
338 hint_clu = exfat_find_free_bitmap(sb, sbi->clu_srch_ptr); in exfat_alloc_cluster()
339 if (hint_clu == EXFAT_EOF_CLUSTER) { in exfat_alloc_cluster()
346 if (!is_valid_cluster(sbi, hint_clu)) { in exfat_alloc_cluster()
347 if (hint_clu != sbi->num_clusters) in exfat_alloc_cluster()
349 hint_clu); in exfat_alloc_cluster()
350 hint_clu = EXFAT_FIRST_CLUSTER; in exfat_alloc_cluster()
356 while ((new_clu = exfat_find_free_bitmap(sb, hint_clu)) != in exfat_alloc_cluster()
358 if (new_clu != hint_clu && in exfat_alloc_cluster()
395 sbi->clu_srch_ptr = hint_clu; in exfat_alloc_cluster()
402 hint_clu = new_clu + 1; in exfat_alloc_cluster()
403 if (hint_clu >= sbi->num_clusters) { in exfat_alloc_cluster()
404 hint_clu = EXFAT_FIRST_CLUSTER; in exfat_alloc_cluster()