Home
last modified time | relevance | path

Searched refs:trecno (Results 1 – 1 of 1) sorted by relevance

/freebsd-14-stable/sbin/dump/
HDtape.c70 static int trecno = 0; /* next record to write in current block */ variable
166 wp->req[trecno].dblk = (ufs2_daddr_t)0; in writerec()
167 wp->req[trecno].count = 1; in writerec()
172 trecno++; in writerec()
174 if (trecno >= ntrec) in writerec()
186 while ((avail = MIN(tpblks, ntrec - trecno)) > 0) { in dumpblock()
187 wp->req[trecno].dblk = dblkno; in dumpblock()
188 wp->req[trecno].count = avail; in dumpblock()
189 trecno += avail; in dumpblock()
191 if (trecno >= ntrec) in dumpblock()
[all …]