Searched refs:current_cl (Results 1 – 1 of 1) sorted by relevance
/dflybsd-src/sbin/fsck_msdosfs/ |
H A D | fat.c | 949 cl_t prev_cl, current_cl, next_cl; in checkchain() local 981 prev_cl = current_cl = head; in checkchain() 982 for (next_cl = fat_get_cl_next(fat, current_cl); in checkchain() 984 prev_cl = current_cl, current_cl = next_cl, next_cl = fat_get_cl_next(fat, current_cl)) in checkchain() 1007 current_cl = prev_cl; in checkchain() 1023 return (fat_set_cl_next(fat, current_cl, next_cl) | FSFATMOD); in checkchain() 1035 cl_t current_cl, next_cl; in clearchain() local 1038 current_cl = head; in clearchain() 1040 while (valid_cl(fat, current_cl)) { in clearchain() 1041 next_cl = fat_get_cl_next(fat, current_cl); in clearchain() [all …]
|