Lines Matching refs:srec
445 struct xfs_inobt_rec_incore *srec) /* src record */ in __xfs_inobt_can_merge() argument
451 if (trec->ir_startino != srec->ir_startino) in __xfs_inobt_can_merge()
456 !xfs_inobt_issparse(srec->ir_holemask)) in __xfs_inobt_can_merge()
460 if (!trec->ir_count || !srec->ir_count) in __xfs_inobt_can_merge()
464 if (trec->ir_count + srec->ir_count > XFS_INODES_PER_CHUNK) in __xfs_inobt_can_merge()
469 salloc = xfs_inobt_irec_to_allocmask(srec); in __xfs_inobt_can_merge()
483 struct xfs_inobt_rec_incore *srec) /* src */ in __xfs_inobt_rec_merge() argument
485 ASSERT(trec->ir_startino == srec->ir_startino); in __xfs_inobt_rec_merge()
488 trec->ir_count += srec->ir_count; in __xfs_inobt_rec_merge()
489 trec->ir_freecount += srec->ir_freecount; in __xfs_inobt_rec_merge()
495 trec->ir_holemask &= srec->ir_holemask; in __xfs_inobt_rec_merge()
496 trec->ir_free &= srec->ir_free; in __xfs_inobt_rec_merge()