|
|
1.1 root 1: /*
2: * Exit status bits for icheck and
3: * dcheck. This is the communication
4: * path used by `check' to figure out
5: * what needs to be corrected in a filesystem.
6: */
7:
8: /* Icheck bits */
9: #define IC_MISC 01 /* Miscellaneous error - e.g out of space */
10: #define IC_HARD 02 /* Human intervention needed to fix */
11: #define IC_BFB 04 /* Bad free block */
12: #define IC_MISS 010 /* Missing blocks */
13: #define IC_DUPF 020 /* Dups in free */
14: #define IC_BADF 040 /* Bad block in free list */
15: #define IC_FIX (IC_BFB|IC_MISS|IC_DUPF|IC_BADF)
16:
17: /* Dcheck bits */
18: #define DC_MISC 01 /* Miscellaneous error - e.g. out of space */
19: #define DC_HARD 02 /* Too hard to fix without human intervention */
20: #define DC_LCE 04 /* Difference in link count */
21: #define DC_CLRI 010 /* Some i-node needs clri'ing */
22: #define DC_FIX (DC_LCE|DC_CLRI)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.