1 #include "sofs_superblock.h"
3 typedef enum{idle
, busy
, bah
} ic_t
;
5 //typedef enum{idle, busy, bah} cc_t;
8 void fetch_superblock(SOSuperBlock
**sb
);
10 /* inode control table */
12 void ictable_set(uint32_t index
, ic_t value
);
13 void ictable_get(uint32_t index
, ic_t
*value
);
14 void ictable_print(void);
16 /* cluster control table */
17 /* index < dzone_size */
18 void cctable_set(uint32_t index
, cc_t value
);
19 void cctable_get(uint32_t index
, cc_t
*value
);
20 void cctable_print(void);