Lines Matching defs:irec
240 struct xfs_alloc_rec_incore *irec)
242 irec->ar_startblock = be32_to_cpu(rec->alloc.ar_startblock);
243 irec->ar_blockcount = be32_to_cpu(rec->alloc.ar_blockcount);
250 const struct xfs_alloc_rec_incore *irec)
254 if (irec->ar_blockcount == 0)
258 if (!xfs_verify_agbext(pag, irec->ar_startblock, irec->ar_blockcount))
268 const struct xfs_alloc_rec_incore *irec)
277 "start block 0x%x block count 0x%x", irec->ar_startblock,
278 irec->ar_blockcount);
292 struct xfs_alloc_rec_incore irec;
301 xfs_alloc_btrec_to_irec(rec, &irec);
302 fa = xfs_alloc_check_irec(cur, &irec);
304 return xfs_alloc_complain_bad_rec(cur, fa, &irec);
306 *bno = irec.ar_startblock;
307 *len = irec.ar_blockcount;
3847 struct xfs_alloc_rec_incore irec;
3850 xfs_alloc_btrec_to_irec(rec, &irec);
3851 fa = xfs_alloc_check_irec(cur, &irec);
3853 return xfs_alloc_complain_bad_rec(cur, fa, &irec);
3855 return query->fn(cur, &irec, query->priv);