tail 69 kernel/log.c int tail; tail 71 kernel/log.c for (tail = 0; tail < log.lh.n; tail++) { tail 73 kernel/log.c printf("recovering tail %d dst %d\n", tail, log.lh.block[tail]); tail 75 kernel/log.c struct buf *lbuf = bread(log.dev, log.start+tail+1); // read log block tail 76 kernel/log.c struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst tail 182 kernel/log.c int tail; tail 184 kernel/log.c for (tail = 0; tail < log.lh.n; tail++) { tail 185 kernel/log.c struct buf *to = bread(log.dev, log.start+tail+1); // log block tail 186 kernel/log.c struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block