Lines Matching defs:bc
41 * bc->breq->lastino is effectively the inode cursor as we walk through the
59 struct xfs_bstat_chunk *bc)
64 struct xfs_bulkstat *buf = bc->buf;
139 error = bc->formatter(bc->breq, buf);
152 bc->breq->startino = ino + 1;
163 struct xfs_bstat_chunk bc = {
171 bc.buf = kmem_zalloc(sizeof(struct xfs_bulkstat),
173 if (!bc.buf)
176 error = xfs_bulkstat_one_int(breq->mp, NULL, breq->startino, &bc);
178 kmem_free(bc.buf);
236 struct xfs_bstat_chunk bc = {
245 bc.buf = kmem_zalloc(sizeof(struct xfs_bulkstat),
247 if (!bc.buf)
251 xfs_bulkstat_iwalk, breq->icount, &bc);
253 kmem_free(bc.buf);