Searched refs:sb_agblocks (Results 1 – 19 of 19) sorted by relevance
/fs/xfs/libxfs/ |
D | xfs_sb.c | 384 if (sbp->sb_agblocks) { in xfs_validate_sb_common() 385 agcount = div_u64_rem(sbp->sb_dblocks, sbp->sb_agblocks, &rem); in xfs_validate_sb_common() 414 XFS_FSB_TO_B(mp, sbp->sb_agblocks) < XFS_MIN_AG_BYTES || in xfs_validate_sb_common() 415 XFS_FSB_TO_B(mp, sbp->sb_agblocks) > XFS_MAX_AG_BYTES || in xfs_validate_sb_common() 416 sbp->sb_agblklog != xfs_highbit32(sbp->sb_agblocks - 1) + 1 || in xfs_validate_sb_common() 563 to->sb_agblocks = be32_to_cpu(from->sb_agblocks); in __xfs_sb_from_disk() 712 to->sb_agblocks = cpu_to_be32(from->sb_agblocks); in xfs_sb_to_disk() 1125 geo->agblocks = sbp->sb_agblocks; in xfs_fs_geometry()
|
D | xfs_types.c | 25 return mp->m_sb.sb_agblocks; in xfs_ag_block_count() 26 return mp->m_sb.sb_dblocks - (agno * mp->m_sb.sb_agblocks); in xfs_ag_block_count()
|
D | xfs_fs.h | 277 #define XFS_MAX_DBLOCKS(s) ((xfs_rfsblock_t)(s)->sb_agcount * (s)->sb_agblocks) 279 (s)->sb_agblocks + XFS_MIN_AG_BLOCKS)
|
D | xfs_inode_buf.c | 662 if (!rt_flag && extsize > mp->m_sb.sb_agblocks / 2) in xfs_inode_validate_extsize() 719 if (cowextsize > mp->m_sb.sb_agblocks / 2) in xfs_inode_validate_cowextsize()
|
D | xfs_format.h | 108 xfs_agblock_t sb_agblocks; /* size of an allocation group */ member 199 __be32 sb_agblocks; /* size of an allocation group */ member 670 (xfs_fsblock_t)(agno) * (mp)->m_sb.sb_agblocks + (agbno)))
|
D | xfs_ialloc.c | 780 args.max_agbno = round_down(args.mp->m_sb.sb_agblocks, in xfs_ialloc_ag_alloc() 2163 if (agbno >= mp->m_sb.sb_agblocks) { in xfs_difree() 2165 __func__, agbno, mp->m_sb.sb_agblocks); in xfs_difree() 2289 if (!pag || agbno >= mp->m_sb.sb_agblocks || in xfs_imap() 2305 if (agbno >= mp->m_sb.sb_agblocks) { in xfs_imap() 2309 (unsigned long)mp->m_sb.sb_agblocks); in xfs_imap()
|
D | xfs_alloc.c | 136 return mp->m_sb.sb_agblocks - blocks; in xfs_alloc_ag_max_usable() 619 be32_to_cpu(agfl_bno[i]) >= mp->m_sb.sb_agblocks) in xfs_agfl_verify() 1567 args->max_agbno = args->mp->m_sb.sb_agblocks - 1; in xfs_alloc_ag_vextent_near() 2200 (mp->m_sb.sb_agblocks + 1) / 2); in xfs_alloc_compute_maxlevels() 3122 agsize = mp->m_sb.sb_agblocks; in xfs_alloc_vextent() 3358 if (XFS_IS_CORRUPT(mp, agbno >= mp->m_sb.sb_agblocks)) { in __xfs_free_extent()
|
D | xfs_refcount.c | 940 ext.rc_startblock = cur->bc_mp->m_sb.sb_agblocks; in xfs_refcount_adjust_extents() 1463 ext.rc_startblock = cur->bc_mp->m_sb.sb_agblocks + in xfs_refcount_adjust_cow_extents() 1691 if (mp->m_sb.sb_agblocks >= XFS_REFC_COW_START) in xfs_refcount_recover_cow_leftovers()
|
D | xfs_refcount_btree.c | 421 mp->m_refc_mnr, mp->m_sb.sb_agblocks); in xfs_refcountbt_compute_maxlevels()
|
D | xfs_rmap_btree.c | 565 mp->m_rmap_mnr, mp->m_sb.sb_agblocks); in xfs_rmapbt_compute_maxlevels()
|
D | xfs_ag.c | 904 be32_to_cpu(agi->agi_length) == mp->m_sb.sb_agblocks); in xfs_ag_extend_space()
|
D | xfs_bmap.c | 357 ASSERT(XFS_FSB_TO_AGBNO(mp, bno) < mp->m_sb.sb_agblocks); in xfs_bmap_check_leaf_extents() 553 ASSERT(agbno < mp->m_sb.sb_agblocks); in __xfs_bmap_add_free() 554 ASSERT(len < mp->m_sb.sb_agblocks); in __xfs_bmap_add_free() 555 ASSERT(agbno + len <= mp->m_sb.sb_agblocks); in __xfs_bmap_add_free() 3091 XFS_FSB_TO_AGBNO(mp, x) < mp->m_sb.sb_agblocks) in xfs_bmap_adjacent()
|
/fs/xfs/ |
D | xfs_fsops.c | 58 (xfs_rfsblock_t)mp->m_sb.sb_agblocks); in xfs_resizefs_init_new_ags() 60 id->agsize = mp->m_sb.sb_agblocks; in xfs_resizefs_init_new_ags() 114 nb_mod = do_div(nb_div, mp->m_sb.sb_agblocks); in xfs_growfs_data_private() 118 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks; in xfs_growfs_data_private()
|
D | xfs_icreate_item.c | 178 if (!agbno || agbno == NULLAGBLOCK || agbno >= mp->m_sb.sb_agblocks) { in xlog_recover_icreate_commit_pass2() 193 if (!length || length >= mp->m_sb.sb_agblocks) { in xlog_recover_icreate_commit_pass2()
|
D | xfs_mount.h | 456 do_div(ld, mp->m_sb.sb_agblocks); in xfs_daddr_to_agno() 464 return (xfs_agblock_t) do_div(ld, mp->m_sb.sb_agblocks); in xfs_daddr_to_agbno()
|
D | xfs_filestream.c | 115 minfree = mp->m_sb.sb_agblocks / 50; in xfs_filestream_pick_ag()
|
D | xfs_mount.c | 307 if (mp->m_dalign && (mp->m_sb.sb_agblocks % mp->m_dalign)) { in xfs_validate_new_dalign() 310 mp->m_sb.sb_agblocks); in xfs_validate_new_dalign()
|
D | xfs_super.c | 282 icount += sbp->sb_agblocks - 1; in xfs_set_inode_alloc() 283 do_div(icount, sbp->sb_agblocks); in xfs_set_inode_alloc() 290 agino = XFS_AGB_TO_AGINO(mp, sbp->sb_agblocks - 1); in xfs_set_inode_alloc()
|
/fs/xfs/scrub/ |
D | agheader.c | 145 if (sb->sb_agblocks != cpu_to_be32(mp->m_sb.sb_agblocks)) in xchk_superblock()
|