HomeSort by: relevance | last modified time | path
    Searched refs:FSNext (Results 1 - 3 of 3) sorted by relevancy

  /src/sbin/fsck_msdos/
dosfs.h 58 cl_t FSNext; /* Next free cluster acc. FSInfo */
boot.c 178 boot->FSNext = fsinfo[0x1ec] + (fsinfo[0x1ed] << 8)
321 fsinfo[0x1ec] = (u_char)boot->FSNext;
322 fsinfo[0x1ed] = (u_char)(boot->FSNext >> 8);
323 fsinfo[0x1ee] = (u_char)(boot->FSNext >> 16);
324 fsinfo[0x1ef] = (u_char)(boot->FSNext >> 24);
fat.c 625 if (boot->FSNext != 0xffffffffU &&
626 (boot->FSNext >= boot->NumClusters ||
627 (boot->NumFree && fat[boot->FSNext].next != CLUST_FREE))) {
629 boot->FSNext,
630 (boot->FSNext >= boot->NumClusters) ? "invalid" : "not free");
634 boot->FSNext = head;

Completed in 14 milliseconds