Lines Matching refs:boot
52 struct bootblock boot; in checkfilesys() local
81 if (readboot(dosfs, &boot) == FSFATAL) { in checkfilesys()
87 if (skipclean && preen && checkdirty(dosfs, &boot)) { in checkfilesys()
98 mod |= readfat(dosfs, &boot, &fat); in checkfilesys()
134 freebytes = (int64_t)boot.NumFree * boot.ClusterSize; in checkfilesys()
135 badbytes = (int64_t)boot.NumBad * boot.ClusterSize; in checkfilesys()
142 if (boot.NumBad) { in checkfilesys()
147 boot.NumFiles, freestr, boot.NumFree, in checkfilesys()
148 badstr, boot.NumBad); in checkfilesys()
151 boot.NumFiles, freestr, boot.NumFree); in checkfilesys()
154 if (boot.NumBad) in checkfilesys()
156 boot.NumFiles, (intmax_t)freebytes / 1024, boot.NumFree, in checkfilesys()
157 (intmax_t)badbytes / 1024, boot.NumBad); in checkfilesys()
160 boot.NumFiles, (intmax_t)freebytes / 1024, boot.NumFree); in checkfilesys()