Home
last modified time | relevance | path

Searched refs:hint_clu (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/kernel/fs/exfat/
H A Dfatent.c309 unsigned int hint_clu, new_clu, last_clu = EXFAT_EOF_CLUSTER; in exfat_alloc_cluster() local
325 hint_clu = p_chain->dir; in exfat_alloc_cluster()
327 if (hint_clu == EXFAT_EOF_CLUSTER) { in exfat_alloc_cluster()
334 hint_clu = exfat_find_free_bitmap(sb, sbi->clu_srch_ptr); in exfat_alloc_cluster()
335 if (hint_clu == EXFAT_EOF_CLUSTER) in exfat_alloc_cluster()
340 if (!is_valid_cluster(sbi, hint_clu)) { in exfat_alloc_cluster()
342 hint_clu); in exfat_alloc_cluster()
343 hint_clu = EXFAT_FIRST_CLUSTER; in exfat_alloc_cluster()
354 while ((new_clu = exfat_find_free_bitmap(sb, hint_clu)) != in exfat_alloc_cluster()
356 if (new_clu != hint_clu && in exfat_alloc_cluster()
[all …]