• Home
  • Raw
  • Download

Lines Matching refs:refc

311 	struct xfs_phys_extent		*refc,  in xfs_trans_set_refcount_flags()  argument
314 refc->pe_flags = 0; in xfs_trans_set_refcount_flags()
320 refc->pe_flags |= type; in xfs_trans_set_refcount_flags()
335 struct xfs_refcount_intent *refc; in xfs_refcount_update_log_item() local
339 refc = container_of(item, struct xfs_refcount_intent, ri_list); in xfs_refcount_update_log_item()
352 ext->pe_startblock = refc->ri_startblock; in xfs_refcount_update_log_item()
353 ext->pe_len = refc->ri_blockcount; in xfs_refcount_update_log_item()
354 xfs_trans_set_refcount_flags(ext, refc->ri_type); in xfs_refcount_update_log_item()
375 struct xfs_refcount_intent *refc; in xfs_refcount_update_finish_item() local
380 refc = container_of(item, struct xfs_refcount_intent, ri_list); in xfs_refcount_update_finish_item()
382 refc->ri_type, in xfs_refcount_update_finish_item()
383 refc->ri_startblock, in xfs_refcount_update_finish_item()
384 refc->ri_blockcount, in xfs_refcount_update_finish_item()
389 ASSERT(refc->ri_type == XFS_REFCOUNT_INCREASE || in xfs_refcount_update_finish_item()
390 refc->ri_type == XFS_REFCOUNT_DECREASE); in xfs_refcount_update_finish_item()
391 refc->ri_startblock = new_fsb; in xfs_refcount_update_finish_item()
392 refc->ri_blockcount = new_aglen; in xfs_refcount_update_finish_item()
395 kmem_free(refc); in xfs_refcount_update_finish_item()
424 struct xfs_refcount_intent *refc; in xfs_refcount_update_cancel_item() local
426 refc = container_of(item, struct xfs_refcount_intent, ri_list); in xfs_refcount_update_cancel_item()
427 kmem_free(refc); in xfs_refcount_update_cancel_item()
454 struct xfs_phys_extent *refc; in xfs_cui_recover() local
475 refc = &cuip->cui_format.cui_extents[i]; in xfs_cui_recover()
477 XFS_FSB_TO_DADDR(mp, refc->pe_startblock)); in xfs_cui_recover()
478 switch (refc->pe_flags & XFS_REFCOUNT_EXTENT_TYPE_MASK) { in xfs_cui_recover()
490 refc->pe_len == 0 || in xfs_cui_recover()
492 refc->pe_len >= mp->m_sb.sb_agblocks || in xfs_cui_recover()
493 (refc->pe_flags & ~XFS_REFCOUNT_EXTENT_FLAGS)) { in xfs_cui_recover()
529 refc = &cuip->cui_format.cui_extents[i]; in xfs_cui_recover()
530 refc_type = refc->pe_flags & XFS_REFCOUNT_EXTENT_TYPE_MASK; in xfs_cui_recover()
543 new_fsb = refc->pe_startblock; in xfs_cui_recover()
544 new_len = refc->pe_len; in xfs_cui_recover()
547 type, refc->pe_startblock, refc->pe_len, in xfs_cui_recover()