Lines Matching refs:exfat_info
123 exfat_info("-------------- Dump Boot sector region --------------\n");
124 exfat_info("Volume Length(sectors): \t\t%" PRIu64 "\n",
126 exfat_info("FAT Offset(sector offset): \t\t%u\n",
128 exfat_info("FAT Length(sectors): \t\t\t%u\n",
130 exfat_info("Cluster Heap Offset (sector offset): \t%u\n", clu_offset);
131 exfat_info("Cluster Count: \t\t\t\t%u\n", total_clus);
132 exfat_info("Root Cluster (cluster offset): \t\t%u\n", root_clu);
133 exfat_info("Volume Serial: \t\t\t\t0x%x\n", le32_to_cpu(pbsx->vol_serial));
134 exfat_info("Sector Size Bits: \t\t\t%u\n", pbsx->sect_size_bits);
135 exfat_info("Sector per Cluster bits: \t\t%u\n\n", pbsx->sect_per_clus_bits);
167 exfat_info("----------------- Dump Root entries -----------------\n");
168 exfat_info("Volume entry type: \t\t\t0x%x\n", ed[0].type);
169 exfat_info("Volume label: \t\t\t\t%s\n", volume_label);
170 exfat_info("Volume label character count: \t\t%u\n", ed[0].vol_char_cnt);
172 exfat_info("Bitmap entry type: \t\t\t0x%x\n", ed[1].type);
173 exfat_info("Bitmap start cluster: \t\t\t%x\n", bitmap_clu);
174 exfat_info("Bitmap size: \t\t\t\t%llu\n", bitmap_len);
176 exfat_info("Upcase table entry type: \t\t0x%x\n", ed[2].type);
177 exfat_info("Upcase table start cluster: \t\t%x\n",
179 exfat_info("Upcase table size: \t\t\t%" PRIu64 "\n\n",
200 exfat_info("---------------- Show the statistics ----------------\n");
201 exfat_info("Cluster size: \t\t\t\t%u\n", bd->cluster_size);
202 exfat_info("Total Clusters: \t\t\t%u\n", total_clus);
203 exfat_info("Free Clusters: \t\t\t\t%u\n", total_clus-used_clus);