Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/fat/
H A Dbpb.rs289 let count_clusters = data_sectors / (bpb.sector_per_cluster as u32); in new() localVariable
292 bpb.fat_type = if count_clusters < FATFileSystem::FAT12_MAX_CLUSTER { in new()
294 } else if count_clusters <= FATFileSystem::FAT16_MAX_CLUSTER { in new()
296 } else if count_clusters < FATFileSystem::FAT32_MAX_CLUSTER { in new()
H A Dfs.rs1286 let count_clusters = max_cluster.cluster_num - RESERVED_CLUSTERS as u64 + 1; in count_free_cluster() localVariable
1288 if self.free_count as u64 > count_clusters { in count_free_cluster()