Lines Matching refs:bc
59 struct xfs_bstat_chunk *bc) in xfs_bulkstat_one_int() argument
64 struct xfs_bulkstat *buf = bc->buf; in xfs_bulkstat_one_int()
139 error = bc->formatter(bc->breq, buf); in xfs_bulkstat_one_int()
152 bc->breq->startino = ino + 1; in xfs_bulkstat_one_int()
163 struct xfs_bstat_chunk bc = { in xfs_bulkstat_one() local
171 bc.buf = kmem_zalloc(sizeof(struct xfs_bulkstat), in xfs_bulkstat_one()
173 if (!bc.buf) in xfs_bulkstat_one()
176 error = xfs_bulkstat_one_int(breq->mp, NULL, breq->startino, &bc); in xfs_bulkstat_one()
178 kmem_free(bc.buf); in xfs_bulkstat_one()
236 struct xfs_bstat_chunk bc = { in xfs_bulkstat() local
245 bc.buf = kmem_zalloc(sizeof(struct xfs_bulkstat), in xfs_bulkstat()
247 if (!bc.buf) in xfs_bulkstat()
251 xfs_bulkstat_iwalk, breq->icount, &bc); in xfs_bulkstat()
253 kmem_free(bc.buf); in xfs_bulkstat()