Lines Matching refs:dosfs
51 int dosfs; in checkfilesys() local
64 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0); in checkfilesys()
65 if (dosfs < 0 && !rdonly) { in checkfilesys()
66 dosfs = open(fname, O_RDONLY, 0); in checkfilesys()
67 if (dosfs >= 0) in checkfilesys()
75 if (dosfs < 0) { in checkfilesys()
81 if (readboot(dosfs, &boot) == FSFATAL) { in checkfilesys()
82 close(dosfs); in checkfilesys()
87 if (skipclean && preen && checkdirty(dosfs, &boot)) { in checkfilesys()
98 mod |= readfat(dosfs, &boot, &fat); in checkfilesys()
100 close(dosfs); in checkfilesys()
187 close(dosfs); in checkfilesys()