Lines Matching refs:irecs
2699 struct xfs_bmbt_irec irec, *irecs = &irec; in xfs_dabuf_map() local
2705 irecs = kzalloc(sizeof(irec) * nfsb, in xfs_dabuf_map()
2709 error = xfs_bmapi_read(dp, bno, nfsb, irecs, &nirecs, in xfs_dabuf_map()
2729 if (irecs[i].br_startblock == HOLESTARTBLOCK || in xfs_dabuf_map()
2730 irecs[i].br_startblock == DELAYSTARTBLOCK) in xfs_dabuf_map()
2732 if (off != irecs[i].br_startoff) in xfs_dabuf_map()
2735 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock); in xfs_dabuf_map()
2736 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount); in xfs_dabuf_map()
2737 off += irecs[i].br_blockcount; in xfs_dabuf_map()
2745 if (irecs != &irec) in xfs_dabuf_map()
2746 kfree(irecs); in xfs_dabuf_map()
2761 i, irecs[i].br_startoff, in xfs_dabuf_map()
2762 irecs[i].br_startblock, in xfs_dabuf_map()
2763 irecs[i].br_blockcount, in xfs_dabuf_map()
2764 irecs[i].br_state); in xfs_dabuf_map()