Lines Matching refs:irec
83 xfs_inobt_rec_incore_t *irec) /* btree record */ in xfs_inobt_update() argument
87 rec.inobt.ir_startino = cpu_to_be32(irec->ir_startino); in xfs_inobt_update()
89 rec.inobt.ir_u.sp.ir_holemask = cpu_to_be16(irec->ir_holemask); in xfs_inobt_update()
90 rec.inobt.ir_u.sp.ir_count = irec->ir_count; in xfs_inobt_update()
91 rec.inobt.ir_u.sp.ir_freecount = irec->ir_freecount; in xfs_inobt_update()
94 rec.inobt.ir_u.f.ir_freecount = cpu_to_be32(irec->ir_freecount); in xfs_inobt_update()
96 rec.inobt.ir_free = cpu_to_be64(irec->ir_free); in xfs_inobt_update()
106 xfs_inobt_rec_incore_t *irec, /* btree record */ in xfs_inobt_get_rec() argument
116 irec->ir_startino = be32_to_cpu(rec->inobt.ir_startino); in xfs_inobt_get_rec()
118 irec->ir_holemask = be16_to_cpu(rec->inobt.ir_u.sp.ir_holemask); in xfs_inobt_get_rec()
119 irec->ir_count = rec->inobt.ir_u.sp.ir_count; in xfs_inobt_get_rec()
120 irec->ir_freecount = rec->inobt.ir_u.sp.ir_freecount; in xfs_inobt_get_rec()
126 irec->ir_holemask = XFS_INOBT_HOLEMASK_FULL; in xfs_inobt_get_rec()
127 irec->ir_count = XFS_INODES_PER_CHUNK; in xfs_inobt_get_rec()
128 irec->ir_freecount = in xfs_inobt_get_rec()
131 irec->ir_free = be64_to_cpu(rec->inobt.ir_free); in xfs_inobt_get_rec()