Home
last modified time | relevance | path

Searched refs:clusterNum (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Dclusters.c80 static int32_t orphanSizeLookup(int32_t clusterNum);
83 freeNameInfo(int32_t clusterNum) in freeNameInfo() argument
86 if (clusterNum < FIRST_CLUSTER || clusterNum > LastCluster) in freeNameInfo()
88 if (InUse[clusterNum - FIRST_CLUSTER]->path != NULL) { in freeNameInfo()
89 if (InUse[clusterNum - FIRST_CLUSTER]->path->references > 1) { in freeNameInfo()
90 InUse[clusterNum - FIRST_CLUSTER]->path->references--; in freeNameInfo()
92 free(InUse[clusterNum - FIRST_CLUSTER]->path->fullName); in freeNameInfo()
93 free(InUse[clusterNum - FIRST_CLUSTER]->path); in freeNameInfo()
95 InUse[clusterNum - FIRST_CLUSTER]->path = NULL; in freeNameInfo()
100 printOrphanPath(int32_t clusterNum) in printOrphanPath() argument
[all …]
H A Dfat.c277 reservedInFAT(int32_t clusterNum) in reservedInFAT() argument
281 e = readFATEntry(clusterNum); in reservedInFAT()
289 badInFAT(int32_t clusterNum) in badInFAT() argument
291 return (readFATEntry(clusterNum) == PCF_BADCLUSTER32); in badInFAT()
299 freeInFAT(int32_t clusterNum) in freeInFAT() argument
301 return (readFATEntry(clusterNum) == PCF_FREECLUSTER); in freeInFAT()
308 lastInFAT(int32_t clusterNum) in lastInFAT() argument
310 return (readFATEntry(clusterNum) == PCF_LASTCLUSTER32); in lastInFAT()
317 markLastInFAT(int32_t clusterNum) in markLastInFAT() argument
319 writeFATEntry(clusterNum, PCF_LASTCLUSTER32); in markLastInFAT()
[all …]
H A Dfsck_pcfs.h78 int32_t clusterNum; member
184 extern void markClusterModified(int32_t clusterNum);
198 extern void markFreeInFAT(int32_t clusterNum);
199 extern void markLastInFAT(int32_t clusterNum);
201 extern void markBadInFAT(int32_t clusterNum);
203 extern void squirrelPath(struct nameinfo *pathInfo, int32_t clusterNum);
216 extern int reservedInFAT(int32_t clusterNum);
217 extern int isMarkedBad(int32_t clusterNum);
218 extern int readCluster(int fd, int32_t clusterNum, uchar_t **data,
220 extern int freeInFAT(int32_t clusterNum);
[all …]