Searched defs:aclbufoff (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dpass3b.c48 static int64_t aclbufoff; /* offset into aclbuf */ variable
141 aclbufoff = 0;
243 if (aclbufoff == idesc->id_filesize) {
247 if ((size + aclbufoff) > idesc->id_filesize)
248 size = idesc->id_filesize - aclbufoff;
249 if (aclbufoff + size > maxaclsize)
252 (longlong_t)aclbufoff + size, (longlong_t)maxaclsize);
258 (void) memmove((void *)(aclbuf + aclbufoff), (void *)bp->b_un.b_buf,
260 aclbufoff += size;

Completed in 213 milliseconds