Lines Matching defs:bootblock
42 struct bootblock { struct
43 u_int BytesPerSec; /* bytes per sector */
44 u_int SecPerClust; /* sectors per cluster */
45 u_int ResSectors; /* number of reserved sectors */
46 u_int FATs; /* number of FATs */
47 u_int RootDirEnts; /* number of root directory entries */
48 u_int Media; /* media descriptor */
49 u_int FATsmall; /* number of sectors per FAT */
50 u_int SecPerTrack; /* sectors per track */
51 u_int Heads; /* number of heads */
52 u_int32_t Sectors; /* total number of sectors */
53 u_int32_t HiddenSecs; /* # of hidden sectors */
54 u_int32_t HugeSectors; /* # of sectors if bpbSectors == 0 */
55 u_int FSInfo; /* FSInfo sector */
56 u_int Backup; /* Backup of Bootblocks */
57 cl_t RootCl; /* Start of Root Directory */
58 cl_t FSFree; /* Number of free clusters acc. FSInfo */
59 cl_t FSNext; /* Next free cluster acc. FSInfo */
62 u_int flags; /* some flags: */
68 int ValidFat; /* valid fat if FAT32 non-mirrored */
69 cl_t ClustMask; /* mask for entries in FAT */
70 cl_t NumClusters; /* # of entries in a FAT */
71 u_int32_t NumSectors; /* how many sectors are there */
72 u_int32_t FATsecs; /* how many sectors are in FAT */
73 u_int32_t NumFatEntries; /* how many entries really are there */
74 u_int ClusterOffset; /* at what sector would sector 0 start */
75 u_int ClusterSize; /* Cluster size in bytes */
78 u_int NumFiles; /* # of plain files */
79 u_int NumFree; /* # of free clusters */
80 u_int NumBad; /* # of bad clusters */