Lines Matching refs:chkpt

110 static struct slaves chkpt;	/* checkpointed data */  variable
307 chkpt.sl_offset = 0; /* start at offset 0 */ in alloctape()
308 chkpt.sl_count = 0; in alloctape()
309 chkpt.sl_inos = UFSROOTINO; /* in root inode */ in alloctape()
310 chkpt.sl_firstrec = 1; in alloctape()
311 chkpt.sl_tapea = 0; in alloctape()
350 chkpt.sl_offset = 0; /* start at offset 0 */ in reset()
351 chkpt.sl_count = 0; in reset()
352 chkpt.sl_inos = UFSROOTINO; /* in root inode */ in reset()
353 chkpt.sl_firstrec = 1; in reset()
354 chkpt.sl_tapea = 0; in reset()
910 if ((unsigned)atomic((int(*)())read, writer, (char *)&chkpt, in rollforward()
922 ino = chkpt.sl_inos - 1; in rollforward()
923 pos = chkpt.sl_offset; in rollforward()
924 leftover = chkpt.sl_count; in rollforward()
925 dumpstate = chkpt.sl_state; in rollforward()
926 blockswritten = ++chkpt.sl_tapea; in rollforward()
1641 inos[tapeno] = chkpt.sl_inos; in otape()
1642 spcl.c_firstrec = chkpt.sl_firstrec; in otape()
1643 spcl.c_tapea = (*tapea) = chkpt.sl_tapea; in otape()
1673 tapeno, chkpt.sl_inos); in otape()
2058 chkpt.sl_count = 0; /* signal not at EOT */ in dowrite()
2154 chkpt.sl_firstrec++; in dowrite()
2179 chkpt.sl_offset = 0; in dowrite()
2181 chkpt.sl_count = sp->s_spcl.c_count; in dowrite()
2188 chkpt.sl_offset++; in dowrite()
2189 chkpt.sl_count--; in dowrite()
2199 chkpt.sl_offset++; in dowrite()
2200 chkpt.sl_count--; in dowrite()
2261 chkpt.sl_offset = 0; in checkpoint()
2262 chkpt.sl_count = 0; in checkpoint()
2264 chkpt.sl_offset = 0; in checkpoint()
2265 chkpt.sl_count = 1; /* EOT indicator */ in checkpoint()
2332 chkpt.sl_inos = ino; in checkpoint()
2333 chkpt.sl_tapea = spcl.c_tapea + count; in checkpoint()
2334 chkpt.sl_state = state; in checkpoint()
2336 if ((unsigned)atomic((int(*)())write, cmd, (char *)&chkpt, in checkpoint()
2337 sizeof (chkpt)) != sizeof (chkpt)) { in checkpoint()
2352 msg(" ino %u\n", chkpt.sl_inos); in checkpoint()
2353 msg(" 1strec %u\n", chkpt.sl_firstrec); in checkpoint()
2354 msg(" lastrec %u\n", chkpt.sl_tapea); in checkpoint()
2355 msg(" written %u\n", chkpt.sl_offset); in checkpoint()
2356 msg(" left %u\n", chkpt.sl_count); in checkpoint()
2357 msg(" state %d\n", chkpt.sl_state); in checkpoint()