Home
last modified time | relevance | path

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

/Linux-v5.15/fs/exfat/
Dfatent.c230 sbi->used_clusters -= num_clusters; in __exfat_free_cluster()
333 if (unlikely(total_cnt < sbi->used_clusters)) { in exfat_alloc_cluster()
336 __func__, total_cnt, sbi->used_clusters); in exfat_alloc_cluster()
340 if (num_alloc > total_cnt - sbi->used_clusters) in exfat_alloc_cluster()
418 sbi->used_clusters += num_clusters; in exfat_alloc_cluster()
Dsuper.c78 if (sbi->used_clusters == EXFAT_CLUSTERS_UNTRACKED) { in exfat_statfs()
80 if (exfat_count_used_clusters(sb, &sbi->used_clusters)) { in exfat_statfs()
90 buf->f_bfree = buf->f_blocks - sbi->used_clusters; in exfat_statfs()
495 sbi->used_clusters = EXFAT_CLUSTERS_UNTRACKED; in exfat_read_boot_sector()
601 ret = exfat_count_used_clusters(sb, &sbi->used_clusters); in __exfat_fill_super()
Dexfat_fs.h238 unsigned int used_clusters; /* number of used clusters */ member