Lines Matching full:boot
50 struct bootblock boot; in checkfilesys() local
79 if (readboot(dosfs, &boot) == FSFATAL) { in checkfilesys()
85 if (skipclean && preen && checkdirty(dosfs, &boot)) { in checkfilesys()
96 mod |= readfat(dosfs, &boot, &fat); in checkfilesys()
132 freebytes = (int64_t)boot.NumFree * boot.ClusterSize; in checkfilesys()
133 badbytes = (int64_t)boot.NumBad * boot.ClusterSize; in checkfilesys()
140 if (boot.NumBad) { in checkfilesys()
145 boot.NumFiles, freestr, boot.NumFree, in checkfilesys()
146 badstr, boot.NumBad); in checkfilesys()
149 boot.NumFiles, freestr, boot.NumFree); in checkfilesys()
152 if (boot.NumBad) in checkfilesys()
154 boot.NumFiles, (intmax_t)freebytes / 1024, boot.NumFree, in checkfilesys()
155 (intmax_t)badbytes / 1024, boot.NumBad); in checkfilesys()
158 boot.NumFiles, (intmax_t)freebytes / 1024, boot.NumFree); in checkfilesys()